Android Google Play控制台包名称

Android Google Play控制台包名称,android,android-studio,module,google-play-services,Android,Android Studio,Module,Google Play Services,我有一个应用程序的琐事,包名是es.test.triv.sh,有所有的东西玩一个球员,我添加了一个新的功能是一个多球员的选项,对于这个选项我使用谷歌播放,我必须注册的应用程序包,这是一个问题,为多人游戏植入这一功能是在android的基础上,并且有一个不同的包com.stas.triv.mlt 在这一点上,我必须设置com.stas.triv.mlt或es.test.triv.sh?这个包名总是指Google Play console用于您的应用程序Id的包名 它曾经是应用程序的manifes

我有一个应用程序的琐事,包名是es.test.triv.sh,有所有的东西玩一个球员,我添加了一个新的功能是一个多球员的选项,对于这个选项我使用谷歌播放,我必须注册的应用程序包,这是一个问题,为多人游戏植入这一功能是在android的基础上,并且有一个不同的包com.stas.triv.mlt


在这一点上,我必须设置com.stas.triv.mlt或es.test.triv.sh?

这个包名总是指Google Play console用于您的应用程序Id的包名

它曾经是应用程序的
manifest.xml
中的一个

<manifest package="tv.potato.baked"
          xmlns:android="http://schemas.android.com/apk/res/android">

    <application
        android:allowBackup="true"
        android:label="@string/app_name"
        >
    .
    .
该软件包名称还定义了您在playstore中的应用程序名称(查看url),因此,一旦应用程序第一次发布,就无法更改

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"

    defaultConfig {
        applicationId "tv.potato.baked"
        minSdkVersion 21
        targetSdkVersion 25
        versionCode 1
        .
        .
        .