react-native中的import com.android.build.OutputFile错误
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了react-native中的import com.android.build.OutputFile错误相关的知识,希望对你有一定的参考价值。
首先我运行一个新项目
react-native init AwesomeProject --version 0.58.6
((0.59.1有一个错误,但是我用它测试了这个问题)
使用react-native run-android
,我可以运行它。
在android studio中,当我同步它时,出现错误:
app / build.gradle:
import com.android.build.OutputFile
错误:无法解析符号'build'
我使用这些版本:
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 27
supportLibVersion = "28.0.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
答案
我认为在android studio中,您只能导入android部分。
转到:文件->打开->选择项目->选择名称为android的文件夹。
对我有用。
以上是关于react-native中的import com.android.build.OutputFile错误的主要内容,如果未能解决你的问题,请参考以下文章