Skip to content
This repository was archived by the owner on Dec 3, 2024. It is now read-only.

Commit 58e0230

Browse files
authored
Revert using StrictMode VmPolicy only in debug build type (fixes #2032) (#2033)
This reverts commit f4ccad8.
1 parent 9ed273a commit 58e0230

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

app/src/main/java/com/nutomic/syncthingandroid/SyncthingApp.java

+4-7
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,10 @@ public void onCreate() {
2525

2626
new Languages(this).setLanguage(this);
2727

28-
if (BuildConfig.DEBUG) {
29-
setStrictMode();
30-
}
31-
}
32-
33-
private void setStrictMode() {
34-
// Set VM policy to avoid crash when sending folder URI to file manager.
28+
// The main point here is to use a VM policy without
29+
// `detectFileUriExposure`, as that leads to exceptions when e.g.
30+
// opening the ignores file. And it's enabled by default.
31+
// We might want to disable `detectAll` and `penaltyLog` on release (non-RC) builds too.
3532
StrictMode.VmPolicy policy = new StrictMode.VmPolicy.Builder()
3633
.detectAll()
3734
.penaltyLog()

0 commit comments

Comments
 (0)