mirror of https://github.com/BOINC/boinc.git
testCoverageEnabled true only in debug.
If you put it in release, this will make the APK / App Bundle debuggable, and Google Play Console will consider it's not signed. Removing this resolved the issue. https://stackoverflow.com/a/56823288/550384 For compile sign bundle #3566
This commit is contained in:
parent
21b99d674c
commit
137ef46423
|
@ -63,14 +63,13 @@ android {
|
||||||
release {
|
release {
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
shrinkResources true
|
shrinkResources true
|
||||||
testCoverageEnabled true
|
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||||||
}
|
}
|
||||||
debug {
|
debug {
|
||||||
// Without this, a build error occurs for debug.
|
// Without this, a build error occurs for debug.
|
||||||
minifyEnabled true
|
minifyEnabled true
|
||||||
debuggable true
|
debuggable true
|
||||||
testCoverageEnabled false
|
testCoverageEnabled true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue