Having proguard on for release builds causes the showcase app to crash with the following stacktrace -> https://gist.github.com/rachael-oregan/d61ae8b93bfb444b2c81b4484b80480e looks like errors cause of loading SQLite stuff
Turning proguard off by setting `minifyEnabled` to false [here|https://github.com/aerogear/android-showcase-template/blob/master/app/build.gradle#L36] gets rid of the error and the app launches normally.
However, we are providing our own SQLite ( probably used for the security note store stuff it seems ) so when proguard is turned off then navigating to the security tab causes the app to crash.
Possible Solutions: 1) Turn proguard off for release builds (security stuff will have to be removed). This is a quick fix and is fine if we don't care about showcasing security at the open source launch 2) Turn proguard on for release builds and make it work with SQLite some possible solutions to this provided by [~supittma] https://discuss.zetetic.net/t/native-runtime-crash-from-sqlcipher-for-android/1096/8 https://gist.github.com/developernotes/3040592 |
|