Skip to content

Commit

Permalink
only build APK for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
tmgrask committed Dec 18, 2024
1 parent 0b314d8 commit 9ee26c0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
7 changes: 5 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,8 @@ android {
applicationId 'ca.psiphon.conduit'
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 32
versionName "1.4.0-exp.32"
versionCode 33
versionName "1.4.0-exp.33"
}
signingConfigs {
config {
Expand All @@ -143,6 +143,9 @@ android {
minifyEnabled enableProguardInReleaseBuilds
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
crunchPngs true
ndk {
abiFilters 'armeabi-v7a', 'arm64-v8a'
}
}
}
packagingOptions {
Expand Down
1 change: 0 additions & 1 deletion src/components/SharePairingLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ export function SharePairingLink() {
const result = await Share.share({
message: message,
url: sharingLink,
title: t("SHARE_I18N.string"),
});
// Android also doesn't leave any information on this result object
timedLog(
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/locales/en/translation.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
"string": "Share"
},
"SHARE_PAIRING_DATA_MESSAGE_I18N": {
"string": "Connect to my Conduit station! Follow the link or paste it into Psiphon."
"string": "Pair with my Conduit station! Follow the pairing link or paste it into Psiphon."
},
"PERSONAL_PAIRING_I18N": {
"string": "Personal Pairing"
Expand Down

0 comments on commit 9ee26c0

Please sign in to comment.