我正在尝试复制并构建一个不同的项目,以便可以在Android Dev教程中针对实践问题更改一些内容。我已经继续并遵循了有关如何在此处复制项目的两个指南:https://google-developer-training.github.io/android-developer-fundamentals-course-concepts-v2/appendix/appendix-utilities/appendix-utilities.html
和此处的答案:Copy existing project with a new name in Android Studio
,但是经过多次尝试,两者都使我失败了。
在这里,我在a.t.的答案上第11步,当我同步gradle文件时,出现错误,在其他地方更改了项目名称后,它给了我这两个错误:
org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all artifacts for configuration ':classpath'.
org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.HelloToast3.tools.build:gradle:3.6.3.
这分别是我的项目build.gradle
和我的模块应用build.gradle
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.HelloToast3.tools.build:gradle:3.6.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
apply plugin: 'com.HelloToast3.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.example.HelloToast3"
minSdkVersion 15
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-HelloToast3-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
我是android studio的新手,也许这是一个简单的修复程序,但我还找不到解决方案。感谢您的所有帮助。
答案 0 :(得分:0)
好的,我了解您的问题,但并不完全。我想给我建议,当您将任何外部项目导入android studio时,都应该间接进行。要解决任何种类的gradle或build错误,您可以做到,这很简单。