1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 08:14:15 +00:00

gradle relese build

This commit is contained in:
orignal 2017-12-10 09:01:13 -05:00
parent 60ef70cee4
commit 6632b71273

View File

@ -28,11 +28,20 @@ android {
jniLibs.srcDirs = ['libs']
}
}
buildTypes {
signingConfigs {
orignal {
storeFile file("i2pdapk.jks")
storePassword "android"
keyAlias "i2pdapk"
keyPassword "android"
}
}
buildTypes {
release {
minifyEnabled false
signingConfig signingConfigs.orignal
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
}
}