Reputation: 791
Is there plugin or an API that support creating new project and upload first apk dynamic on google play console?
For apk updates we are using com.github.triplet.play
play {
track = 'production'
serviceAccountEmail = 'info'
serviceAccountCredentials = file('info')
}
and its working fine.
Upvotes: 2
Views: 275
Reputation: 694
You can use Fastlane for release and build Here is the link: https://docs.fastlane.tools/
It is open-sourced by Google itself and many developers are using it. It is a kind of CI/CD for Mobile Application Developers.
Upvotes: 1