File tree Expand file tree Collapse file tree 2 files changed +13
-1
lines changed
Expand file tree Collapse file tree 2 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11# App Center SDK for React Native Change Log
22
3- ## Version 4.4.1
3+ ## Version 4.4.3
44
55### App Center
66
Original file line number Diff line number Diff line change @@ -12,3 +12,15 @@ echo 'Add private cocoapods repository'
1212pod repo add $REPO_NAME https://$USER_ACCOUNT :$ACCESS_TOKEN @$PRIVATE_REPO_BASE_URL /$REPO_NAME
1313pod repo update
1414cd ios && pod install
15+
16+ # Remove all NDKs except NDK 21 to avoid failures on App Center CI with error:
17+ # > No toolchains found in the NDK toolchains folder for ABI with prefix: arm-linux-androideabi
18+ echo ' Clean unnessesary NDKs'
19+ cd $NDK_PATH
20+
21+ # Enable extended globbing for using regular expression in rm command.
22+ shopt -s extglob
23+ rm -rf ! ($NDK_VERSION_FOR_BUILD )
24+
25+ echo ' NDKs after clean:'
26+ ls $NDK_PATH
You can’t perform that action at this time.
0 commit comments