【问题标题】:Android flavors: Add an external library on a specific flavorAndroid 风格:在特定风格上添加外部库
【发布时间】:2018-05-31 10:22:40
【问题描述】:

在我的项目 gradle 中,我声明了两种风格:

android {
compileSdkVersion 27
defaultConfig {
    applicationId "com.mypackage"
    minSdkVersion 14
    targetSdkVersion 27
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}

flavorDimensions "myFlavor"

productFlavors {
    firts{
        dimension "myFlavor"
        applicationId "com.mypackage.first"
    }

    second{
        dimension "myFlavor"
        applicationId "com.mypackage.second"
    }
}
}

dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
implementation 'com.android.support:design:27.1.1'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
}

现在我只需要包含和使用外部 jar 库即可。 我该怎么办?

【问题讨论】:

  • secondImplementation files('path/to/myexternal.jar') ?

标签: android android-studio android-gradle-plugin build.gradle android-flavors


【解决方案1】:

就像用<flavor-name>Implementation <library>替换implementation一样简单

假设您只想为 second 风格添加 com.android.support:design:27.1.1。您可以按如下方式实现:

dependencies {
    ...
    secondImplementation 'com.android.support:design:27.1.1'
    ...
}

【讨论】:

    猜你喜欢
    • 2023-03-31
    • 2011-01-24
    • 1970-01-01
    • 2015-09-05
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多