How to navigate to Google map app info settings screen in android programmatically
问题 How to open Google maps settings info screen like above image in android from my app.I tried the following code but it is not working. String packageName = "com.google.android.maps"; Intent intent = new Intent(); final int apiLevel = Build.VERSION.SDK_INT; if (apiLevel >= 9) { // above 2.3 intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); Uri uri = Uri.fromParts(SCHEME, packageName, null); intent.setData(uri); } else { // below 2.3 final String appPkgName = (apiLevel == 8 ? APP