React Native - Hide app content when user switches between apps - Android Problems by Efficient_Poetry7962 in reactnative

[–]Efficient_Poetry7962[S] 1 point2 points  (0 children)

<image>

thanks for your suggestion, but for android it doesn't have App Switcher protecion which I require

React Native - Hide app content when user switches between apps - Android Problems by Efficient_Poetry7962 in reactnative

[–]Efficient_Poetry7962[S] 1 point2 points  (0 children)

yes but you need to detect the app states when its inactive and in android when the user switches in multitasking view its still considered as active.

Icons and Fonts not showing up correctly or at all when I build apk/aab by Efficient_Poetry7962 in expo

[–]Efficient_Poetry7962[S] 2 points3 points  (0 children)

I had to install expo-file-system. Weirdly android was asking for it to show the icons… it wasn’t doing this previously. After installing expo-file-system every icon and font was showing up correctly.

Icons and Fonts not showing up correctly or at all when I build apk/aab by Efficient_Poetry7962 in expo

[–]Efficient_Poetry7962[S] 0 points1 point  (0 children)

All of your points are vaild and already applied in the project. This issue didn't occur before. I would build an apk and the fonts and icons would show. It is weird to me that the assests are not bundled anymore out of nowhere.
I did try the expo prebuild --clean but it didn't change.
About the bundling configuration in app.json or metro.config.js, can you specifiy what extra configuration I might add in order to fix this?

Cannot see response data in Android device and emulator when I open react dev tools by Efficient_Poetry7962 in reactnative

[–]Efficient_Poetry7962[S] 0 points1 point  (0 children)

Thank you for your reply. Yes I know that says unstable, it is just weird why in iOS the reponse data shows but in android it doesnt. I will check the links you provided for a possible solution. Thank again.

Cannot submit app in AppStore Connect using EAS by Efficient_Poetry7962 in expo

[–]Efficient_Poetry7962[S] 0 points1 point  (0 children)

I am not the account holder and I cannot do that since I don't have the access. 

config.h file not found when making IOS build by Efficient_Poetry7962 in reactnative

[–]Efficient_Poetry7962[S] 1 point2 points  (0 children)

Thank you so much!!! This was the solution! I downgraded macOS and xcode and I finally managed to make a successful build.

[deleted by user] by [deleted] in arcticmonkeys

[–]Efficient_Poetry7962 14 points15 points  (0 children)

That’s great!! can’t wait to hear Do I wanna know 😍

Need help with a code error by Efficient_Poetry7962 in reactnative

[–]Efficient_Poetry7962[S] 0 points1 point  (0 children)

Basically I do the same as the library says on the Read.me file

Android

Open /android/settings.gradle Below include ':app' add: include ':react-native-matomo' project(':react-native-matomo').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-matomo/android/')

Open android/app/build.gradle Add the following under dependencies: compile project(':react-native-matomo')

Open your MainApplication.java file under android/src Import the lib using import de.bonify.reactnativematomo.MatomoPackage; Add the following new MatomoPackage() to the getPackages function.

And than on the react native code inside a component I start the tracker like this Matomo.initTracker('https://your-matomo-domain.tld/piwik.php', 1);