01-29-2019 09:56 AM
v2SigningEnabled false
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore <KEYSTORE> -storepass <STOREPWD> -keypass <KEYPWD> <APKFILE> <ALIASNAME>
02-26-2019 02:33 PM
02-26-2019 04:12 PM
rhillCampfire said:
Where within the mainTemplate.gradle file, should the line "v2SigningEnabled false" be included?
**SIGN**
// Add this block just below **SIGN**
signingConfigs {
release {
v1SigningEnabled true
v2SigningEnabled false
}
}
06-11-2019 01:51 AM
09-19-2019 12:24 AM
pld_google said:
rhillCampfire said:
Where within the mainTemplate.gradle file, should the line "v2SigningEnabled false" be included?
Wish I had seen this a couple days ago! I just went through this process. Add a block just below the **SIGN** block. If you need to, you can see the full expansion of the template by checking "Export" from the build dialog.**SIGN**
// Add this block just below **SIGN**
signingConfigs {
release {
v1SigningEnabled true
v2SigningEnabled false
}
}
10-09-2019 11:45 AM
10-10-2019 01:24 PM
10-11-2019 12:23 PM
11-05-2019 11:20 AM
12-25-2019 03:39 PM