2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 01:51:47 +00:00

Check-in a new debug keystore

This way, when installing a development version built on a different
environment, it will be signed with the same key and Android won't make
you wipe your data.
This commit is contained in:
Albert Vaca Cintora 2019-09-07 14:31:55 +02:00
parent 96679dfb0c
commit ea15a4eecd
3 changed files with 10 additions and 0 deletions

1
.gitignore vendored
View File

@ -10,5 +10,6 @@ classes/
gradle
*.iml
*.keystore
!debug.keystore
.directory
GPUCache/

View File

@ -44,10 +44,19 @@ android {
abortOnError false
checkReleaseBuilds false
}
signingConfigs {
debug {
storeFile file("debug.keystore")
storePassword 'android'
keyAlias 'androiddebugkey'
keyPassword 'android'
}
}
buildTypes {
debug {
minifyEnabled false
useProguard false
signingConfig signingConfigs.debug
}
release { //keep on 'release' for faster builds, set to 'all' when testing to make sure proguard is not deleting important stuff
minifyEnabled true

BIN
debug.keystore Normal file

Binary file not shown.