Skip to content

Commit

Permalink
Removed HTTP caching due to Android 6.0 bug.
Browse files Browse the repository at this point in the history
  • Loading branch information
collinprice committed Jan 21, 2016
1 parent 243fff4 commit 7a4ed27
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -385,7 +385,7 @@ public void uncaughtException(Thread t, Throwable e) {
@Override
public void onTerminate()
{
stopExternalStorageMonitor();
// stopExternalStorageMonitor();
accessibilityManager = null;
super.onTerminate();
}
Expand Down Expand Up @@ -435,11 +435,11 @@ public void postOnCreate()
TiConfig.DEBUG = TiConfig.LOGD = appProperties.getBool("ti.android.debug", false);
USE_LEGACY_WINDOW = appProperties.getBool(PROPERTY_USE_LEGACY_WINDOW, false);

startExternalStorageMonitor();
// startExternalStorageMonitor();

// Register the default cache handler
responseCache = new TiResponseCache(getRemoteCacheDir(), this);
TiResponseCache.setDefault(responseCache);
// responseCache = new TiResponseCache(getRemoteCacheDir(), this);
// TiResponseCache.setDefault(responseCache);
KrollRuntime.setPrimaryExceptionHandler(new TiExceptionHandler());
}

Expand Down

0 comments on commit 7a4ed27

Please sign in to comment.