我正在创建一个食品订购应用程序,并遵循此[指南] https://youtu.be/9nWcPPHBzMk)
我停止在9:21当视频运行其应用程序。我开始运行我的,我遇到了这个问题,我不知道如何解决它。
"Duplicate Class Found"
This is my dependencies in "build.gradle", hoping this can help
plugins {
id 'com.android.application'
}
android {命名空间'com.示例.食品订购' compileSdk 32
defaultConfig {
applicationId "com.example.foodordering"
minSdk 24
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
}
}
相关性{
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.4'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.0'
implementation 'com.google.android.material:material:1.4.0-rc01'
implementation 'com.github.bumptech.glide:glide:4.8.0'
implementation 'com.google.code.gson:gson:2.8.7'
}
如果有人知道如何解决这个问题,我真的需要帮助。非常感谢
我也试过把它移植到Androidx上,但没有成功.
1条答案
按热度按时间6rqinv9w1#
机器人.启用Jetifier =真::在我将这一行插入www.example.com文件后,我的应用程序正常运行gradle.properties。