mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-19 01:11:29 +03:00
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>
This commit is contained in:
24
res/fdroid/patches/0001-x86-no-debuggable.patch
Normal file
24
res/fdroid/patches/0001-x86-no-debuggable.patch
Normal file
@@ -0,0 +1,24 @@
|
||||
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 {
|
||||
Reference in New Issue
Block a user