rustdesk/res/fdroid/patches/0001-x86-no-debuggable.patch
Vasyl Gello d007408061
Factor out F-Droid buildscript (#8625)
Now RustDesk maintainers can make proactive changes in F-Droid
packaging script so F-Droid side is (fully) automated.

Signed-off-by: Vasyl Gello <vasek.gello@gmail.com>
2024-07-09 11:45:08 +08:00

25 lines
942 B
Diff

diff --git a/flutter/android/app/build.gradle b/flutter/android/app/build.gradle
index f4dc69e..6b835fd 100644
--- a/flutter/android/app/build.gradle
+++ b/flutter/android/app/build.gradle
@@ -67,6 +67,19 @@ android {
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules'
}
}
+
+ applicationVariants.all { variant ->
+ variant.outputs.each { output ->
+ output.processManifest.doLast { task ->
+ def outputDir = multiApkManifestOutputDirectory.asFile.get()
+ File manifestOutFile = new File(outputDir, "AndroidManifest.xml")
+ if (manifestOutFile.exists()) {
+ def newFileContents = manifestOutFile.getText('UTF-8').replace("android:debuggable=\"true\"", "")
+ manifestOutFile.write(newFileContents, 'UTF-8')
+ }
+ }
+ }
+ }
}
flutter {