We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb01b8 commit 325e016Copy full SHA for 325e016
app/src/main/java/fr/free/nrw/commons/CommonsApplication.java
@@ -72,7 +72,11 @@ public class CommonsApplication extends MultiDexApplication {
72
@Override
73
public void onCreate() {
74
super.onCreate();
75
- Traceur.enableLogging();
+ if (BuildConfig.DEBUG) {
76
+ //FIXME: Traceur should be disabled for release builds until error fixed
77
+ //See https://github.com/commons-app/apps-android-commons/issues/1877
78
+ Traceur.enableLogging();
79
+ }
80
81
ApplicationlessInjection
82
.getInstance(this)
0 commit comments