Object with Authentication information.
Promote an APK from one track to another.
Information related to the promotion.
The path to the APK.
The package name and version code of the app.
// promote based on an APK
await apkup.promote(
{
track: 'alpha'
},
'./android-debug.apk'
)
// promote based on package name and version code
await apkup.promote(
{
track: 'alpha'
},
{
packageName: 'io.event1.shared',
versionCode: 137
}
)
Upload an APK to the Google Play Developer Console.
The path to the APK.
The params object will add additional information to this release.
An object with the response data.
const upload = await apkup.upload('./android-debug.apk', {
track: 'beta',
releaseNotes: [
{
language: 'en-US',
text: 'Minor bug fixes...'
}
]
})
Generated using TypeDoc
Apkup constructor