-
Notifications
You must be signed in to change notification settings - Fork 24.3k
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
./gradlew bundleRelease not working with -P in React Native 0.60.5 #26257
Comments
Similar issue for us with |
@asleepace, so have you been able to get it to build using the |
@LydGol90 we haven't been using the as a side note running |
@asleepace Yeah |
Hi @anmol-appzoy. Not sure the link you put in is correct as it leads to a totally different issue? As for my current solution to this issue. In my app/build.gradle
Then in before I run
You can still run fastlane lane but just with this:
Hope this helps! |
How are you guys bypassing the ./gradlew bundleRelase freezing bug? Thanks |
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions. |
We are seeing the same issue when using a CI. The fix LydGol90 mentioned also work for us, we are running on React Native 0.61.3. |
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions. |
Closing this issue after a prolonged period of inactivity. If this issue is still present in the latest release, please feel free to create a new issue with up-to-date information. |
Hi there!
On React Native 0.60.5 the
./gradlew bundleRelease
command has stopped working when signing config properties are provided wit the-P
flag.Without -P:
With -P
React Native version:
Steps To Reproduce
react-native init
signingConfig signingConfigs.debug
from release buildTypecd android && ./gradlew bundleRelease -Pandroid.injected.signing.store.file='app/debug.keystore' -Pandroid.injected.signing.store.password='android' -Pandroid.injected.signing.key.alias='androiddebugkey' -Pandroid.injected.signing.key.password='android'
Describe what you expected to happen:
It to build successfully as it does with
./gradlew bundleRelease
when signing config is provided in the build gradle.Fastlane uses the
-P
flag in its build_android lane and so this is currently preventing people from being able to automatically handle signing in fastlane for android builds.Thanks in advance for any help!
The text was updated successfully, but these errors were encountered: