File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 37
37
38
38
- name : Compile aapt2
39
39
env :
40
- ANDROID_NDK_HOME : ${{ steps.setup-ndk.outputs.ndk-path }}
40
+ ANDROID_NDK : ${{ steps.setup-ndk.outputs.ndk-path }}
41
41
run : bash ./build.sh ${{ matrix.target_arch }}
42
42
43
43
- name : Upload artifacts
Original file line number Diff line number Diff line change 38
38
39
39
- name : Build
40
40
env :
41
- ANDROID_NDK_HOME : ${{ steps.setup-ndk.outputs.ndk-path }}
41
+ ANDROID_NDK : ${{ steps.setup-ndk.outputs.ndk-path }}
42
42
run : bash ./build.sh ${{ matrix.target_arch }}
43
43
44
44
- name : Upload artifacts
Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ grep PROTOC_VERSION src/protobuf/protobuf_version.bzl
29
29
30
30
## Apply patch
31
31
``` bash
32
- bash ./patch.sh
32
+ ./patch.sh
33
33
```
34
34
35
35
## Build the binary
36
36
37
37
Supported arch are 'x86_64', 'x86', 'arm64-v8a' & 'armeabi-v7a'
38
38
``` bash
39
- ANDROID_NDK=" $HOME /Android/Sdk/ndk/" bash ./build.sh arm64-v8a # Build output in build/bin/aapt-*
39
+ ANDROID_NDK=" $HOME /Android/Sdk/ndk/" ./build.sh arm64-v8a # Build output in build/bin/aapt-*
40
40
```
41
41
42
42
# Credits
You can’t perform that action at this time.
0 commit comments