admin
2024-07-03 a40e0e51331e5e6f69e8bed5940512b29150c7a9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.taoke.autopay.android;
 
import android.app.Application;
 
import timber.log.Timber;
 
public class App extends Application {
 
    private static App INSTANCE;
 
    public static App getInstance() {
        return INSTANCE;
    }
 
    @Override
    @SuppressWarnings("all")
    public void onCreate() {
        super.onCreate();
        INSTANCE = this;
        if (BuildConfig.DEBUG) {
            Timber.plant((Timber.Tree) (Object) new Timber.DebugTree());
        }
    }
}