feat(inji-293): use jetify to fix react-native/location bundle issue

This commit is contained in:
Tilak Puli
2023-08-28 12:14:03 +05:30
parent a15c07faa7
commit 3ea34f2c92
4 changed files with 25 additions and 8 deletions

View File

@@ -12,21 +12,29 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
# Available Actions
### test_android_build
### android_build_verify
```sh
[bundle exec] fastlane test_android_build
[bundle exec] fastlane android_build_verify
```
Verify Build for Android
### build_android
### android_build_internal
```sh
[bundle exec] fastlane build_android
[bundle exec] fastlane android_build_internal
```
Build Android and increase version code
Deploy an Internal testing version to the Google Play
### android_build_beta
```sh
[bundle exec] fastlane android_build_beta
```
Deploy an Beta version to the Google Play
---

View File

@@ -1,7 +1,10 @@
#As react-native/location npm package is old, We need to run this to map androidX source code
npx jetify
cd ..
yes | sudo gem install bundler
yes | sudo fastlane install_plugins
bundle exec fastlane android_build_beta
bundle exec fastlane android_build_beta

View File

@@ -1,7 +1,10 @@
#As react-native/location npm package is old, We need to run this to map androidX source code
npx jetify
cd ..
yes | sudo gem install bundler
yes | sudo fastlane install_plugins
bundle exec fastlane android_build_internal
bundle exec fastlane android_build_internal

View File

@@ -1,7 +1,10 @@
#As react-native/location npm package is old, We need to run this to map androidX source code
npx jetify
cd ..
yes | sudo gem install bundler
yes | sudo fastlane install_plugins
bundle exec fastlane android_build_verify
bundle exec fastlane android_build_verify