新装的AndroidStudio2021.2.1 Patch 1 版本(Chipmunk花栗鼠),想新建一个Kotlin项目来写写Demo,项目刚创建好,编译就不通过,遇到了Plugin [id: ‘com.android.application‘, version: ‘7.2.1‘, apply: false] was not found in any这个问题。 问题原因: 如上解释,所配置gradle版本在本地配置的gradle仓库里面没...
File>Project Structure>Project> Android Gradle Plugin Version:7.3.0 Gradle Version:7.4 这里不能随便改,因为Gradle Plugin的版本和Gradle的版本需要匹配的。可以去下载7.4的Gradle的binary-only包,解压。 然后在File>settings>Build,Execution,Deployment>Build Tools>Gradle中的Use Gradle from:Specified location>选择...
现在提供两种方法:第一种去网上找早期的as版本,比如AndroidStudio3.41,把现在用的卸载了。 第二种:在电脑里更改系统文件中的代理地址,连接谷歌的。如下,在里面添加链接地址,保存后再次重启下,不行就卸载干净,又重装。还是不行,重做系统,更改代理地址,再次重装。 打开C:\Windows\System32\drivers\etc 文件夹下的 h...
classpath "com.android.tools.build:gradle:4.1.3" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { google() jcenter() mave...
从 github 上面下载的 Android 项目,里面没有 gradlew 这个文件,也就是说没有使用 gradle wrapper,...
将项目gradle中的classpath gradle版本更改为:
Solve Gradle error: Plugin with id 'com.android.application' not found | sebhastian 步骤: 1.检查settings.gradle里的 maven 仓库是否存在,正常内容如下 pluginManagement { repositories { google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { ...
gradlePluginPortal() } } plugins { id "dev.flutter.flutter-plugin-loader" id "com.android.application" version "7.4.2" apply false } include ":app" 字符串android/build.gradle应该是这样的: rootProject.buildDir = "../build" subprojects { project.buildDir = "${rootProject.buildDir}/${proje...
我认为问题出在Android Studio版本上,您可以尝试将其更新到最新版本。但是,如果您不想使用Gradle 8的新功能,则可以直接使用Gradle版本7。例如. gradle== 7.2 gradle plugin== 7.1.2是为我工作,希望这对你有帮助这是我的参考链接:https://sebhastian.com/plugin-with-id-com-android-application-not-found/https...
gradle-7.0-bin.zipgradle-7.2-bin.zipgradle-7.3-bin.zip Keep in mind that you also need to check the Android Studio version, because older Android Studio doesn’t support the latest Android Gradle plugin (link). Once the Gradle version is updated, build your Android application again. The is...