Closed tomkoptel closed 11 years ago
Ok, I found the source of issue :) The problem was in the way I was describing animation in xml.
It was:
<objectAnimator
android:valueFrom="-180"
android:valueTo="0"
android:propertyName="rotationY"
android:interpolator="@android:interpolator/accelerate_decelerate"
android:duration="@integer/card_flip_time_full" />
It should be:
<objectAnimator
android:valueFrom="-180"
android:valueTo="0"
android:propertyName="rotationY"
android:interpolator="@interpolator/accelerate_decelerate"
android:duration="@integer/card_flip_time_full" />
The actual reason was iterpolator
which seems to be undefined in older SDK and required the manual setup in res/interpolator/accelerate_decelerate.xml
path.
Hello!
I'm facing force close on my device which runs android 2.3.4 When I'm launching fragment custom transactions app closes with
Resources$NotFoundException
.I guess the reason of this is incorrect integration of your lib inside the project. Can you take a look whether my
pom.xml
installation correct and if yes, what is your suggestion about the error log below.Many thanks!
Here is my pom.xml:
Source code:
Here is my error log: