Last active
December 14, 2018 11:21
-
-
Save rutvikbhatt9/73e2a82ba5c7c066beb641ce524620fb to your computer and use it in GitHub Desktop.
Set PlayStore release configuration in app/build.gradle file
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
... | |
android { | |
... | |
} | |
play { | |
track = 'alpha' // set track for playstore like 'production','beta','alpha' | |
serviceAccountEmail = '[email protected]' //paste your service account email | |
jsonFile = file('/PlayJson/play-store-key.json') // copy this line as it is do not modify | |
} | |
dependencies { | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment