summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--keystore/debug.keystorebin0 -> 2107 bytes
-rw-r--r--tunnel/build.gradle8
-rw-r--r--ui/build.gradle16
-rw-r--r--ui/src/debug/res/values/strings.xml2
-rw-r--r--ui/src/main/res/values/strings.xml2
-rw-r--r--version.gradle3
6 files changed, 27 insertions, 4 deletions
diff --git a/keystore/debug.keystore b/keystore/debug.keystore
new file mode 100644
index 00000000..c2655107
--- /dev/null
+++ b/keystore/debug.keystore
Binary files differ
diff --git a/tunnel/build.gradle b/tunnel/build.gradle
index 34acbb0e..90bda8fa 100644
--- a/tunnel/build.gradle
+++ b/tunnel/build.gradle
@@ -59,6 +59,14 @@ android {
allVariants()
}
}
+ splits {
+ abi {
+ enable true
+ reset()
+ include "arm64-v8a", "armeabi-v7a"
+ universalApk false
+ }
+ }
}
dependencies {
diff --git a/ui/build.gradle b/ui/build.gradle
index f155951c..4efe9b8d 100644
--- a/ui/build.gradle
+++ b/ui/build.gradle
@@ -22,7 +22,7 @@ android {
}
namespace = 'com.wireguard.android'
defaultConfig {
- applicationId 'com.wireguard.android'
+ applicationId 'eu.m7n.wireguard.android'
minSdkVersion 21
targetSdkVersion 33
versionCode wireguardVersionCode
@@ -34,11 +34,25 @@ android {
targetCompatibility JavaVersion.VERSION_1_8
coreLibraryDesugaringEnabled = true
}
+ splits {
+ abi {
+ enable true
+ reset()
+ include "arm64-v8a", "armeabi-v7a"
+ universalApk false
+ }
+ }
if (keystorePropertiesFile.exists()) {
final def keystoreProperties = new Properties()
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
signingConfigs {
+ debug {
+ storeFile file('../keystore/debug.keystore')
+ storePassword "android"
+ keyAlias "androiddebugkey"
+ keyPassword "android"
+ }
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
diff --git a/ui/src/debug/res/values/strings.xml b/ui/src/debug/res/values/strings.xml
index 947b7381..af58a39d 100644
--- a/ui/src/debug/res/values/strings.xml
+++ b/ui/src/debug/res/values/strings.xml
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
- <string name="app_name" translatable="false">WireGuard β</string>
+ <string name="app_name" translatable="false">(m7n.eu) WireGuard β</string>
</resources>
diff --git a/ui/src/main/res/values/strings.xml b/ui/src/main/res/values/strings.xml
index a6f66324..540038ee 100644
--- a/ui/src/main/res/values/strings.xml
+++ b/ui/src/main/res/values/strings.xml
@@ -63,7 +63,7 @@
<string name="allow_remote_control_intents_summary_on">External apps may toggle tunnels (advanced)</string>
<string name="allow_remote_control_intents_title">Allow remote control apps</string>
<string name="allowed_ips">Allowed IPs</string>
- <string name="app_name" translatable="false">WireGuard</string>
+ <string name="app_name" translatable="false">(m7n.eu) WireGuard</string>
<string name="bad_config_context">%1$s\'s %2$s</string>
<string name="bad_config_context_top_level">%s</string>
<string name="bad_config_error">%1$s in %2$s</string>
diff --git a/version.gradle b/version.gradle
index aedd40cf..9266013c 100644
--- a/version.gradle
+++ b/version.gradle
@@ -1,6 +1,7 @@
+
buildscript {
ext {
wireguardVersionCode = 496
- wireguardVersionName = '1.0.20230330'
+ wireguardVersionName = 'git describe --tags HEAD'.execute().text.trim()
}
}