android: reformat UploadApplication.java

Change-Id: Ib1466e2d522b0154ceb10f7519689060cff09acd
This commit is contained in:
Brad Fitzpatrick 2013-01-27 14:06:15 -08:00
parent 3a38081500
commit 9b1affae33

View File

@ -85,6 +85,12 @@ public class UploadApplication extends Application {
return;
}
try {
Runtime.getRuntime().exec("chmod 0755 " + getCacheDir().getAbsolutePath());
} catch (IOException e) {
Log.d(TAG, "failed to chmod cache dir");
}
try {
Class strictmode = Class.forName("android.os.StrictMode");
Log.d(TAG, "StrictMode class found.");