Allow the app to run without building monero

This commit is contained in:
Hector Chu 2024-04-20 10:07:50 +01:00
parent 9e4a7f4331
commit 376632e22d
4 changed files with 0 additions and 4 deletions

View file

@ -35,7 +35,6 @@ android {
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}

View file

@ -39,7 +39,6 @@ android {
}
externalNativeBuild {
cmake {
path "CMakeLists.txt"
}
}
}

View file

@ -26,7 +26,6 @@ class CwMoneroPlugin: MethodCallHandler {
val main = Handler(Looper.getMainLooper());
init {
System.loadLibrary("cw_monero")
}
@JvmStatic

View file

@ -207,7 +207,6 @@ Future<void> initialSetup(
unspentCoinsInfoSource: unspentCoinsInfoSource,
secureStorage: secureStorage);
await bootstrap(navigatorKey);
monero?.onStartup();
}
class App extends StatefulWidget {