Skip to content

Instantly share code, notes, and snippets.

@ripzery
Last active July 6, 2016 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ripzery/2e705a2b1b42790b395e2b1c01c51baa to your computer and use it in GitHub Desktop.
Save ripzery/2e705a2b1b42790b395e2b1c01c51baa to your computer and use it in GitHub Desktop.
Reference for gradle-play-publisher configuration
apply plugin: 'com.android.application'
apply plugin: 'com.github.triplet.play'
android {
signingConfigs {
release {
keyAlias 'keystore'
keyPassword 'password'
storeFile file('../keystore.jks')
storePassword 'password'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.release
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
}
play {
serviceAccountEmail = 'triple-t-gallery-mvp@api-project-298062141817.iam.gserviceaccount.com'
pk12File = file('Google Play Android Developer-a06a99479213.p12')
track = 'beta'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment