F FabioG Active Member Licensed User Longtime User Sep 30, 2015 #1 Hello, I do not find the way to run this java code in B4A B4X: startActivity(newIntent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS,Uri.parse("package:my.package.app"))); can someone help me ? Thanks!
Hello, I do not find the way to run this java code in B4A B4X: startActivity(newIntent(android.provider.Settings.ACTION_APPLICATION_DETAILS_SETTINGS,Uri.parse("package:my.package.app"))); can someone help me ? Thanks!
Erel B4X founder Staff member Licensed User Longtime User Oct 1, 2015 #2 B4X: Dim in As Intent in.Initialize("android.settings.APPLICATION_DEVELOPMENT_SETTINGS", "package:my.package.app") StartActivity(in) Upvote 0
B4X: Dim in As Intent in.Initialize("android.settings.APPLICATION_DEVELOPMENT_SETTINGS", "package:my.package.app") StartActivity(in)
F FabioG Active Member Licensed User Longtime User Oct 1, 2015 #3 Erel said: B4X: Dim in As Intent in.Initialize("android.settings.APPLICATION_DEVELOPMENT_SETTINGS", "package:my.package.app") StartActivity(in) Click to expand... Thanks but not work B4X: (ActivityNotFoundException) android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.APPLICATION_DEVELOPMENT_SETTINGS dat=package:com.android.camera2 flg=0x20000 } other suggestions? Upvote 0
Erel said: B4X: Dim in As Intent in.Initialize("android.settings.APPLICATION_DEVELOPMENT_SETTINGS", "package:my.package.app") StartActivity(in) Click to expand... Thanks but not work B4X: (ActivityNotFoundException) android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.settings.APPLICATION_DEVELOPMENT_SETTINGS dat=package:com.android.camera2 flg=0x20000 } other suggestions?
Erel B4X founder Staff member Licensed User Longtime User Oct 1, 2015 #4 Sorry, the correct action is: "android.settings.APPLICATION_DETAILS_SETTINGS". Based on the documentation it is possible that no matching activity will be found. http://developer.android.com/refere...ings.html#ACTION_APPLICATION_DETAILS_SETTINGS Upvote 0
Sorry, the correct action is: "android.settings.APPLICATION_DETAILS_SETTINGS". Based on the documentation it is possible that no matching activity will be found. http://developer.android.com/refere...ings.html#ACTION_APPLICATION_DETAILS_SETTINGS
F FabioG Active Member Licensed User Longtime User Oct 1, 2015 #5 Erel said: Sorry, the correct action is: "android.settings.APPLICATION_DETAILS_SETTINGS". Based on the documentation it is possible that no matching activity will be found. http://developer.android.com/refere...ings.html#ACTION_APPLICATION_DETAILS_SETTINGS Click to expand... work perfect! Thanks Erel Upvote 0
Erel said: Sorry, the correct action is: "android.settings.APPLICATION_DETAILS_SETTINGS". Based on the documentation it is possible that no matching activity will be found. http://developer.android.com/refere...ings.html#ACTION_APPLICATION_DETAILS_SETTINGS Click to expand... work perfect! Thanks Erel