ошибкой ?
Could not target platform: 'Java SE 11' using tool chain: 'JDK 8 (1.8)'.
В gradle что прописано?
buildscript { ext { buildToolsVersion = "29.0.3" minSdkVersion = 24 compileSdkVersion = 30 targetSdkVersion = 31 } repositories { google() jcenter() } dependencies { 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 classpath("com.google.gms:google-services:4.3.8") classpath "com.newrelic.agent.android:agent-gradle-plugin:6.9.2" } }
buildscript { ext { buildToolsVersion = "29.0.3" minSdkVersion = 24 compileSdkVersion = 30 targetSdkVersion = 31 } repositories { google() jcenter() } dependencies { 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 classpath("com.google.gms:google-services:4.3.8") classpath "com.newrelic.agent.android:agent-gradle-plugin:6.9.2" } } def REACT_NATIVE_VERSION = new File(['node', '--print',"JSON.parse(require('fs').readFileSync(require.resolve('react-native/package.json'), 'utf-8')).version"].execute(null, rootDir).text.trim()) 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://jitpack.io' } } configurations.all { resolutionStrategy { // Remove this override in 0.65+, as a proper fix is included in react-native itself. force "com.facebook.react:react-native:" + REACT_NATIVE_VERSION } } }
https://ru.stackoverflow.com/a/1296214
несоответствие между версией Java SE, которую вы используете, и версией JDK, необходимой для Android Build Tools Проверьте ваш build.gradle файл и убедитесь, что он содержит правильные значения для compileSdkVersion, targetSdkVersion и buildToolsVersion. Убедитесь, что в вашем buildscript блоке используются самые новые версии Android Build Tools и Gradle.
спасибо. пробую
спасибо, но самые новые боюсь не пойдут, у меня очень старый react-native
проставил 8 версию равно туже ошибку выкидывает при билде
Попробуй clean project сделать
Обсуждают сегодня