File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 36
36
run : |
37
37
cd ./core/mono-samples/iOS
38
38
dotnet publish /p:RunningOnCI=True
39
+ - name : Setup Android Sample Dependencies
40
+ run : |
41
+ echo "Setting up Android NDK"
42
+ export ANDROID_NDK_ROOT=~/android-ndk-r21b
43
+ curl https://dl.google.com/android/repository/android-ndk-r21b-darwin-x86_64.zip -L --output andk.zip
44
+ unzip andk.zip -d $(dirname ${ANDROID_NDK_ROOT}) && rm -rf andk.zip
45
+ echo "Setting up Android SDK"
46
+ export ANDROID_SDK_ROOT=~/android-sdk
47
+ curl https://dl.google.com/android/repository/commandlinetools-darwin-6200805_latest.zip -L --output asdk.zip
48
+ unzip asdk.zip -d ${ANDROID_SDK_ROOT} && rm -rf asdk.zip
49
+ yes | ${ANDROID_SDK_ROOT}/tools/bin/./sdkmanager --sdk_root=${ANDROID_SDK_ROOT} --licenses
50
+ ${ANDROID_SDK_ROOT}/tools/bin/./sdkmanager --sdk_root=${ANDROID_SDK_ROOT} "platform-tools" "platforms;android-29" "build-tools;29.0.3"
39
51
- name : Publish mono Android sample
40
52
run : |
41
53
cd ./core/mono-samples/iOS
You can’t perform that action at this time.
0 commit comments