4

在使用 GCM、ContentProvider、AccountType 时,如何配置我的项目以便能够在发布版本旁边安装调试版本?(不使用香料)

我不断收到错误,例如:INSTALL_FAILED_CONFLICTING_PROVIDERINSTALL_FAILED_DUPLICATE_PERMISSION

4

1 回答 1

8

如果您只使用构建类型而不是风味,那么在同一设备上安装调试 apk 和发布 apk 会很棘手(为什么构建类型而不是风味

大多数博客文章要么已过时(谈论 packageName),要么迫使您使用风味,因为他们提出的解决方案不支持applicationIdSuffix并且build type无法声明applicationId,因此您需要使用flavors

我提出的解决方案使用

  • 每个构建类型的权限
  • 每个构建类型的帐户类型
  • 每个构建类型的 GCM 权限

为此,我使用了applicationIdSuffixmanifest placeholders和Gradle 文件。BuildConfigFieldresValue

剩下的唯一问题是,当您想为应用程序和每种语言使用不同的名称时,该字符串未设置为可翻译(错误 aosp tracker),这会强制您进行设置,abortOnError false否则您将无法进行发布构建。

构建.gradle

project.ext {
    defaultApplicationId = "com.myapp.package"
}
android {
    compileSdkVersion 23
    buildToolsVersion "23.0.1"

    defaultConfig {
        applicationId defaultApplicationId

        manifestPlaceholders = [ applicationIdWithSuffix: "${applicationId}" ]

        buildConfigField "String", "ACCOUNT_TYPE", "\"${applicationId}\""
        buildConfigField "String", "AUTHORITY", "\"${applicationId}.provider\""

        resValue "string", "account_type", "${applicationId}"
        resValue "string", "authority", "${applicationId}.provider"
    }
    buildTypes {
        debug {
            applicationIdSuffix ".debug"
            debuggable true

            manifestPlaceholders = [ applicationIdWithSuffix: defaultApplicationId + ".debug" ]

            buildConfigField "String", "ACCOUNT_TYPE",  "\"${defaultApplicationId}.debug\""
            buildConfigField "String", "AUTHORITY", "\"${defaultApplicationId}.debug.provider\""

            resValue "string", "account_type", "${defaultApplicationId}.debug"
            resValue "string", "authority", "${defaultApplicationId}.debug.provider"
        }
    }
    lintOptions {
        abortOnError false
    }
}

AndroidManifest.xml

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

    <permission
        android:name="${applicationIdWithSuffix}.permission.C2D_MESSAGE"
        android:protectionLevel="signature" />

    <uses-permission android:name="${applicationIdWithSuffix}.permission.C2D_MESSAGE" />

    <application
        android:label="@string/app_name" >

        <provider
            android:name=".MyContentProvider"
            android:authorities="${applicationIdWithSuffix}.provider"
            android:exported="false"
            android:multiprocess="true" />
    </application>
</manifest>

同步适配器 xml

<sync-adapter
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:contentAuthority="@string/authority"
    android:accountType="@string/account_type"/>

帐户验证器

<account-authenticator
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="@string/account_type"
    .../>

内容提供商

我有一个权威常量,它从 BuildConfig 中获取。

AUTHORITY = BuildConfig.AUTHORITY

帐户类型

要获取帐户类型,您也可以从 BuildConfig 中获取它。

BuildConfig.ACCOUNT_TYPE

多语言应用名称

如果您希望每个应用程序和语言使用不同的名称:

调试/值-en/strings.xml

<resources>
    <string name="app_name">MyApp debug EN</string>
</resources>

调试/值-fr/strings.xml

<resources>
    <string name="app_name">MyApp debug FR</string>
</resources>

主/值-en/strings.xml

<resources>
    <string name="app_name">MyApp EN</string>
</resources>

主/值-fr/strings.xml

<resources>
    <string name="app_name">MyApp FR</string>
</resources>
于 2015-10-20T10:49:15.750 回答