perf: limit Android build to arm64-v8a only (99%+ of devices)
This commit is contained in:
@@ -287,9 +287,6 @@ jobs:
|
|||||||
- name: Add Android targets
|
- name: Add Android targets
|
||||||
run: |
|
run: |
|
||||||
rustup target add aarch64-linux-android --toolchain stable
|
rustup target add aarch64-linux-android --toolchain stable
|
||||||
rustup target add armv7-linux-androideabi --toolchain stable
|
|
||||||
rustup target add x86_64-linux-android --toolchain stable
|
|
||||||
rustup target add i686-linux-android --toolchain stable
|
|
||||||
|
|
||||||
- name: Install dependencies (root)
|
- name: Install dependencies (root)
|
||||||
run: npm ci --prefer-offline
|
run: npm ci --prefer-offline
|
||||||
|
|||||||
@@ -23,6 +23,9 @@ android {
|
|||||||
targetSdk = 36
|
targetSdk = 36
|
||||||
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
|
versionCode = tauriProperties.getProperty("tauri.android.versionCode", "1").toInt()
|
||||||
versionName = tauriProperties.getProperty("tauri.android.versionName", "1.0")
|
versionName = tauriProperties.getProperty("tauri.android.versionName", "1.0")
|
||||||
|
ndk {
|
||||||
|
abiFilters += listOf("arm64-v8a")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
getByName("debug") {
|
getByName("debug") {
|
||||||
|
|||||||
Reference in New Issue
Block a user