我目前在同步 gradle 时遇到问题。每当我尝试同步它时,我都会收到以下消息。我从头开始创建了一个新项目,我不知道如何从这里开始。
生成文件'C:\Users\Yun\AndroidStudioProjects\Prac_App_2\Build。坡度线:3
在以下任何源中都找不到插件[id: 'com.android.application ',版本:' 7.2.0 ',apply: false]:
使用 --info 或 --debug 选项运行以获取更多日志输出。使用 --scan 运行以获取完整的见解。
这是build.gradle(项目)。
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
plugins {
id 'com.android.application'
id 'org.jetbrains.kotlin.android'
}
android {
compileSdk 32
defaultConfig {
applicationId "com.example.prac_app_2"
minSdk 23
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 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.6.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
如有任何帮助,我们将不胜感激。
编辑:
在米格尔·里德·鲁伊斯(Miguel Reid Ruiz)的帮助下,我设法使它发挥作用。
供将来参考的代码:
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.21"
}
}
plugins {
id 'com.android.application' version '7.2.0' apply false
id 'com.android.library' version '7.2.0' apply false
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}
新版本有时会出现这种情况,对于我来说,回到7.1.2版本是有效的,您现在应该将
id 'com.android.application' version '7.1.2' apply false
id 'com.android.library' version '7.1.2' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
还要更改项目Gradle顶部的类路径
classpath 'com.android.tools.build:gradle:7.1.2'
当我今天早上启动我的项目时,它随机给我一条消息,说Gradle项目同步失败。基本功能(如编辑、调试)将无法正常工作。Android Studio中的代码。我看了人们为这个问题提出的其他答案,但他们一直没有工作。我取消了我的chach/重启了我的项目,但是没有运气。我也从我的项目文件夹中删除了我的. gradle文件夹,但是仍然没有运气。如果你们中的任何人能帮我,那就太棒了!这不是昨天我在做项目的时
问题内容: 我收到错误消息:“ Gradle项目同步失败。基本功能(例如,整理)将无法正常工作。” 和错误日志: 我在这里阅读时试图删除.gradle文件夹。昨天可以正常工作,但是今天当我启动Android Studio时,错误再次显示,删除.gradle文件夹无济于事。 我真的不知道该怎么办。 有没有人有什么建议? 问题答案: 只是一个盲目的猜测:尝试在项目的 gradle.properties
我已经搜索了网络,尝试了一切,但没有任何效果。我有使用Gradle1.11的Android Studio的0.4.6版。 错误消息为:
我刚刚安装了android Studio2.1.1。当我开始一个老项目的时候,我会犯这个错误- 平台和插件更新:以下组件已准备好更新:Android Support Repository,Google Repository,Google API Intel x86 Atom系统映像,Android SDK Tools 25.1.7 8:18:58 AM Gradle sync启动8:19:39 A
// distributionbase=gradle_user_home distributionpath=wrapper/dists zipstorebase=gradle_user_home zipstorepath=wrapper/distributionurl=https://services.gradle.org/distributions/gradle-2.2.1-all.zip
在设置中,我试图选中“使用默认的分级包装器(推荐)”,但它返回到“使用本地分级分发”,路径为C:\Program Files\Android\Android Studio\gradle\gradle-2.8 我从官方网站下载了Gradle2.8,但没有“本地”目录。 我用SDK更新了一切,并重新启动了Studio,但这也没有帮助。