File tree 1 file changed +0
-22
lines changed
1 file changed +0
-22
lines changed Original file line number Diff line number Diff line change 40
40
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
41
41
- uses : actions/checkout@v1
42
42
43
- # Sets up the NDK required by AGP 3.6.x
44
- - name : NDK Cache
45
- id : ndk-cache
46
- uses : actions/cache@v2
47
- with :
48
- path : /usr/local/lib/android/sdk/ndk/20.0.5594570
49
- key : ndk-cache-20.0.5594570
50
- - name : Setup NDK
51
- if : steps.ndk-cache.outputs.cache-hit != 'true'
52
- run : sudo $ANDROID_HOME/tools/bin/sdkmanager 'ndk;20.0.5594570'
53
-
54
43
# Use Java 8
55
44
- uses : actions/setup-java@v1
56
45
with :
77
66
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
78
67
- uses : actions/checkout@v1
79
68
80
- # Sets up the NDK required by AGP 3.6.x
81
- - name : NDK Cache
82
- id : ndk-cache
83
- uses : actions/cache@v2
84
- with :
85
- path : /usr/local/lib/android/sdk/ndk/20.0.5594570
86
- key : ndk-cache-20.0.5594570
87
- - name : Setup NDK
88
- if : steps.ndk-cache.outputs.cache-hit != 'true'
89
- run : sudo $ANDROID_HOME/tools/bin/sdkmanager 'ndk;20.0.5594570'
90
-
91
69
# Patch issue in platform-tools 31.0.3 where platform-tools/api/api-versions.xml is missing (see https://issuetracker.google.com/issues/195445762)
92
70
- name : Patch api-versions
93
71
run : sudo test -f $ANDROID_HOME/platform-tools/api/api-versions.xml || (sudo mkdir $ANDROID_HOME/platform-tools/api && sudo cp .github/api-versions.xml $ANDROID_HOME/platform-tools/api/api-versions.xml)
You can’t perform that action at this time.
0 commit comments