// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
// ...
}
allprojects {
repositories {
+ exclusiveContent {
+ // We get React Native's Android binaries exclusively through npm,
+ // from a local Maven repo inside node_modules/react-native/.
+ // (The use of exclusiveContent prevents looking elsewhere like Maven Central
+ // and potentially getting a wrong version.)
+ filter {
+ includeGroup "com.facebook.react"
+ }
+ forRepository {
+ maven {
+ // NOTE: if you are in a monorepo, you may have "$rootDir/../../../node_modules/react-native/android"
+ url "$rootDir/../node_modules/react-native/android"
+ }
+ }
+ }
// ...
}
}
5条答案
按热度按时间wd2eg0qa1#
它不会显示过时的版本。假设您的插件版本是'1.1.3',那么您的编译器版本是'1.1'而不是'1.1.3'。现在,如果您要更新您的Kotlin,请进入
工具〉Kotlin〉配置Kotlin更新
要更早访问版本'1.2',如下面屏幕截图所示,您将能够在'Kotlin编译器'设置中看到'1.2'
k3fezbri2#
在AndroidStudio项目的较新版本中,
转到构建.gradle(项目)
更改编译器版本将要求您进行更新。
d6kp6zgx3#
在您的Android工作室中,转到工具-〉Kotlin-〉配置Kotlin更新。
有关详细信息,请查看https://segunfamisa.com/posts/setting-up-android-studio-for-kotlin-development
0lvr5msh4#
对于react native以下的解决方案有效
将此修复程序应用到您顶层build.gradle文件,如下所示:
ep6jt1vc5#
打开您的项目gradle并添加以下行
配置项目Gradle后,您需要添加应用Gradle。在android插件后添加Kotlin插件,如下所示
最后一步添加依赖项
然后单击SYNC项目。