伙计们。
我刚接触android开发,遇到了一个问题。
不知何故,我不能同步jetbrains图书馆anko,虽然我按照他们写在他们的github。
下面是错误代码和build.gradle。
请帮帮我。
我想用安科图书馆。
错误代码
未能解决:org. jetbrains. anko:anko:0.10.8在"项目结构"对话框中显示受影响的模块:应用程序
Gradle项目
projects/modules.
buildscript{
ext.anko_version = '0.10.8'
}
plugins {
id 'com.android.application' version '7.3.0' apply false
id 'com.android.library' version '7.3.0' apply false
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
}
模块分级
plugins {
id 'kotlin-kapt'
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
namespace 'com.won.kotlinpractice'
compileSdk 32
defaultConfig {
applicationId "com.won.kotlinpractice"
minSdk 21
targetSdk 32
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
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 {
implementation "org.jetbrains.anko:anko:$anko_version"
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.6.1'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
1条答案
按热度按时间9rnv2umw1#
您正在声明错误的Anko实现
请检查这一点,并使用必要的,请找到详细信息here。
注意:Anko已弃用。有关详细信息,请参阅此page。