skip to Main Content

Android Studio – React Native – gradle, manifest merge error

When trying to build my android react native app, im getting this error Execution failed for task ':app:processReleaseMainManifest'. > Manifest merger failed : Attribute meta-data#org.unimodules.core.AppLoader#react-native-headless@value value=(org.unimodules.adapters.react.apploader.RNHeadlessAppLoader) from [:unimodules-react-native-adapter] AndroidManifest.xml:14:13-88 is also present at [:expo-modules-core] AndroidManifest.xml:14:13-86 value=(expo.modules.adapters.react.apploader.RNHeadlessAppLoader). Suggestion: add 'tools:replace="android:value"' to…

VIEW QUESTION

Android Studio – How to use lambda expression in android?

I have tried everything I could find from StackOverflow to make this problem right but none of them succeeded. The strange thing is : I can use lambda such as activity.runOnUiThread(() -> { activity.startActivity(intent); }); and stream like this activity.getPackageManager().getInstalledPackages(0).stream().collect(Collectors.toList())…

VIEW QUESTION
Back To Top
Search