Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit48ed55e

Browse files
github-actions[bot]MohamadJaarayamilmedina
authored
feat: disable x86 support [WPB-11427] 🍒 (#3671)
Co-authored-by: Mohamad Jaara <mohamad.jaara@wire.com>Co-authored-by: Yamil Medina <yamilmedina@users.noreply.github.com>
1 parentf8ce21f commit48ed55e

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

‎.github/workflows/gradle-run-ui-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ jobs:
5656
with:
5757
api-level:${{ matrix.api-level }}
5858
target:google_apis
59+
arch:x86_64
5960
script:./gradlew runAcceptanceTests
6061
env:
6162
GITHUB_USER:${{ github.actor }}

‎app/build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,14 @@ private fun getFlavorsSettings(): NormalizedFlavorSettings =
6262

6363
android {
6464
defaultConfig {
65+
ndk {
66+
abiFilters.apply {
67+
add("armeabi-v7a")
68+
add("arm64-v8a")
69+
add("x86_64")
70+
}
71+
}
72+
6573
val datadogApiKeyKey="DATADOG_CLIENT_TOKEN"
6674
val datadogApiKey:String?=System.getenv(datadogApiKeyKey)?: project.getLocalProperty(datadogApiKeyKey,null)
6775
buildConfigField("String", datadogApiKeyKey, datadogApiKey?.let {"\"$it\"" }?:"null")

‎buildSrc/src/main/kotlin/scripts/variants.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ android {
108108
}
109109

110110
buildTypes {
111+
111112
getByName(BuildTypes.DEBUG) {
112113
isMinifyEnabled=false
113114
applicationIdSuffix=".${BuildTypes.DEBUG}"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp