【发布时间】:2019-07-17 11:35:31
【问题描述】:
我遇到了这个非常烦人的错误,我无法构建... 它说它找不到包 android.support.v7.app 我的 SplashScreen js 文件中到处都是错误
error: package android.support.v7.app does not exist
import android.support.v7.app.AppCompatActivity;
^
D:\FifaLeagueApp\FifaIL\android\app\src\main\java\com\fifail\SplashActivity.java:7: error: cannot find symbol
public class SplashActivity extends AppCompatActivity {
^
我会提供我的 gradles(我认为问题出在他们身上,但我不知道究竟是什么原因造成的)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 28
supportLibVersion = "28.0.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath('com.android.tools.build:gradle:3.4.2')
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
}
...
android {
compileSdkVersion rootProject.ext.compileSdkVersion
compileOptions {
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_1_8
}
...
defaultConfig {
applicationId "com.fifail"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
}
...
dependencies {
implementation project(':react-native-vector-icons')
implementation project(':react-native-splash-screen')
implementation project(':react-native-restart')
implementation project(':react-native-gesture-handler')
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation "com.facebook.react:react-native:+" // From node_modules
}
....
}
【问题讨论】:
标签: android react-native build.gradle