Changed log level

pull/177/head
M66B 5 years ago
parent 55671994f3
commit 34f1dd9ef4

@ -27,9 +27,11 @@
#AndroidX
-keep class androidx.appcompat.widget.** {*;}
-keep class androidx.appcompat.app.AppCompatViewInflater {<init>(...);}
-keepclassmembers class * implements android.os.Parcelable {static ** CREATOR;}
#android.os.BadParcelableException: Parcelable protocol requires a Parcelable.Creator object called CREATOR on class androidx...
-keep class androidx.work.impl.** {*;} #Due to compiling ROOM inline
-keepclassmembers class * implements android.os.Parcelable {static ** CREATOR;}
#ROOM inline compilation
-keep class androidx.work.impl.** {*;}
#Stack traces, InvalidationTracker reflection
-keepnames class androidx.** {*;}
#IAB

@ -149,7 +149,7 @@ public abstract class DB extends RoomDatabase {
mViewTables.get("folder_view").clear();
Log.i("Disabled view invalidation");
} catch (ReflectiveOperationException ex) {
Log.w(ex);
Log.e(ex);
}
sInstance.getInvalidationTracker().addObserver(new InvalidationTracker.Observer(DB.DB_TABLES) {

Loading…
Cancel
Save