-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a15f0d3
commit 01496f8
Showing
2 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,7 +66,7 @@ | |
|
||
# Resolve links: $0 may be a link | ||
|
||
bash setupNDK.sh | ||
sudo bash setupNDK.sh | ||
|
||
app_path=$0 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
sudo mkdir /usr/local/lib/android/sdk/ndk/ | ||
sudo cd /usr/local/lib/android/sdk/ndk/ | ||
sudo curl -O https://dl.google.com/android/repository/android-ndk-r23-linux.zip | ||
sudo unzip android-ndk-r23-linux.zip | ||
sudo mv android-ndk-r23 23.0.7599858 | ||
mkdir -p /usr/local/lib/android/sdk/ndk/ | ||
cd /usr/local/lib/android/sdk/ndk/ | ||
curl -O https://dl.google.com/android/repository/android-ndk-r23-linux.zip | ||
unzip android-ndk-r23-linux.zip | ||
mv android-ndk-r23 23.0.7599858 | ||
cd $OLDPWD | ||
sudo cp nativelib/*.so /usr/local/lib/android/sdk/ndk/23.0.7599858/build/core/ | ||
cp nativelib/*.so /usr/local/lib/android/sdk/ndk/23.0.7599858/build/core/ |