Skip to content
This repository has been archived by the owner on Jan 16, 2024. It is now read-only.

Commit

Permalink
moved Android clean to end of script
Browse files Browse the repository at this point in the history
  • Loading branch information
norbertschuler committed Dec 4, 2019
1 parent 4490905 commit 0a58df5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,6 @@ cd ..
rm -rf ios/Podfile.lock
rm -rf ios/build

echo 'removing Android cache'
cd android
./gradlew cleanBuildCache
cd ..

echo 'removing node modules'
rm -rf node_modules
rm -rf package-lock.json
Expand All @@ -43,6 +38,12 @@ pod update
pod install
cd ..

echo 'cleaning Android build'
cd android
./gradlew cleanBuildCache
cd ..


# for Android the minSDK level of the Manifest of react-native-i18n has to be removed​
echo 'now run: react-native run-android'
echo 'now run: react-native run-ios'

0 comments on commit 0a58df5

Please sign in to comment.