I'm receiving error reports for an app in Google Play. The problem is that its very obfuscated and I can't retrieve a lot of information from the stacktrace due to the proguard configuration:
The method where the app is crashing is:
private File getExternalStorageAppRoot(Context ctx) {
String basePath="cache";
if (Build.VERSION.SDK_INT >= 8) {
File extFile = ctx.getExternalFilesDir(basePath);
if (extFile != null) {
return extFile;
}
}
String externalFilesDir = Environment.getExternalStorageDirectory().getAbsolutePath()
+ File.separator + "Android" + File.separator + "data" + File.separator
+ ctx.getApplicationInfo().packageName + File.separator + "files";
return new File(externalFilesDir, basePath);
}
The exception is a NullPointerException and ctx is always not null. Any ideas about where it is crashing?
In my tests this method does not crash
Thanks
getExternalStorageDirectory()can returnnullif the device is in mass storage mode (connected to a computer via usb). – Ted Hopp Jul 22 '12 at 8:52