google map

This commit is contained in:
Riko Sakurauchi 2020-01-01 22:10:28 +08:00
parent ba67f875df
commit 1cc9c5ab11
No known key found for this signature in database
GPG Key ID: 25AC0345B92902AF
1 changed files with 3 additions and 2 deletions

View File

@ -546,7 +546,8 @@ public class AndroidUtilities {
}
public static boolean isGoogleMapsInstalled(final BaseFragment fragment) {
try {
return true;
/*try {
ApplicationLoader.applicationContext.getPackageManager().getApplicationInfo("com.google.android.apps.maps", 0);
return true;
} catch (PackageManager.NameNotFoundException e) {
@ -566,7 +567,7 @@ public class AndroidUtilities {
builder.setNegativeButton(LocaleController.getString("Cancel", R.string.Cancel), null);
fragment.showDialog(builder.create());
return false;
}
}*/
}
public static int[] toIntArray(List<Integer> integers) {