I added the gradle app for Android, and you can run it from Android Studio. gradlew build produces a debugging and released version (signed, supplemented with proguard).
buildTypes { debug { zipAlignEnabled true versionNameSuffix "-" + buildDateTime() } release { minifyEnabled true // Eclipse project.properties # proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt' zipAlignEnabled true signingConfig signingConfigs.release versionNameSuffix "-" + buildDateTime() }
But when I adb install on the device the version crashes at startup.
How to run / debug an application version from Android Studio to find the exact location of the problem?
Or can I debug a manually released signed apk in Eclipse?
source share