GITLAB

陶汉栋 / ParentWork

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • parentwork
  • ..
  • parent
  • AppContext.java
  • 118e25c4   no message Browse Code »
    姚旭斌
    2018-03-07 18:09:29 +0800  
AppContext.java 416 Bytes
Edit Raw Blame History
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
package com.shunzhi.parent;

import com.share.mvpsdk.global.GlobalApplication;

/**
 * Created by Administrator on 2018/3/7 0007.
 */

public class AppContext extends GlobalApplication {
    private static AppContext appContext;


    @Override
    public void onCreate() {
        appContext=this;
        super.onCreate();
    }

    public static AppContext getInstance() {
        return appContext;
    }




}