Google Play控制台套件名称

时间:2017-04-29 17:18:44

标签: android android-studio module google-play-services

我有一个Trivia的应用程序,包名是 es.test.triv.sh ,有一个玩家玩的东西,我添加了一个新功能是一个多玩家选项,对于这个选项,我已经使用了谷歌播放的real-time,我必须使用软件包注册应用程序,这是多功能玩家的这个功能的植入问题在于new module的android并且有问题另一个包 com.stas.triv.mlt

https://developers.google.com/games/services/console/enabling#c_specify_client_id_settings

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

1 个答案:

答案 0 :(得分:1)

该软件包名称始终是指Google Play控制台用于您的应用程序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"
        >
    .
    .

但是在最新版本的Android Studio中,此软件包将被忽略,并且应用程序模块 build.gradle 中定义的软件包将被使用:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"

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

该软件包名称还在Playstore中定义了您的应用程序名称(查看网址),因此一旦第一次发布应用程序,就无法更改。