2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 18:07:55 +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 gradle
*.iml *.iml
*.keystore *.keystore
!debug.keystore
.directory .directory
GPUCache/ GPUCache/

View File

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

BIN
debug.keystore Normal file

Binary file not shown.