【问题标题】:Jetpack Compose dev06 setContent() doesn't work?Jetpack Compose dev06 setContent() 不起作用?
【发布时间】:2020-03-10 10:04:18
【问题描述】:

更新到 dev06 并运行应用程序时出现以下错误:

java.lang.NoSuchMethodError: No static method setContent(Landroid/app/Activity;Lkotlin/jvm/functions/Function0;)Landroidx/compose/Composition; in class Landroidx/ui/core/WrapperKt; or its super classes (declaration of 'androidx.ui.core.WrapperKt' appears in /data/app/tt.reducto.composesample-BYNjMDWbVhiprnPCNJw0LA==/base.apk)

【问题讨论】:

  • 从 dev4 升级到 dev6 后我也遇到了这个问题,所以不只是你。
  • 从 alpha12 开始,您需要添加对 androidx.activity:activity-compose 的依赖项,如 this answer 所示

标签: android android-jetpack-compose


【解决方案1】:

如果您来自 dev05、dev04(或更低版本),则需要迁移。

更新:此逻辑适用于 Dev09。测试版目前可用。

我设法让它工作。您需要执行以下操作:

  • Android Studio 4.1 Canary 2 或 +
  • gradle-wrapper.properties:

distributionUrl=https\://services.gradle.org/distributions/gradle-6.2.1-all.zip

  • build.gradle:(项目级别)
buildscript {
    ext.kotlin_version = "1.3.70"
    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath "com.android.tools.build:gradle:4.1.0-alpha02"
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
  • build.gradle(应用级):
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 29

    defaultConfig {
        applicationId "com.package.name"
        minSdkVersion 21
        targetSdkVersion 29
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }

    composeOptions {
        kotlinCompilerExtensionVersion = "0.1.0-dev06" // THIS ONE is important
    }

    buildFeatures {
        compose true
    }

    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }

    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }

    kotlinOptions {
        jvmTarget = '1.8'
    }
}

dependencies {

    def compose_version = "0.1.0-dev06"

    implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
    implementation 'androidx.core:core-ktx:1.2.0'
    implementation 'androidx.appcompat:appcompat:1.1.0'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'

    implementation "androidx.ui:ui-foundation:$compose_version"
    implementation "androidx.ui:ui-framework:$compose_version"
    implementation "androidx.ui:ui-tooling:$compose_version"

    implementation "androidx.ui:ui-layout:$compose_version"
    implementation "androidx.ui:ui-material:$compose_version"

    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.1'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}

一旦你完成了所有这些,运行你的代码,你就可以开始了。

【讨论】:

  • 记得将我的答案标记为正确,以便更多人可以看到它,并将帮助许多人将 Jetpack Compose 更新到 dev06
  • 在 dev10 中不起作用(内部编译器错误),但在 dev09 中起作用
【解决方案2】:

对于 Kotlin DSL

kotlinOptions {
    jvmTarget = V.JVM.Kotlin.target
    useIR = true
}

buildFeatures {
//    Enables Jetpack Compose for this module
    compose = true
}

composeOptions {
    kotlinCompilerExtensionVersion = "1.0.0-beta03"
}

【讨论】:

    【解决方案3】:

    确保在你的 gradle 文件中设置 compose true..

    对于 build.gradle.kts

    buildFeatures {
            compose = true
     }
    

    对于传统的build.gradle

    buildFeatures {
        compose true
    }
    

    【讨论】:

      【解决方案4】:

      在你的应用中 build.gradle 应用

       buildFeatures {
          compose true
      }
      composeOptions {
          kotlinCompilerExtensionVersion compose_version
          kotlinCompilerVersion kotlin_compiler_verion
      }
      

      【讨论】:

        【解决方案5】:

        我在buildSrc/build.gradle.kts 中遇到了与不必要的依赖相同的错误

        dependencies {
            implementation("com.android.tools.build:gradle:7.0.0-beta02")
        }
        

        删除此错误消失后。

        撰写版本1.0.0-beta07

        【讨论】:

        • 同样的问题(和解决方案)适用于 com.android.tools.build:gradle:7.1.1 和 compose 1.0.0-rc01。
        【解决方案6】:

        我在使用 Compose dev07 时遇到了同样的错误。我通过在 build.gradle(应用级别)中提供以下代码解决了这个问题:

        composeOptions {
                kotlinCompilerExtensionVersion = "0.1.0-dev07" 
        }
        

        更多信息请查看here

        【讨论】:

          【解决方案7】:

          对于 Kotlin DSL(build.gradle.kts):

          android {
              buildFeatures {
                  compose = true
                  composeOptions.kotlinCompilerExtensionVersion = Depends.Versions.composeVersion //"1.0.0-alpha08"
                  composeOptions.kotlinCompilerVersion = Depends.Versions.kotlinVersion //"1.4.20"
              }
          

          gradle-wrapper.properties 文件 ->
          distributionUrl=https://services.gradle.org/distributions/gradle-6.7.1-bin.zip

          【讨论】:

            猜你喜欢
            • 2021-02-16
            • 2022-07-29
            • 2020-04-07
            • 2021-08-14
            • 2021-09-27
            • 1970-01-01
            • 2022-10-19
            • 2021-07-05
            • 2022-11-10
            相关资源
            最近更新 更多