zipalign.exe'' finished with non-zero exit value
zipalign.exe'' finished with non-zero exit value I'm a student programmer and I'm continuing an Android project that has been previously started by other students before me. My problem is that I'm getting an error when I try to execute the Android app inside Android Studio. You can see the error message below. The compilation must have worked for the other students since I have an apk file. What's wrong with zipalign? :app:zipalignDebug FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:zipalignDebug'. > Process 'command 'X:Sdk Android Studiobuild-tools21.1.2zipalign.exe'' finished with non-zero exit value -1073741502 My build.gradle: apply plugin: 'com.android.application' android { compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig { applicationId "csf.dfc.friendtracker" minSdkVersion 15 targetSdkVersion 21 ...