GITLAB

陶汉栋 / ParentWork

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • parentwork
  • ..
  • parent
  • AppContext.java
  • 34c57df7   no message Browse Code »
    陶汉栋
    2018-03-08 16:37:07 +0800  
AppContext.java 415 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
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;
    }



}