You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had a couple of error with proguard, the Column name and parameters like onUniqueConflict are "deleted" by proguard so the application crash when it released I added :
-keep class com.activeandroid.** { *; }
-keep class com.activeandroid.. { *; }
-keep class * extends com.activeandroid.Model
-keep class * extends com.activeandroid.serializer.TypeSerializer
And the class of my Database who's extend model but that was ineffective
The text was updated successfully, but these errors were encountered:
I had a couple of error with proguard, the Column name and parameters like onUniqueConflict are "deleted" by proguard so the application crash when it released I added :
-keep class com.activeandroid.** { *; }
-keep class com.activeandroid.. { *; }
-keep class * extends com.activeandroid.Model
-keep class * extends com.activeandroid.serializer.TypeSerializer
And the class of my Database who's extend model but that was ineffective
The text was updated successfully, but these errors were encountered: