gpt4 book ai didi

Plugin [id: 'com.android.application', version: '8.1.0', apply: false] was not found in any of the following sources(Android studio version Giraffe)(在以下来源(Android Studio版本长颈鹿)中找不到插件[id:‘com.android.app’,版本:‘8.1.0’,应用:FALSE])

转载 作者:bug小助手 更新时间:2023-10-24 17:55:06 34 4
gpt4 key购买 nike



After updating my Android studio to Giraffe version when I create a new project I faced an error says

在将我的Android工作室更新到长颈鹿版本后,当我创建一个新项目时,我遇到了一个错误



Plugin [id: 'com.android.application', version: '8.1.0', apply: false]
was not found in any of the following sources:



After many tries and searches I couldn't fix.

经过多次尝试和搜索,我都没能修好。


Build.gradle

Build.gradle


plugins {
id("com.android.application")
}

android {
namespace = "com.webjow.myapplication"
compileSdk = 33

defaultConfig {
applicationId = "com.webjow.myapplication"
minSdk = 24
targetSdk = 33
versionCode = 1
versionName = "1.0"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

buildTypes {
release {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"proguard-rules.pro"
)
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}

dependencies {

implementation("androidx.appcompat:appcompat:1.6.1")
implementation("com.google.android.material:material:1.9.0")
testImplementation("junit:junit:4.13.2")
androidTestImplementation("androidx.test.ext:junit:1.1.5")
androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
}

更多回答
优秀答案推荐

I solved it by changing distributionUrl=https://services.gradle.org/distributions/gradle-8.1-bin.zip

我通过改变distributionUrl=https://services.gradle.org/distributions/gradle-8.1-bin.zip解决了这个问题



Maybe you enabled Gradle offline mode, try disable it.

可能您启用了Gradle脱机模式,请尝试禁用它。



I solved this issue by removing the proxy settings from the gradle.properties file in Android Studio. To do this, open the gradle.properties file and remove the following lines:

我通过从Android Studio的gradle.properties文件中删除代理设置解决了这个问题。要执行此操作,请打开gradle.properties文件并删除以下行:


proxyHost=
proxyPort=

Save the file and try running your project again. The error should be gone.

保存该文件,然后再次尝试运行项目。错误应该消失了。


Here is a more detailed explanation of the steps involved:

以下是对所涉及步骤的更详细说明:



  1. Open the gradle.properties file in Android Studio.

  2. Find the lines that start with proxyHost and proxyPort.

  3. Remove these lines.

  4. Save the file.

  5. Try running your project again.


更多回答

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