简体   繁体   中英

how do I create a package name for the google play console

Publishing an app on the Google play developer console. This looks like in the documentation like html. What exactly would it be, the app pkg name. There is a box to put it in. Can you make it easy for me this is my first time publishing an app.

From the Android doc :

Every Android app has a unique application ID that looks like a Java package name, such as com.example.myapp. This ID uniquely identifies your app on the device and in Google Play Store.

You can choose the id you want but it should be unique and should also be defined in your build.gradle file:

android {
    defaultConfig {
        applicationId "com.example.myapp"
        ...
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM