Closed Shah-Rajan closed 1 month ago
:warning: | Missing Reproducible Example |
---|---|
:information_source: | We could not detect a reproducible example in your issue report. Please provide either:
|
:warning: | Missing Reproducible Example |
---|---|
:information_source: | We could not detect a reproducible example in your issue report. Please provide either:
|
:warning: | Unsupported Version of React Native |
---|---|
:information_source: | It looks like your issue or the example you provided uses an unsupported version of React Native. Due to the number of issues we receive, we're currently only accepting new issues against one of the supported versions. Please upgrade to latest and verify if the issue persists (alternatively, create a new project and repro the issue in it). If you cannot upgrade, please open your issue on StackOverflow to get further community support. |
:warning: | Unsupported Version of React Native |
---|---|
:information_source: | It looks like your issue or the example you provided uses an unsupported version of React Native. Due to the number of issues we receive, we're currently only accepting new issues against one of the supported versions. Please upgrade to latest and verify if the issue persists (alternatively, create a new project and repro the issue in it). If you cannot upgrade, please open your issue on StackOverflow to get further community support. |
@Shah-Rajan Thanks for the report.
Thanks for your understanding.
please don't ping people in the issue directly. We look at all of them and we will get to yours when we have time. Both 0.70 and 0.71 are not supported anymore. We don't have capacity to look into bugs from those versions.
Closing for the aformentioned reasons. Please don't ping random users to attract attention + 0.70/0.71 are unsupported.
Description
@shergin, @sammy-SC @javache @cortinico @fkgozali
while upgrading react-native version 0.70.1 to 0.71.0 the build is successfull but on launch app crashes with the error :couldn't find DSO to load: libjscexecutor.so
android/build.gradle
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { ext { buildToolsVersion = "34.0.0" minSdkVersion = 23 compileSdkVersion = 34 targetSdkVersion = 34 kotlin_version = '1.7.20'
}
allprojects { repositories { // exclusiveContent { // // We get React Native's Android binaries exclusively through npm, // // from a local Maven repo inside node_modules/react-native/. // // (The use of exclusiveContent prevents looking elsewhere like Maven Central // // and potentially getting a wrong version.) // filter { // includeGroup "com.facebook.react" // } // forRepository { // maven { // url "$rootDir/../node_modules/react-native/android" // } // } // } // 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") // } // mavenCentral { // // We don't want to fetch react-native from Maven Central as there are // // older versions over there. // content { // excludeGroup "com.facebook.react" // } // } // google() // maven { url 'https://www.jitpack.io' } configurations.all { resolutionStrategy { force "com.google.android.gms:play-services-location:21.0.1" } } } }
app/build.gradle apply plugin: "com.android.application" apply plugin: "com.facebook.react" apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.firebase.crashlytics' project.ext.envConfigFiles = [ development: ".env.development", staging: ".env.staging", production: ".env.production", ] apply from: project(':react-native-config').projectDir.getPath() + "/dotenv.gradle"
import com.android.build.OutputFile // import org.apache.tools.ant.taskdefs.condition.Os
/**
// project.ext.react = [ // enableHermes: true, // clean and rebuild if changing // ]
// apply from: "../../node_modules/react-native-code-push/android/codepush.gradle" react { / Folders / // The root of your project, i.e. where "package.json" lives. Default is '..' // root = file("../") // The folder where the react-native NPM package is. Default is ../node_modules/react-native // reactNativeDir = file("../node-modules/react-native") // The folder where the react-native Codegen package is. Default is ../node_modules/react-native-codegen // codegenDir = file("../node-modules/react-native-codegen") // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js // cliFile = file("../node_modules/react-native/cli.js")
} /**
/**
/**
def jscFlavor = 'org.webkit:android-jsc-intl:+'
Date.toLocaleString
andString.localeCompare
that/**
def reactNativeArchitectures() { def value = project.getProperties().get("reactNativeArchitectures") return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"] }
apply from: "../../node_modules/@sentry/react-native/sentry.gradle" android { ndkVersion rootProject.ext.ndkVersion
}
dependencies { // The version of react-native is set by the React Native Gradle Plugin implementation("com.facebook.react:react-android")
}
// Run this once to be able to run the application with BUCK // puts all compile dependencies into folder libs for BUCK to use task copyDownloadableDepsToLibs(type: Copy) { from configurations.implementation into 'libs' }
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
/**
/**
Steps to reproduce
xyz
React Native Version
0.71.0
Affected Platforms
Runtime - Android, Runtime - iOS
Output of
npx react-native info
Stacktrace or Logs
Reproducer
dadsfff
Screenshots and Videos
No response