我升级到 Jetpack Compose 1.0.0-alpha12 并开始遇到问题。
首先,我使用的 setContent
方法显示已弃用。
从Alpha 12 release notes,我注意到它说:
<块引用>ComponentActivity.setContent 已移至 androidx.activity:activity-compose 模块中的 androidx.activity.compose.setContent。 (Icf416)
所以我删除了我的 import androidx.compose.ui.platform.setContent
并将其切换为 import androidx.activity.compose.setContent
,从而删除了弃用。
但是,我收到了一个错误消息:
w: Flag is not supported by this version of the compiler: -Xallow-jvm-ir-dependencies
w: ATTENTION!
This build uses unsafe internal compiler arguments:
-XXLanguage:+NonParenthesizedAnnotationsOnFunctionalTypes
This mode is not recommended for production use,
as no stability/compatibility guarantees are given on
compiler or generated code. Use it at your own risk!
e: Classes compiled by an unstable version of the Kotlin compiler were found in dependencies.
Remove them from the classpath or use '-Xallow-unstable-dependencies' to suppress errors
e: /[my path]/MainActivity.kt: (39, 9): Class 'androidx.activity.compose.ComponentActivityKt' is
compiled by an unstable version of the Kotlin compiler and cannot be loaded by this compiler
再一次,我可以通过更改我的 build.gradle
文件来解决这个问题:
kotlinOptions {
jvmTarget = '1.8'
useIR = true
// I added this line
freeCompilerArgs += "-Xallow-unstable-dependencies"
}
虽然让我编译我的应用程序,但我现在在运行时遇到以下异常:
java.lang.NoSuchMethodError: No static method setContent(
Landroidx/activity/ComponentActivity;Landroidx/compose/runtime/Com
positionContext;Lkotlin/jvm/functions/Function2;)V in class
Landroidx/activity/compose/ComponentActivityKt; or its super classes
(declaration of 'androidx.activity.compose.ComponentActivityKt' appears in [my apk]
如何解决此问题并将我的应用升级到 Jetpack Compose 1.0.0-alpha12?
答案 0 :(得分:29)
根据 this issue,此问题与新的 androidx.activity:activity-compose:1.3.0-alpha01
工件有关。
来自那个问题:
<块引用>Activity 1.3.0-alpha02
已发布并修复了此问题。
使用 Compose alpha12 的应用程序,特别是像 androidx.compose.ui:ui-test-junit4:1.0.0-alpha12
这样在内部使用 setContent
的工件应该将 activity-compose:1.3.0-alpha02
依赖项添加到它们的 dependencies
块中以确保 1.3.0-alpha01
未使用工件
因此,要修复您的应用,您应该:
从 freeCompilerArgs += "-Xallow-unstable-dependencies"
文件中删除 build.gradle
行(因为不再需要)
添加对 Activity Compose 1.3.0-alpha02
的特定依赖:
implementation 'androidx.activity:activity-compose:1.3.0-alpha02'
通过添加该依赖项,setContent
的任何直接使用以及 androidx.compose.ui:ui-tooling:1.0.0-alpha12
或 androidx.compose.ui:ui-test-junit4:1.0.0-alpha12
的内部使用都将使用固定的 Activity Compose 1.3.0-alpha02 版本。
答案 1 :(得分:0)
使用 Activity 1.3.0-alpha02
,setContent
可以正常工作,但出现另一个错误。
Execution failed for task ':app:mergeDebugJavaResource'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.MergeJavaResWorkAction
> 2 files found with path 'META-INF/AL2.0' from inputs:
不得不使用变通方法来构建它
packagingOptions {
exclude 'META-INF/AL2.0'
exclude 'META-INF/LGPL2.1'
}
仍然有警告
Flag is not supported by this version of the compiler: -Xallow-jvm-ir-dependencies