File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4040 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
4141 - uses : actions/checkout@v1
4242
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-
5443 # Use Java 8
5544 - uses : actions/setup-java@v1
5645 with :
7766 # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
7867 - uses : actions/checkout@v1
7968
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-
9169 # Patch issue in platform-tools 31.0.3 where platform-tools/api/api-versions.xml is missing (see https://issuetracker.google.com/issues/195445762)
9270 - name : Patch api-versions
9371 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