React-native Cant查找包android.support.v7.app

时间:2019-07-17 11:35:31

标签: android react-native build.gradle

我遇到了一个非常烦人的错误,不会让我构建... 它说找不到包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 {
                                ^

我将提供我的等级(我认为问题出在他们身上,但我无法弄清楚到底是什么原因造成的)

// 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
}
....
}

2 个答案:

答案 0 :(得分:0)

听起来像您启用了AndroidX

检查您的android / gradle.properties并将其禁用

useAndroidX=true

useAndroidX=false

如果启用此功能,则会跳过appcompat v7

编辑:如果您需要AndroidX,请执行我上面提到的操作,并将新版本的appcompat添加到您的android / app / build.gradle

implementation 'androidx.appcompat:appcompat:${rootProject.ext.supportLibVersion}'

以及android / build.gradle

supportLibVersion = '1.0.0'

答案 1 :(得分:0)

终于解决了这个问题,在这里为像我一样来这里寻找解决方案的人发布解决方案:

只需将导入更改为以下内容: enter image description here

干杯