Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

run-android with custom package build variants launch wrong MainActivity #12480

Closed
dkpalmer opened this issue Feb 20, 2017 · 2 comments
Closed
Labels
Resolution: Locked This issue was locked by the bot.

Comments

@dkpalmer
Copy link

--- Please use this template, and delete everything above this line before submitting your issue ---

Description

I've setup three different build types: release, beta, and debug. beta and debug have different package names from release, e.g.:

release: com.myapp
beta: com.myapp.beta
debug: com.myapp.debug

When running react-native run-android --variant=beta, build and install work as expected (gradle commands use the proper variant). However, launching the app results in the Android CLI trying to launch Starting: Intent { cmp=com.myapp/.MainActivity } against the default app package. I was expecting the CLI to try and launch cmp=com.myapp.beta/com.myapp.MainActivity.

When I don't have any of these builds installed prior it just errors on launch ("MainActivity does not exist") and I can easily go in and manually launch the app. However, if I have my release build pre-installed, my release build ends up getting launched when trying to run both beta and debug variants, which can be confusing.

Reproduction

CLI Issue

Solution

The runAndroid.js script pulls the packageName from the src AndroidManifest.xml file. With different build types/variants/flavors, the app package may be different and should be pulled from app/build/intermediates/manifests. Then the command to launch should be similar to adb shell am start -n com.myapp.beta/com.myapp.MainActivity.

I have this working locally, but haven't tested it extensively with the different ways of running Android builds. I'm happy to put up a PR with what I have if anyone wants to collab on this.

Additional Information

  • React Native version: 0.42.0rc3
  • Platform: Android
  • Operating System: MacOS
@vongohren
Copy link

This is known and a PR ongoing: #8950 (comment)
Iv noticed that my app still works, even if the activity doesnt start. Just have to start i manually. I had problems with my app, and thought it was this, but it seemed that it was some selfmade bug.

@hramos
Copy link
Contributor

hramos commented Jul 25, 2017

Hi there! This issue is being closed because it has been inactive for a while. Maybe the issue has been fixed in a recent release, or perhaps it is not affecting a lot of people. Either way, we're automatically closing issues after a period of inactivity. Please do not take it personally!

If you think this issue should definitely remain open, please let us know. The following information is helpful when it comes to determining if the issue should be re-opened:

  • Does the issue still reproduce on the latest release candidate? Post a comment with the version you tested.
  • If so, is there any information missing from the bug report? Post a comment with all the information required by the issue template.
  • Is there a pull request that addresses this issue? Post a comment with the PR number so we can follow up.

If you would like to work on a patch to fix the issue, contributions are very welcome! Read through the contribution guide, and feel free to hop into #react-native if you need help planning your contribution.

@hramos hramos closed this as completed Jul 25, 2017
@facebook facebook locked as resolved and limited conversation to collaborators Jul 25, 2018
@react-native-bot react-native-bot added the Resolution: Locked This issue was locked by the bot. label Jul 25, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Resolution: Locked This issue was locked by the bot.
Projects
None yet
Development

No branches or pull requests

5 participants