Android Gradle: 在一台设备上安装所有构建类型

Android Gradle: Install all build types on one device

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

我不断收到如下错误:INSTALL_FAILED_CONFLICTING_PROVIDER or INSTALL_FAILED_DUPLICATE_PERMISSION

如果您只使用构建类型而不使用风格,则在同一台设备上安装调试 apk 和发布 apk 会很棘手 ()

大多数博客 post 已经过时(谈论 packageName)或 force you to use flavors 因为他们提出的解决方案不支持 applicationIdSuffix 并且 build type 无法声明 applicationId 因此你需要使用 flavors

我提出的解决方案使用

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

为此,我在 Gradle 文件中使用 applicationIdSuffixmanifest placeholdersBuildConfigFieldresValue

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

build.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"
    .../>

ContentProvider

我有一个从 BuildConfig 中获取的 Authority 常量。

AUTHORITY = BuildConfig.AUTHORITY

账户类型

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

BuildConfig.ACCOUNT_TYPE

多语言应用名称

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

debug/values-en/strings.xml

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

debug/values-fr/strings.xml

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

main/values-en/strings.xml

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

main/values-fr/strings.xml

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