Lello1964 Well-Known Member Licensed User Longtime User Dec 22, 2020 #1 I have to chage this line in Manifest : Manifest: SetApplicationAttribute(android:sharedUserId,"android.uid.systemd") SetManifestAttribute(android:sharedUserId,"android.uid.system") in debug mode must change to : Manifest: ' SetApplicationAttribute(android:sharedUserId,"android.uid.systemd") ' SetManifestAttribute(android:sharedUserId,"android.uid.system") Can I change this line inside main before compile ?
I have to chage this line in Manifest : Manifest: SetApplicationAttribute(android:sharedUserId,"android.uid.systemd") SetManifestAttribute(android:sharedUserId,"android.uid.system") in debug mode must change to : Manifest: ' SetApplicationAttribute(android:sharedUserId,"android.uid.systemd") ' SetManifestAttribute(android:sharedUserId,"android.uid.system") Can I change this line inside main before compile ?
Erel B4X founder Staff member Licensed User Longtime User Dec 22, 2020 #2 Change your manifest code to: B4X: #If Release SetApplicationAttribute(android:sharedUserId,"android.uid.systemd") SetManifestAttribute(android:sharedUserId,"android.uid.system") #End If Upvote 0
Change your manifest code to: B4X: #If Release SetApplicationAttribute(android:sharedUserId,"android.uid.systemd") SetManifestAttribute(android:sharedUserId,"android.uid.system") #End If
M MikeSW17 Active Member Licensed User Longtime User Dec 22, 2020 #3 You can use Conditional Compilations: https://www.b4x.com/android/forum/t...mpilation-build-configurations.40746/#content [Edit] @Erel beat me to it by a second. Upvote 0
You can use Conditional Compilations: https://www.b4x.com/android/forum/t...mpilation-build-configurations.40746/#content [Edit] @Erel beat me to it by a second.