管灌系统巡查员智能手机App
zuoxiao
2023-12-29 a3d26981fb0ff2049a55d08c447c73e114a45384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.dayu.pipirrapp;
 
import android.app.Application;
 
import cn.jpush.android.api.JPushInterface;
 
/**
 * author: zuo
 * Date: 2023/12/21
 * Time: 17:41
 * 备注:
 */
public class MyApplication extends Application {
    public static MyApplication myApplication;
 
    @Override
    public void onCreate() {
        super.onCreate();
        myApplication = this;
        JPushInterface.setDebugMode(true);
        JPushInterface.init(this);
    }
}