mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-07-31 01:46:33 -04:00
Applies consistent formatting and naming to patches Signed-off-by: celenity <celenity@celenity.dev>
29 lines
1.1 KiB
Diff
29 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: celenity <celenity@celenity.dev>
|
|
Date: Sun, 05 Jul 2026 20:19:20 +0000
|
|
Subject: [PATCH] Fenix - Disable profiling
|
|
|
|
Disables profiling functionality/integration.
|
|
|
|
Signed-off-by: celenity <celenity@celenity.dev>
|
|
---
|
|
diff --git a/mobile/android/fenix/app/src/main/AndroidManifest.xml b/mobile/android/fenix/app/src/main/AndroidManifest.xml
|
|
index 70cf6e8802f5b..e2ed9d5c80b1e 100644
|
|
--- a/mobile/android/fenix/app/src/main/AndroidManifest.xml
|
|
+++ b/mobile/android/fenix/app/src/main/AndroidManifest.xml
|
|
@@ -54,11 +54,11 @@
|
|
This is NOT required for the adjust plugin. -->
|
|
<uses-permission android:name="com.adjust.preinstall.READ_PERMISSION"/>
|
|
|
|
- <uses-permission android:name="${applicationId}.permission.PROFILER_INTERNAL" />
|
|
+ <!-- <uses-permission android:name="${applicationId}.permission.PROFILER_INTERNAL" />
|
|
|
|
<permission
|
|
android:name="${applicationId}.permission.PROFILER_INTERNAL"
|
|
- android:protectionLevel="signature" />
|
|
+ android:protectionLevel="signature" /> -->
|
|
|
|
<application
|
|
android:name=".FenixApplication"
|
|
--
|