Skip to content

Commit

Permalink
fix versions
Browse files Browse the repository at this point in the history
  • Loading branch information
m2049r committed Aug 13, 2022
1 parent 0512af1 commit ef3ddba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.m2049r.xmrwallet"
minSdkVersion 21
targetSdkVersion 31
versionCode 3001
versionName "3.0.1 'Fluorine Fermi'"
versionCode 3002
versionName "3.0.2 'Fluorine Fermi'"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
externalNativeBuild {
cmake {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/m2049r/xmrwallet/ledger/Ledger.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public class Ledger {
public static final int SW_OK = 0x9000;
public static final int SW_INS_NOT_SUPPORTED = 0x6D00;
public static final int OK[] = {SW_OK};
public static final int MINIMUM_LEDGER_VERSION = (1 << 16) + (6 << 8) + (0); // 1.6.0
public static final int MINIMUM_LEDGER_VERSION = (1 << 16) + (8 << 8) + (0); // 1.6.0

This comment has been minimized.

Copy link
@nahuhh

nahuhh Aug 15, 2022

// 1.8.0


public static UsbDevice findDevice(UsbManager usbManager) {
if (!ENABLED) return null;
Expand Down
2 changes: 1 addition & 1 deletion external-libs/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
MONERUJO_monero master with monero release-v0.18.0.0-monerujo
MONERUJO_monero master with monero release-v0.18.1.0-monerujo

0 comments on commit ef3ddba

Please sign in to comment.