Created
November 9, 2015 04:39
-
-
Save joielechong/7dca9bee354ae731e161 to your computer and use it in GitHub Desktop.
Signing Android apk without putting keystore info in build.gradle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
STORE_FILE=/your/path/to/android.keystore | |
STORE_PASSWORD=yourstorepassword | |
KEY_ALIAS=yourkeyalias | |
KEY_PASSWORD=yourkeypassword |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
signingConfigs { | |
release | |
} | |
buildTypes { | |
debug { | |
debuggable true | |
} | |
release { | |
minifyEnabled true | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
signingConfig signingConfigs.release | |
} | |
} | |
if (project.hasProperty("AndroidProject.signing") | |
&& new File(project.property("AndroidProject.signing").toString()).exists()) { | |
def Properties props = new Properties() | |
def propFile = new File(project.property("AndroidProject.signing").toString()) | |
if(propFile.canRead()) { | |
props.load(new FileInputStream(propFile)) | |
if (props!=null && props.containsKey('STORE_FILE') && props.containsKey('STORE_PASSWORD') && | |
props.containsKey('KEY_ALIAS') && props.containsKey('KEY_PASSWORD')) { | |
android.signingConfigs.release.storeFile = file(props['STORE_FILE']) | |
android.signingConfigs.release.storePassword = props['STORE_PASSWORD'] | |
android.signingConfigs.release.keyAlias = props['KEY_ALIAS'] | |
android.signingConfigs.release.keyPassword = props['KEY_PASSWORD'] | |
} else { | |
println 'androidproject.properties found but some entries are missing' | |
android.buildTypes.release.signingConfig = null | |
} | |
} else { | |
println 'androidproject.properties file not found' | |
android.buildTypes.release.signingConfig = null | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AndroidProject.signing=/your/path/androidproject.properties |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment