Android:自动选择调试/发布Maps v2 api密钥?

时间:2013-06-17 05:40:05

标签: android google-maps key android-manifest google-maps-android-api-2

我在我的项目中使用Google Maps v2 API。在Google Maps v2中,调试/发布API密钥在AndroidManifest.xml中定义。我看过the link但是在那个地图中,密钥是在AndroidManifest.xml以外的xml布局文件中定义的。那么我可以在AndroidManifest.xml中为我的项目定义调试和发布密钥吗?

我想在AndroidManifest.xml中找到类似的内容:

如果是调试模式:

<meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="@string/debug_map_api_key"/>

如果发布模式:

<meta-data
    android:name="com.google.android.maps.v2.API_KEY"
    android:value="@string/release_map_api_key"/>

4 个答案:

答案 0 :(得分:66)

我使用以下步骤解决了这个问题:

在Google Developer API控制台中

  1. 点击创建新的Android密钥...
  2. 在cmd.exe /终端中:keytool -list -v -keystore mystore.keystore
  3. 密码:android
  4. 现在输入SHA1 key;package name进行调试,然后按Enter键
  5. 输入SHA1 key;package name进行发布
  6. 点击创建
  7. 现在将此API密钥用于您的项目

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="@string/common_map_api_key"/>
    

答案 1 :(得分:25)

在最新的Android 5.0和Android 6.0(API 20,21,22,23)中使用build.gradle文件的最佳方式之一

您可以简单地使用它们,而无需在gradle中创建产品风味。这是我们可以通过Gradle实现的另一个示例。您可以通过两个简单的步骤实现它。

  • 将自定义值添加到manifestplaceholders build.gradle文件。

见下文

buildTypes {
    debug {
        manifestPlaceholders = [ mapApiKeyValue:"GHjaSyAjlyp3O831lgaonHMXsd-_DpQ3002x3S4"]
    }

    release {
        manifestPlaceholders = [ mapApiKeyValue:"AIzaSyAuMGDLr2HeuRed4JA0CrdYYdZRjeC3EA"]
    }
}
  • 编辑清单文件,如下所示。

我的清单文件的一部分

  <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="${mapApiKeyValue}" />

此解决方案适用于最新的Android 5.0和Android 6.0(API 20,21,22,23)

于5/3/2018更新了Xamarin表单和Xamarin Native Apps

在Android项目中打开AssemblyInfo.cs并添加以下代码

#if DEBUG
   [assembly: MetaData("com.google.android.maps.v2.API_KEY", Value = "DebugKey123123123")]
#else
   [assembly: MetaData("com.google.android.maps.v2.API_KEY", Value = "ReleaseKey123123123")]
#endif

要检查AndroidManifest文件,请转到obj/Debug/android文件夹并打开清单文件并检查元信息,

<meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="DebugKey123123123" />

答案 2 :(得分:15)

对于需要维护单独密钥的组织,您可以将它们放在Android Studio的不同目录中。确保您使用的src子目录与风味或buildType

匹配

来自Building Your Project with Gradle

To build each version of your app, the build system combines source code and resources from:

src/main/ - the main source directory (common to all variants)
src/<buildType>/ - the build type source directory
src/<flavorName>/ - the flavor source directory

projectroot/yourapp/build.gradle

buildTypes {
    debug {
        runProguard false
        debuggable true

    }
    release {
        runProguard true
        debuggable false
        ...
    }

projectroot/yourapp/src/main/AndroidManifest.xml

...
<application
    android:name=".MyApplication"
    android:theme="@style/Theme">
<!-- Don't put your key here -->
...

projectroot/yourapp/src/debug/AndroidManifest.xml中,完全限定应用名称。

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application android:name="com.hipmunk.android.HipmunkApplication">
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="yourdebugkey" />
    </application>
</manifest>

projectroot/yourapp/src/release/AndroidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android">
    <application android:name="com.hipmunk.android.HipmunkApplication">
        <meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="release key" />
    </application>
</manifest>

答案 3 :(得分:7)

由于您使用的是gradle,因此可以执行以下操作:

build.gradle

android {
  .. .. ...
    buildTypes {
       debug {
          resValue "string", "google_maps_api_key", "[YOUR DEV KEY]"
       }
       release {
           resValue "string", "google_maps_api_key", "[YOUR PROD KEY]"
       }
    }
  }

AndroidManifest.xml

<meta-data
            android:name="com.google.android.maps.v2.API_KEY"
            android:value="@string/google_maps_api_key"/>

这样您只有一个AndroidManifest.xml,并根据您的构建类型设置值。希望这会有所帮助。