gpt4 book ai didi

android - 当我在 gradle 中导入 Android-ktx 时,kotlin 扩展的合成不起作用

转载 作者:行者123 更新时间:2023-11-29 14:12:20 25 4
gpt4 key购买 nike

我正在尝试在我的项目中测试一些 android jetpack 功能,我已经可以使用导航功能。当我尝试导入 android-ktx 并将我的依赖项迁移到 androidx 时,我成功地同步了 gradle,但是我无法通过合成访问我的按钮。

有人知道它是什么吗?

我的 Gradle :

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 28
defaultConfig {
applicationId "com.qmakercorp.qmaker"
minSdkVersion 22
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.support.test.runner.AndroidJUnitRunner"
}

androidExtensions {
experimental = true
}

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

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.2.71"
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'

// implementation 'com.android.support:appcompat-v7:28.0.0'
// implementation 'com.android.support:design:28.0.0'
// implementation 'com.android.support.constraint:constraint-layout:1.1.3'
// implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
// implementation 'com.android.support:support-v4:28.0.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.1.0-beta01'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0-beta01'

implementation "android.arch.navigation:navigation-fragment-ktx:1.0.0-alpha06"
implementation "android.arch.navigation:navigation-ui-ktx:1.0.0-alpha06"
androidTestImplementation 'androidx.test:rules:1.1.0-beta01'

implementation 'androidx.core:core-ktx:1.0.0'

我的 fragment :

Print from fragment

最佳答案

在您的应用 build.gradle 文件中,您导入了 androidx.legacy:legacy-support-v4:1.0.0 并点击了立即同步 .之后你有错误说 Manifest merger failed : Attribute bla bla ... 并评论 com.android.support:support-v4:28.0.0 但没有显示 Sync Now 并且您没有将项目与 gradle 文件同步。这样您仍然可以使用 LoginFragment 中的 android.support.v4.app.Fragment。建议:点击 Sync Project with Gradle Files 按钮并将 import android.support.v4.app.Fragment 替换为 import androidx.fragment.app.Fragment

关于android - 当我在 gradle 中导入 Android-ktx 时,kotlin 扩展的合成不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52752500/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com