eventOneHQ / apkup

🚀 Publish APKs to Google Play directly from the terminal
https://oss.eventone.page/apkup
MIT License
36 stars 12 forks source link

Config File #7

Open nprail opened 5 years ago

nprail commented 5 years ago

To support AAB upload (#4), reduce dependencies (adbkit-apkreader), and reduce command line parameters, a configuration file should be created. The config file should have a few static options including the package ID and location of the key.

Proposal

Location: apkup.json/apkup.js or specified via --config opt

Schema:

module.exports = {
   "packageName": "io.event1.app", // ID of the Android package
   "key": "./auth.json" // path to the Google API key
}

Questions