Skip to content

Commit 54624d4

Browse files
committed
Remove Android SDK update
This is not necessary because Xamdroid drop was replaced with netstandard.
1 parent 7f5367f commit 54624d4

File tree

3 files changed

+0
-19
lines changed

3 files changed

+0
-19
lines changed

appveyor-debug.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ environment:
1313
install:
1414
- cmd: >-
1515
cd .\build
16-
17-
UpdateAndroidSdk.cmd
1816
- ps: >-
1917
./SetBuildEnv.ps1
2018

appveyor-release.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ environment:
1818
install:
1919
- cmd: >-
2020
cd .\build
21-
22-
UpdateAndroidSdk.cmd
2321
- ps: >-
2422
./SetBuildEnv.ps1
2523

build/Build.ps1

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,8 @@ else
3434
Write-Error "Failed to locate MSBuild.exe which can build .NET Core and .NET 3.5. VS2017 is required."
3535
exit 1
3636
}
37-
38-
# Ensure Android SDK for API level 10 is installed.
39-
# Thanks to https://github.com/googlesamples/android-ndk/pull/80
40-
41-
[string]$env:ANDROID_HOME = "$env:localappdata/Android/android-sdk/"
42-
43-
if ( !( Test-Path "$env:ANDROID_HOME/tools/android.bat" ) )
44-
{
45-
Write-Error "Android SDK is required."
46-
exit 1
47-
}
4837

4938
./SetBuildEnv.ps1
50-
if ( $env:SKIP_ANDROID_SDK_UPDATE -ne "True" )
51-
{
52-
./UpdateAndroidSdk.cmd
53-
}
5439
}
5540

5641
[string]$buildConfig = 'Release'

0 commit comments

Comments
 (0)