Android Studio -如何升级jetpack compose?

dwbf0jvd  于 2023-03-21  发布在  Android
关注(0)|答案(2)|浏览(167)

我目前使用的是Android Studio(2021.2.1 Patch 2)。在选择空的合成活动时,使用的合成版本是1.1.0-beta01。我如何将其升级到1.2.0-beta01,因为之前的版本在使用LazyVerticalGrid时出错?我是Android的初学者。任何帮助都将不胜感激。
以下是该项目的app/build.gradle文件:

plugins {
    id 'com.android.application'
    id 'org.jetbrains.kotlin.android'
}

android {
    compileSdk 32

    defaultConfig {
        applicationId "com.example.courses"
        minSdk 21
        targetSdk 32
        versionCode 1
        versionName "1.0"

        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        vectorDrawables {
            useSupportLibrary 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'
    }
    buildFeatures {
        compose true
    }
    composeOptions {
        kotlinCompilerExtensionVersion compose_version
    }
    packagingOptions {
        resources {
            excludes += '/META-INF/{AL2.0,LGPL2.1}'
        }
    }
}

dependencies {

    implementation 'androidx.core:core-ktx:1.7.0'
    implementation "androidx.compose.ui:ui:$compose_version"
    implementation "androidx.compose.material:material:$compose_version"
    implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
    implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
    implementation 'androidx.activity:activity-compose:1.3.1'
    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
    debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
    debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_version"
}

顶级build.gradle文件:

buildscript {
    ext {
        compose_version = '1.1.0-beta01'
    }
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
    id 'com.android.application' version '7.2.2' apply false
    id 'com.android.library' version '7.2.2' apply false
    id 'org.jetbrains.kotlin.android' version '1.5.31' apply false
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

我曾尝试将toplevelbuild.gradle文件中的合成版本更改为1.2.0-beta01,但项目的构建失败。
如果您需要更多信息,请在评论中注明。谢谢

zhte4eai

zhte4eai1#

在没有看到编译错误消息的情况下,我只能猜测可能是什么原因。但是我看到了一些可能会给你带来问题的东西。
用于1.2.0-beta01的合成编译器需要Kotlin插件版本1.6.21请参阅Compose Kotlin Compatibility Map
此外,从1.2.0版本开始,他们引入了独立于其他Compose库的Compose Compiler版本,这意味着kotlinCompilerExtensionVersion需要指向不同的版本。目前最新的编译器版本是1.3.1,需要Kotlin插件版本1.7.10
尝试以下更改。

ext {
    compose_version = '1.3.0-beta02' // or 1.2.1 if you want the latest stable version
}
composeOptions {
    kotlinCompilerExtensionVersion "1.3.1"
}
plugins {
    // others omitted
    id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
yizd12fk

yizd12fk2#

  • 如果有人想阅读有关Compose Compiler独立于其他Compose库的版本控制的信息(如前面的答案中所述),可以找到发行说明HERE

相关问题