-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.java
40 lines (33 loc) · 836 Bytes
/
App.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.coooweee.splash;
import android.annotation.SuppressLint;
import android.app.Application;
/**
* <pre>
* author : GA
* time : 15/06/2019
* desc : Use this in manifest (android:name="com.coooweee.splash.App").
* </pre>
*/
public class App extends Application {
@SuppressLint("StaticFieldLeak")
private static Application app = null;
/**
* Remembering application 'context'
*/
@Override
public void onCreate() {
super.onCreate();
app = this;
}
/**
* Get Application
*
* @return applications
*/
public static Application getApp() {
if (app == null) {
throw new NullPointerException("should init first ! add android:name='com.coooweee.splash.App' to Manifest");
}
return app;
}
}