B4A Question Removing permission - JohnC (first post)    Apr 21, 2024   (2 reactions) To remove the contact permission, instead of having the user uninstall the app (and thus loose all its settings) and then reinstall it and deny the contacts, you could simply programically bring the user to your apps info screen and allow them to manually remove the contact permission.
Here is Chat B4A Question Programmatically uninstall app on Android 11 - drgottjr (first post)    Mar 01, 2024   (1 reaction) permission needed: android.permission.REQUEST_DELETE_PACKAGES. i don't believe it's runtime, but check for dangerous permissions in the ide pop-up after you add it to the manifest. easy enough to remedy if it is. (also think about Intent.ACTION_UNINSTALL_PACKAGE if android.intent.action.DELETE do B4A Question [B4A] Logout before uninstall - Erel (first post)    Dec 05, 2022 The only way to intercept this intent, when your app is uninstalled, is with a second app.
You cannot do anything when your app is uninstalled.
Are you sending push messages? Once the app is uninstalled the user will not receive any new messages. B4A Question Uninstall an app using code - William Hunter    Dec 08, 2015   (1 reaction) This code will uninstall an app. Is there any way to not show the Cancel/OK message box, as shown in the attachment?
Dim i As Intent
i.Initialize("android.intent.action.DELETE", "package:wfh.videochat")
StartActivity(I)
39534 B4A Question Intent receiver for hardware PTT button - SOLVED - Gandalf (first post)    Jun 02, 2021   (2 reactions) I have contacted the manufacturer and got comprehensive explanation of my problem. Estalky E966 is equipped with separate DMR radio supported by it's own eDMR app which can't be uninstalled. This app was intercepting PTT button intents. Fortunately there is a switch in that app which disables intent B4A Question How to request background locations with API 29 and above? - Sandman (first post)    Mar 04, 2021   (1 reaction) I've investigated some more. The Stack Overflow post is correct, first request FINE and iff that is given, request BACKGROUND. The latter will open the apps location settings page, iff the app also have the permission from #4 in the manifest. So there seems to be a happy path to gettin "Always allo B4A Question Android App Self-Destruct - Erel (first post)    Jul 07, 2022   (4 reactions) 1.
Manifest editor:
AddPermission(android.permission.REQUEST_DELETE_PACKAGES)
2.
Private Sub Button1_Click
Dim in As Intent
in.Initialize("android.intent.action.UNINSTALL_PACKAGE", "package:" & Application.PackageName)
StartActivity(in)
End Sub B4A Question Why doesn't Fire OS detect overlay permission in B4A apk, but it does for another apk? - OliverA (first post)    Oct 23, 2022 ): 'Input: Optionally, in versions of Android prior to 11, the Intent's data URI can specify the application 'package name to directly invoke the management GUI specific to the package name. For example "package:com.my.app". 'Notice the "prior to 11" 'WARNING: Below w B4A Tutorial Simple Push Framework - Erel (first post)    Mar 09, 2016   (2 reactions) There isn't any event or intent sent when your app is uninstalled. In B4X Push Server there is a constant that allows you to set the maximum "age" of a token. So if a user hasn't sent the token in the last x days then the token will be discarded. You can add a similar method here. B4A Question android.intent.action.MEDIA_BUTTON again... - lemonisdead (first post)    Nov 18, 2015 @Jmu5667 : After having installed KeyCut, ran it, uninstalled it, your app got the intent (I have seen the toasts by chance)
I have uninstalled your app and recompiled it. It didn't got any intent anymore.
I have reinstalled KeyCut, ran it, uninstalled it again. Again, your app got the intent
Edit Page: 1   2   3   4   5   6   7   Powered by ColBERT |