I have a content provider that essentially trigger...
# squarelibraries
f
I have a content provider that essentially triggers the creation of my appComponent. Which in case include Timber logging. The issue is that the tree has not been planted yet (Application.onCreate not called yet). Are there any issues with doing this statically? I.e.:
Copy code
static {
     if (BuildConfig.DEBUG) {
            Timber.plant(new DebugTree());
        } else {
            Timber.plant(new CrashTree());
        }
}