如何在 Android Studio 中设置 gradle 以提供具有不同最低 SDK 版本的两种风格?
How to setup gradle in Android Studio to provide two flavors with different minimum SDK versions?
问题:我想要两种产品口味,一种是有广告的免费版,一种是没有广告的专业版。
广告要求 Google 最低 SDK 为 9,因此我将其设置为免费,但我希望我的专业版最低 SDK 为 8。
免费版的构建有效,但专业版的构建无效。
我正在使用(稳定)Android Studio 1.1.0.
我设置了一个空白的新项目 activity(Hello World 示例)。
然后我修改了 build.gradle 文件(如下)以包含两种风格和特定于 FREE 的编译依赖项,然后修改文件结构以移动 activity 的 java 和布局 xml 文件到风味结构中。因此,该项目具有以下文件结构:
app\src\
free\
java\com\sample\adexample\MainActivity.java - This is Hello World.
res\layout\activity_main.xml - This is the Hello World layout.
res\values\strings.xml - Unique Hello World string for free version.
res\AndroidManifest.xml - This is a copy of the manifest in main.
main\
java\com\sample\adexample\ - empty
res\layout\ - empty
res\AndroidManifest.xml - This is the Hello World manifest.
pro\
java\com\sample\adexample\MainActivity.java - This is Hello World.
res\layout\activity_main.xml - This is the Hello World layout.
res\values\strings.xml - Unique Hello World string for free version.
res\AndroidManifest.xml - This is a copy of the manifest in main.
这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.1"
defaultConfig {
applicationId "com.sample.adexample"
minSdkVersion 8
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
pro {
applicationId "com.sample.adexample.pro"
minSdkVersion 8
versionName "1.0-Pro"
}
free {
applicationId "com.sample.adexample.free"
minSdkVersion 9
versionName "1.0-Free"
dependencies {
compile 'com.google.android.gms:play-services:6.+'
}
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}
构建 freeDebug 风格工作正常。
但是在构建 proDebug 时出现以下错误:
:app:processProDebugManifest
C:\Users\Jeff\AndroidStudioProjects\AdExample\app\src\main\AndroidManifest.xml:0:0 Error:
uses-sdk:minSdkVersion 8 cannot be smaller than version 9 declared in library C:\Users\Jeff\AndroidStudioProjects\AdExample\app\build\intermediates\exploded-aar\com.google.android.gms\play-services.5.87\AndroidManifest.xml
Suggestion: use tools:overrideLibrary="com.google.android.gms" to force usage
有什么方法可以满足要求吗?
感谢您的宝贵时间。
从 free
中删除 dependencies
闭包。将 compile 'com.google.android.gms:play-services:6.+'
移动到现有的 dependencies
闭包中并使其成为 freeCompile
而不是 compile
.
compile
语句上的前缀是如何使依赖项与构建变体相关联,而不是像 compile
那样一直使用。因此,debugCompile
将仅声明对 debug
构建类型的依赖关系,而 freeCompile
将仅声明对 free
产品风格的依赖关系。
AFAIK,这应该适用于多个风味维度,所以如果您有一个仅与 bird
风味(在一个维度上)和 free
风味(在另一个维度上)相关的依赖项),您可以使用 freeBirdCompile 'com.skynyrd.lynyrd:raised-lighter:1.0.0'
将其拉入。
问题:我想要两种产品口味,一种是有广告的免费版,一种是没有广告的专业版。 广告要求 Google 最低 SDK 为 9,因此我将其设置为免费,但我希望我的专业版最低 SDK 为 8。
免费版的构建有效,但专业版的构建无效。
我正在使用(稳定)Android Studio 1.1.0.
我设置了一个空白的新项目 activity(Hello World 示例)。 然后我修改了 build.gradle 文件(如下)以包含两种风格和特定于 FREE 的编译依赖项,然后修改文件结构以移动 activity 的 java 和布局 xml 文件到风味结构中。因此,该项目具有以下文件结构:
app\src\
free\
java\com\sample\adexample\MainActivity.java - This is Hello World.
res\layout\activity_main.xml - This is the Hello World layout.
res\values\strings.xml - Unique Hello World string for free version.
res\AndroidManifest.xml - This is a copy of the manifest in main.
main\
java\com\sample\adexample\ - empty
res\layout\ - empty
res\AndroidManifest.xml - This is the Hello World manifest.
pro\
java\com\sample\adexample\MainActivity.java - This is Hello World.
res\layout\activity_main.xml - This is the Hello World layout.
res\values\strings.xml - Unique Hello World string for free version.
res\AndroidManifest.xml - This is a copy of the manifest in main.
这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.1"
defaultConfig {
applicationId "com.sample.adexample"
minSdkVersion 8
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
pro {
applicationId "com.sample.adexample.pro"
minSdkVersion 8
versionName "1.0-Pro"
}
free {
applicationId "com.sample.adexample.free"
minSdkVersion 9
versionName "1.0-Free"
dependencies {
compile 'com.google.android.gms:play-services:6.+'
}
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.3'
}
构建 freeDebug 风格工作正常。 但是在构建 proDebug 时出现以下错误:
:app:processProDebugManifest
C:\Users\Jeff\AndroidStudioProjects\AdExample\app\src\main\AndroidManifest.xml:0:0 Error:
uses-sdk:minSdkVersion 8 cannot be smaller than version 9 declared in library C:\Users\Jeff\AndroidStudioProjects\AdExample\app\build\intermediates\exploded-aar\com.google.android.gms\play-services.5.87\AndroidManifest.xml
Suggestion: use tools:overrideLibrary="com.google.android.gms" to force usage
有什么方法可以满足要求吗?
感谢您的宝贵时间。
从 free
中删除 dependencies
闭包。将 compile 'com.google.android.gms:play-services:6.+'
移动到现有的 dependencies
闭包中并使其成为 freeCompile
而不是 compile
.
compile
语句上的前缀是如何使依赖项与构建变体相关联,而不是像 compile
那样一直使用。因此,debugCompile
将仅声明对 debug
构建类型的依赖关系,而 freeCompile
将仅声明对 free
产品风格的依赖关系。
AFAIK,这应该适用于多个风味维度,所以如果您有一个仅与 bird
风味(在一个维度上)和 free
风味(在另一个维度上)相关的依赖项),您可以使用 freeBirdCompile 'com.skynyrd.lynyrd:raised-lighter:1.0.0'
将其拉入。