aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/invalid/lena/scrcpy/App.java
blob: f28ec9d0aa4f49d5c24f405f0bcfb6600c067acd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package invalid.lena.scrcpy;

import android.app.Application;

// Process-wide bootstrap. Only job today is to install the crash
// logger before any of our code runs. Add other process-scoped init
// here if it appears, but resist filling this with statics.
public final class App extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
        Crashlog.install(this);
    }
}