I can create a normal apk for my android app but when I try to generate a signed apk, every time I get the error
15:33:13 Executing tasks: [:app:assembleRelease]
15:33:18 ExternalSystemException: String index out of range: -71
Here I also want to share my build.gradle
file with you:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "altayatik.calcy6pro"
minSdkVersion 19
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0'
}