简体   繁体   English

如何为Google Play控制台创建程序包名称

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

Publishing an app on the Google play developer console. 在Google Play开发者控制台上发布应用。 This looks like in the documentation like html. 看起来像html这样的文档。 What exactly would it be, the app pkg name. 确切的名称是应用程序pkg名称。 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 : 从Android文档

Every Android app has a unique application ID that looks like a Java package name, such as com.example.myapp. 每个Android应用程序都有一个看起来像Java包名称的唯一应用程序ID,例如com.example.myapp。 This ID uniquely identifies your app on the device and in Google Play Store. 此ID在设备和Google Play商店中唯一标识您的应用。

You can choose the id you want but it should be unique and should also be defined in your build.gradle file: 您可以选择所需的ID,但它应该是唯一的,并且还应该在build.gradle文件中定义:

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

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Google Play 控制台包名称 - Google Play Console Package Name 如何使用 package 名称打开 Google Play? 还是带有 Url 的 Chrome? - How can I open Google Play with package name? or Chrome with Url? 如何从 Google Play 管理中心删除版本? - How do I delete a release from Google Play Console? 如何向Google Play控制台添加第二个In App订阅? - How do I add a second In App Subscription to Google Play Console? 如何为谷歌播放控制台上传创建图标 - How to create an icon for google play console upload 在Google Play控制台中,我可以更新内部版本吗? 还是我必须完全创建一个新的? - In the Google Play Console, can I update an internal release? Or do I have to create a new one entirely? Google Play:如何访问“Play 管理中心的目标受众和内容部分” - Google Play : How do I access the “Target audience and content section of the Play Console ” 我是否需要为客户创建一个Google Play控制台帐户才能发布他/她的应用 - Do I have to create a Google Play Console account for the customer to publish his/her app 如何为Google Play音乐创建直接链接? - How do I create a direct link for google play music? 在Google Play上保留包名称 - Reserving a package name on Google Play
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM