FAILURE: Build failed with an exception. in "react-native": "0.75.2",
Run react-native info in your project and share the content.
info Fetching system and libraries information...
(node:25196) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency
(Use `node --trace-warnings ...` to show where the warning was created)
System:
OS: Windows 11 10.0.22631
CPU: "(16) x64 AMD Ryzen 7 4800H with Radeon Graphics "
Memory: 1.57 GB / 15.37 GB
Binaries:
Node:
version: 20.14.0
path: H:\app\nvm\nodejs\node.EXE
Yarn:
version: 1.22.22
path: H:\app\nvm\nodejs\yarn.CMD
npm:
version: 10.7.0
path: H:\app\nvm\nodejs\npm.CMD
Watchman: Not Found
SDKs:
Android SDK: Not Found
Windows SDK: Not Found
IDEs:
Android Studio: Not Found
Visual Studio:
- 17.6.33829.357 (Visual Studio Community 2022)
Languages:
Java: 17.0.3.1
Ruby: Not Found
npmPackages:
"@react-native-community/cli": Not Found
react:
installed: 18.3.1
wanted: 18.3.1
react-native:
installed: 0.75.2
wanted: 0.75.2
react-native-windows: Not Found
npmGlobalPackages:
"*react-native*": Not Found
Android:
hermesEnabled: true
newArchEnabled: false
iOS:
hermesEnabled: Not found
newArchEnabled: Not found
What react-native-splash-screen version are you using?
"react-native-tab-navigator": "^0.3.4",
What platform does your issue occur on? (Android/iOS/Both)
Android
Describe your issue as precisely as possible :
- Steps to reproduce the issue or to explain in which case you get the issue
- Interesting
logs
As long as I add the dependency yarn add reactive plasma screen, the project will fail to start failed to launch project
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:checkDebugDuplicateClasses'.
> A failure occurred while executing com.android.build.gradle.internal.tasks.CheckDuplicatesRunnable
> Duplicate class android.support.v4.app.INotificationSideChannel found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.app.INotificationSideChannel$Stub found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.app.INotificationSideChannel$Stub$Proxy found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.IResultReceiver found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.IResultReceiver$Stub found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.IResultReceiver$Stub$Proxy found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.ResultReceiver found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.ResultReceiver$1 found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.ResultReceiver$MyResultReceiver found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Duplicate class android.support.v4.os.ResultReceiver$MyRunnable found in modules core-1.9.0.aar -> core-1.9.0-runtime (androidx.core:core:1.9.0) and support-compat-26.1.0.aar -> support-compat-26.1.0-runtime (com.android.support:support-compat:26.1.0)
Join a screenshot or video of the problem on the simulator or device?
Show us the code you are using?
Same here with 0.75.1 and splash screen 3.3.0
same with @linhuanfeng
I think this has to do with the fact that in the latest react native, it's moving from java files to kt files.
This is a repo that doesn't seem to be updated anymore but these are the steps I took.
Although it is not recommended - I added android.enableJetifier=true to my gradle.properties file
android.useAndroidX=true
android.enableJetifier=true <-- This is the line that is important for the duplicate classes
My android/app/src/main/java/com/<APP_NAME>/MainActivity.kt my file looks like this
package com.<APP_NAME>
import android.os.Bundle
import com.facebook.react.ReactActivity
import com.facebook.react.ReactActivityDelegate
import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled
import com.facebook.react.defaults.DefaultReactActivityDelegate
import org.devio.rn.splashscreen.SplashScreen
class MainActivity : ReactActivity() {
/**
* Returns the name of the main component registered from JavaScript. This is used to schedule
* rendering of the component.
*/
override fun getMainComponentName(): String = "main"
/**
* Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
* which allows you to enable New Architecture with a single boolean flags [fabricEnabled]
*/
override fun createReactActivityDelegate(): ReactActivityDelegate =
DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
override fun onCreate(savedInstanceState: Bundle?) {
SplashScreen.show(this)
super.onCreate(null) // SplashScreen actually will call super.onCreate
}
}
My android/app/src/main/java/com/app_name/SplashActivity.kt my file looks like this
package com.<APP_NAME>;
import android.content.Intent;
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
class SplashActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState);
val intent = Intent(this, MainActivity::class.java);
startActivity(intent)
finish()
}
}
Fix PR raised, owner Please merge my PR and publish a new version -> https://github.com/crazycodeboy/react-native-splash-screen/pull/650
Fix PR raised, owner Please merge my PR and publish a new version -> #650
I think you should also update the readme for MainActivity.kt
Any ETA for this merge?
Hi will change this by tomorrow
On Mon, 9 Sept 2024, 21:12 Federico Nelli, @.***> wrote:
Any ETA for this merge?
— Reply to this email directly, view it on GitHub https://github.com/crazycodeboy/react-native-splash-screen/issues/649#issuecomment-2338462408, or unsubscribe https://github.com/notifications/unsubscribe-auth/AL6QEJW55R4ALZNCMAVYRY3ZVW6WJAVCNFSM6AAAAABM7I2IWKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMZYGQ3DENBQHA . You are receiving this because you commented.Message ID: @.***>
Hi, I checked,
No change is required in the README.md file, you can proceed with merge and publish new version
On Mon, Sep 9, 2024 at 9:30 PM Umesh Patidar @.***> wrote:
Hi will change this by tomorrow
On Mon, 9 Sept 2024, 21:12 Federico Nelli, @.***> wrote:
Any ETA for this merge?
— Reply to this email directly, view it on GitHub https://github.com/crazycodeboy/react-native-splash-screen/issues/649#issuecomment-2338462408, or unsubscribe https://github.com/notifications/unsubscribe-auth/AL6QEJW55R4ALZNCMAVYRY3ZVW6WJAVCNFSM6AAAAABM7I2IWKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMZYGQ3DENBQHA . You are receiving this because you commented.Message ID: @.*** com>
--
Thanks and Regards,Umesh Patidar+91 8319296080
I think this has to do with the fact that in the latest react native, it's moving from java files to kt files.
This is a repo that doesn't seem to be updated anymore but these are the steps I took. Although it is not recommended - I added
android.enableJetifier=trueto my gradle.properties fileandroid.useAndroidX=true android.enableJetifier=true <-- This is the line that is important for the duplicate classesMy android/app/src/main/java/com/<APP_NAME>/MainActivity.kt my file looks like this
package com.<APP_NAME> import android.os.Bundle import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate import org.devio.rn.splashscreen.SplashScreen class MainActivity : ReactActivity() { /** * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ override fun getMainComponentName(): String = "main" /** * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] */ override fun createReactActivityDelegate(): ReactActivityDelegate = DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled) override fun onCreate(savedInstanceState: Bundle?) { SplashScreen.show(this) super.onCreate(null) // SplashScreen actually will call super.onCreate } }My android/app/src/main/java/com/app_name/SplashActivity.kt my file looks like this
package com.<APP_NAME>; import android.content.Intent; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; class SplashActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState); val intent = Intent(this, MainActivity::class.java); startActivity(intent) finish() } }
thank you!! i updated my MainActivity.kt and it work fine
Thank you,
When are you planning to merge this code? Also I think it is breaking changes also, so we should update major version also
On Tue, 10 Sept 2024, 10:10 Nguyễn Xuân An, @.***> wrote:
I think this has to do with the fact that in the latest react native, it's moving from java files to kt files.
This is a repo that doesn't seem to be updated anymore but these are the steps I took. Although it is not recommended https://developer.android.com/jetpack/androidx/migrate- I added android.enableJetifier=true to my gradle.properties file
android.useAndroidX=trueandroid.enableJetifier=true <-- This is the line that is important for the duplicate classes
My android/app/src/main/java/com/<APP_NAME>/MainActivity.kt my file looks like this
package com.<APP_NAME> import android.os.Bundle
import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate
import org.devio.rn.splashscreen.SplashScreen
class MainActivity : ReactActivity() {
/**
- Returns the name of the main component registered from JavaScript. This is used to schedule
- rendering of the component. */ override fun getMainComponentName(): String = "main"
/**
- Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate]
- which allows you to enable New Architecture with a single boolean flags [fabricEnabled] */ override fun createReactActivityDelegate(): ReactActivityDelegate = DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled)
override fun onCreate(savedInstanceState: Bundle?) { SplashScreen.show(this) super.onCreate(null) // SplashScreen actually will call super.onCreate }
}
My android/app/src/main/java/com/app_name/SplashActivity.kt my file looks like this
package com.<APP_NAME>;
import android.content.Intent; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity;
class SplashActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState); val intent = Intent(this, MainActivity::class.java); startActivity(intent) finish() }}
thank you!! i updated my MainActivity.kt and it work fine
— Reply to this email directly, view it on GitHub https://github.com/crazycodeboy/react-native-splash-screen/issues/649#issuecomment-2339594548, or unsubscribe https://github.com/notifications/unsubscribe-auth/AL6QEJSU3J5WDEI6I2OQXX3ZVZZ3RAVCNFSM6AAAAABM7I2IWKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDGMZZGU4TINJUHA . You are receiving this because you commented.Message ID: @.***>
Is there any maintainer still active on this npm package?
Since this was the last library in my dependency tree requiring enableJetifier, I've migrated all my apps to use this library instead : https://github.com/zoontek/react-native-bootsplash.
I highly recommend the switch since the API is more modern and it respects more the standards, especially on Android (no more SplashActivity, launch_screen.xml, etc.).
@c100k Thank you for the suggestion.
App is crashing is PR
🚀 Consider Using react-native-splash-view Instead!
Hey there! 👋 If you're facing issues with AppDelegate changes in React Native 0.76+, you might want to try [react-native-splash-view] instead!
✅ Why switch to react-native-splash-view?
- Fully compatible with React Native 0.76+, including Swift-based AppDelegate.
- No extra hassle—works smoothly with both Objective-C & Swift projects.
- Simple integration with iOS storyboard splash screens & Android launch screens.
- Lightweight & actively maintained for the latest React Native versions.
Check it out & give it a try! 🚀✨
I think this has to do with the fact that in the latest react native, it's moving from java files to kt files.
This is a repo that doesn't seem to be updated anymore but these are the steps I took. Although it is not recommended - I added
android.enableJetifier=trueto my gradle.properties fileandroid.useAndroidX=true android.enableJetifier=true <-- This is the line that is important for the duplicate classes
My android/app/src/main/java/com/<APP_NAME>/MainActivity.kt my file looks like this
package com.<APP_NAME> import android.os.Bundle import com.facebook.react.ReactActivity import com.facebook.react.ReactActivityDelegate import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.fabricEnabled import com.facebook.react.defaults.DefaultReactActivityDelegate import org.devio.rn.splashscreen.SplashScreen class MainActivity : ReactActivity() { /** * Returns the name of the main component registered from JavaScript. This is used to schedule * rendering of the component. */ override fun getMainComponentName(): String = "main" /** * Returns the instance of the [ReactActivityDelegate]. We use [DefaultReactActivityDelegate] * which allows you to enable New Architecture with a single boolean flags [fabricEnabled] */ override fun createReactActivityDelegate(): ReactActivityDelegate = DefaultReactActivityDelegate(this, mainComponentName, fabricEnabled) override fun onCreate(savedInstanceState: Bundle?) { SplashScreen.show(this) super.onCreate(null) // SplashScreen actually will call super.onCreate } }My android/app/src/main/java/com/app_name/SplashActivity.kt my file looks like this
package com.<APP_NAME>; import android.content.Intent; import android.os.Bundle; import androidx.appcompat.app.AppCompatActivity; class SplashActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState); val intent = Intent(this, MainActivity::class.java); startActivity(intent) finish() } }
It works for me as well. Thanks a lot!