Last active
June 11, 2019 06:51
-
-
Save markchristopherng/53b219a454401f446c2146e4e5987346 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
apply plugin: 'com.android.application' | |
apply plugin: 'com.github.triplet.play' | |
android { | |
compileSdkVersion 28 | |
buildToolsVersion "28.0.3" | |
defaultConfig { | |
applicationId "au.com.auspost.app" | |
minSdkVersion 28 | |
targetSdkVersion 28 | |
versionCode 1 | |
versionName "1.0" | |
} | |
} | |
play { | |
track = 'internal' | |
serviceAccountEmail = project.ext.serviceAccount | |
serviceAccountCredentials = file('../cert/<YOUR_CERTIFICATE>.p12') | |
artifactDir = file("apk") | |
resolutionStrategy = "ignore" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment