【问题标题】:Unknown Property dynamicFeatures for object of type AppExtensionAppExtension 类型对象的未知属性 dynamicFeatures
【发布时间】:2019-09-23 03:49:53
【问题描述】:

从免安装应用迁移到应用包后,我收到以下错误。

Could not set unknown property 'dynamicFeatures' for object of type com.android.build.gradle.AppExtension.

我已按照https://developer.android.com/topic/google-play-instant/feature-module-migration 的说明进行操作。

我已尝试更新应用的构建工具和目标 SDK 版本,但没有帮助。

这是我的动态功能模块的 build.gradle 文件。

apply plugin: 'com.android.dynamic-feature'

android {
    dynamicFeatures = [":features:base"]  // This is where error points to!
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation project(':features:base')

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

应用中使用的版本:

    buildTools = "28.0.3"
    compileSdk = 28
    targetSdk = 28
    minSdkInstant = 21
    minSdk = 21
    archLifecycleVersion = "1.1.1" //"2.0.0"
    ktxVersion = "1.0.1"

    supportLibVersion = "28.0.0"
    playServicesAuthVersion = "11.8.0"
    espressoVersion = "3.0.1"
    androidTestVersion = "0.5"
    hamcrestVersion = "1.3"
    junitVersion = "4.12"

gradle-wrapper 版本:5.1.1

【问题讨论】:

    标签: android dynamic android-gradle-plugin app-bundle


    【解决方案1】:

    我在动态功能模块中设置了 dynamicFeatures 变量,这是不正确的。您必须仅在基本模块中设置 dynamicFeatures 变量。

    feature1/build.gradle

    apply plugin: 'com.android.dynamic-feature'
    
    android {
        ...
        // do not set dynamicFeatures here!
    }
    

    app/build.gradle

    apply plugin: 'com.android.application'
    
    android {
        ...
        dynamicFeatures = [":feature1", ":feature2"]
    }
    

    您可以在此处查看示例项目:https://github.com/CapTechMobile/Android-App-Bundle-Sample

    【讨论】:

      猜你喜欢
      • 2020-09-02
      • 1970-01-01
      • 2018-01-31
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2016-08-21
      • 2020-06-15
      • 2020-01-02
      相关资源
      最近更新 更多