Commit f24c1b4 1 parent 3949999 commit f24c1b4 Copy full SHA for f24c1b4
File tree 3 files changed +12
-2
lines changed
nunchuk-core/src/main/java/com/nunchuk/android/core/nfc
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 41
41
PATCH_VERSION = 48
42
42
TASK_LABEL = " DEV"
43
43
44
- VERSION_CODE = 238
44
+ VERSION_CODE = 239
45
45
46
46
androidConfig = [
47
47
applicationId : " com.nunchuk.android" ,
Original file line number Diff line number Diff line change 20
20
-keepclassmembers class com.nunchuk.android.nativelib.** { <fields>; }
21
21
-keepclassmembers class com.nunchuk.android.nativelib.** { <fields>; }
22
22
-keepclassmembers enum * { *; }
23
- -keepnames class * extends android.os.Parcelable
23
+ -keepnames class * extends android.os.Parcelable
24
+ # Ignore warnings for AWT classes that are not available on Android
25
+ -dontwarn java.awt.**
26
+ -dontwarn com.sun.jna.platform.win32.**
27
+
28
+ # Keep JNA classes
29
+ -keep class com.sun.jna.** { *; }
30
+ -keep class * implements com.sun.jna.** { *; }
Original file line number Diff line number Diff line change @@ -325,6 +325,9 @@ class PortalDeviceViewModel @Inject constructor(
325
325
break
326
326
}
327
327
}
328
+ }.onFailure {
329
+ Timber .e(it)
330
+ _state .update { state -> state.copy(message = it.message.orUnknownError()) }
328
331
}
329
332
}
330
333
}
You can’t perform that action at this time.
0 commit comments