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:
parent
96679dfb0c
commit
ea15a4eecd
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,5 +10,6 @@ classes/
|
||||
gradle
|
||||
*.iml
|
||||
*.keystore
|
||||
!debug.keystore
|
||||
.directory
|
||||
GPUCache/
|
||||
|
@ -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
BIN
debug.keystore
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user