Skip to content

Commit f24c1b4

Browse files
committed
Version: Increase version to 1.9.48 v239
(cherry picked from commit 429b940)
1 parent 3949999 commit f24c1b4

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

configs/dependencies.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ ext {
4141
PATCH_VERSION = 48
4242
TASK_LABEL = "DEV"
4343

44-
VERSION_CODE = 238
44+
VERSION_CODE = 239
4545

4646
androidConfig = [
4747
applicationId : "com.nunchuk.android",

nunchuk-app/proguard.conf

+8-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,11 @@
2020
-keepclassmembers class com.nunchuk.android.nativelib.** { <fields>; }
2121
-keepclassmembers class com.nunchuk.android.nativelib.** { <fields>; }
2222
-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.** { *; }

nunchuk-core/src/main/java/com/nunchuk/android/core/nfc/PortalDeviceViewModel.kt

+3
Original file line numberDiff line numberDiff line change
@@ -325,6 +325,9 @@ class PortalDeviceViewModel @Inject constructor(
325325
break
326326
}
327327
}
328+
}.onFailure {
329+
Timber.e(it)
330+
_state.update { state -> state.copy(message = it.message.orUnknownError()) }
328331
}
329332
}
330333
}

0 commit comments

Comments
 (0)