Can't Find Installed React Native Android App On Phone and Emulator
See original GitHub issueSo something strange happened, when developing I noticed that my react-native app compiled but wasn’t visible (not found on the apps list/tray) on my emulator although the react-native run-android launches it (both debug and release) but when I go to Settings > Apps
I can see the app listed there, I thought this was some new thing to react for dev environments, but I noticed that after compiling my app as release I can’t find it on the phone until I go to Settings > Apps
and even from there I can’t launch.
Another thing I first noticed was, that the first time I compile the release, while trying to install a notice appeared on my screen saying, Google play connect rejected my app, and at first I couldn’t install the app, but after rerunning the compilation I was able to, but now the app can’t be launched.
I have generated a signed apk and have set it up in android > app > build.gradle
Please find below my environment’s information. Environment: OS: macOS High Sierra 10.13.5 Node: 8.11.3 Yarn: 1.7.0 npm: 5.6.0 Watchman: 4.9.0 Xcode: Xcode 9.4.1 Build version 9F2000 Android Studio: 3.1 AI-173.4819257
Packages: (wanted => installed) react: 16.3.1 => 16.3.1 react-native: 0.55.4 => 0.55.4
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:11
I had this problem and the issue is that i put
<data android:scheme="@string/facebook_app_id" />
inside the same intent-filter as action and category.Just take data out and put it in another intent-filter like:
Thats solve the problem for me 😃
@GeraldHeng Thanks. You are such a savior, you had save my half year problem.
I’m actually have a same problem after doing a setup for Firebase Dynamic Link. Here is my version of AndroidManifest.xml after fix.