当前位置:网站首页>Android build error: Plugin with id 'kotlin-android' not found.
Android build error: Plugin with id 'kotlin-android' not found.
2022-08-03 21:19:00 【Bing0lin】
Refrence
https://metapx.org/plugin-with-id-kotlin-android-not-found/
To fix the error, you need to add kotlin-gradle-plugin to your build.gradle file as shown below:
plugins {id 'com.android.application' version '7.1.2' apply falseid 'com.android.library' version '7.1.2' apply false// Add the following sentenceid 'org.jetbrains.kotlin.android' version '1.6.21' apply false}task clean(type: Delete) {delete rootProject.buildDir}The latest Android Studio lists the dependencies using Gradle plugins DSL as shown on Kotlin plugins for Gradle documentation.
边栏推荐
猜你喜欢
随机推荐
通关剑指 Offer——剑指 Offer II 009. 乘积小于 K 的子数组
E - Swap
4. Modular programming
上课笔记(6)(1)——#629. 表达式括号匹配(stack)
Soft exam system analysts note experience sharing: theory of protracted war
dataframe multi-level index replace index df.swaplevel(axis=1)
C. Divan and bitwise operations
chart.js多条曲线图插件
华为设备配置VRRP负载分担
nxp官方uboot移植到野火开发板PRO(修改LCD部分和网络部分)
服务器安装redis
如何使用 Jmeter获取登录token并设置为全局变量?
Linux操作Jmeter(附带:关于连接上redis无法进行写入操作的问题),JMeter配置多用户进行压力测试
好朋友离职了,一周面试了20多场,我直呼内行
chartjs自定义柱状图插件
迪赛智慧数——柱状图(多色柱状图):2021年我国城市住户存款排名
开源一夏 |如何优化线上服务器
这几个常用 alias,带你高效做事(下)
Cross-end development technical reserve record
尚医通项目总结









