mirror of
https://github.com/mosip/inji-wallet.git
synced 2026-01-09 13:38:01 -05:00
Signed-off-by: adityankannan-tw <adityan410pm@gmail.com> Co-authored-by: adityankannan-tw <adityan410pm@gmail.com>
17 lines
358 B
Bash
Executable File
17 lines
358 B
Bash
Executable File
#As react-native/location npm package is old, We need to run this to map androidX source code
|
|
|
|
APPLICATION_TYPE=$1
|
|
|
|
(cd ../../ && npx jetify)
|
|
|
|
cd ..
|
|
|
|
yes | sudo gem install bundler
|
|
|
|
yes | sudo fastlane install_plugins
|
|
|
|
if [ "$APPLICATION_TYPE" == "debug" ]; then
|
|
bundle exec fastlane android_build_debug
|
|
else
|
|
bundle exec fastlane android_build_release
|
|
fi |