繁体   English   中英

React Native - 确保 Gradle 在 JDK 上运行,而不是 JRE

[英]React Native - Make sure Gradle is running on a JDK, not JRE

我在Expo有一个应用程序并使用了expo eject

我的应用程序使用npx react-native run-iosiOS上运行良好

在 Android 上运行时遇到问题,出现以下问题:

> Task :unimodules-core:compileDebugKotlin FAILED

Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings
362 actionable tasks: 5 executed, 357 up-to-date

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':unimodules-core:compileDebugKotlin'.
> Kotlin could not find the required JDK tools in the Java installation '/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Home' used by Gradle. Make sure Gradle is running on a JDK, not JRE.

在目录/Library/Internet Plug-Ins我有:

在此处输入图片说明

这是我的 bash_profile:

export ANDROID_HOME=$HOME/Library/Android/sdk
export PATH=$PATH:$ANDROID_HOME/emulator
export PATH=$PATH:$ANDROID_HOME/tools
export PATH=$PATH:$ANDROID_HOME/tools/bin
export PATH=$PATH:$ANDROID_HOME/platform-tools

export JAVA_HOME=/Applications/"Android Studio.app"/Contents/jre/jdk/Contents/Home

这是我的build.gradle文件:

buildscript {
ext {
    buildToolsVersion = "30.0.0"
    minSdkVersion = 21
    compileSdkVersion = 30
    targetSdkVersion = 30
}
repositories {
    google()
    jcenter()
}
dependencies {
    classpath 'com.google.gms:google-services:4.3.3'
    classpath("com.android.tools.build:gradle:4.0.1")

    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
}
}

allprojects {
repositories {
    mavenLocal()
    maven {
        // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
        url("$rootDir/../node_modules/react-native/android")
    }
    maven {
        // Android JSC is installed from npm
        url("$rootDir/../node_modules/jsc-android/dist")
    }

    google()
    jcenter()
    maven { url 'https://www.jitpack.io' }
}
}

我的gradle-wrapper.properties文件:

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

尝试了各种stackoverflow帖子,但似乎无法解决这个问题,非常感谢任何帮助。

问题似乎出在 JDK 上。 你的系统安装JDK了吗? 尝试使用 v8 下载 JDK,然后重试。 它应该运行。 如果安装了任何其他,请尝试安装特定于 8。

您可以从这里找到官方软件包-

https://www.oracle.com/in/java/technologies/javase/javase8-archive-downloads.html

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM