feat: Add android target
This commit is contained in:
parent
e5dccf741a
commit
854cc69414
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,6 +21,7 @@ src-tauri/resources/lib
|
|||||||
src-tauri/icons
|
src-tauri/icons
|
||||||
!src-tauri/icons/icon.png
|
!src-tauri/icons/icon.png
|
||||||
src-tauri/gen/apple
|
src-tauri/gen/apple
|
||||||
|
src-tauri/gen/android
|
||||||
src-tauri/resources/bin
|
src-tauri/resources/bin
|
||||||
|
|
||||||
# Helper tools
|
# Helper tools
|
||||||
|
|||||||
@ -2,3 +2,19 @@
|
|||||||
# workaround needed to prevent `STATUS_ENTRYPOINT_NOT_FOUND` error in tests
|
# workaround needed to prevent `STATUS_ENTRYPOINT_NOT_FOUND` error in tests
|
||||||
# see https://github.com/tauri-apps/tauri/pull/4383#issuecomment-1212221864
|
# see https://github.com/tauri-apps/tauri/pull/4383#issuecomment-1212221864
|
||||||
__TAURI_WORKSPACE__ = "true"
|
__TAURI_WORKSPACE__ = "true"
|
||||||
|
|
||||||
|
[target.aarch64-linux-android]
|
||||||
|
linker = "aarch64-linux-android21-clang"
|
||||||
|
ar = "llvm-ar"
|
||||||
|
|
||||||
|
[target.armv7-linux-androideabi]
|
||||||
|
linker = "armv7a-linux-androideabi21-clang"
|
||||||
|
ar = "llvm-ar"
|
||||||
|
|
||||||
|
[target.x86_64-linux-android]
|
||||||
|
linker = "x86_64-linux-android21-clang"
|
||||||
|
ar = "llvm-ar"
|
||||||
|
|
||||||
|
[target.i686-linux-android]
|
||||||
|
linker = "i686-linux-android21-clang"
|
||||||
|
ar = "llvm-ar"
|
||||||
Loading…
x
Reference in New Issue
Block a user