GSYApplication.java 547 字节
Newer Older
S
shuyu 已提交
1 2 3 4
package com.example.gsyvideoplayer;

import android.app.Application;

S
1.3.3  
shuyu 已提交
5
//import com.squareup.leakcanary.LeakCanary;
S
shuyu 已提交
6 7 8 9 10 11 12 13 14 15

/**
 * Created by shuyu on 2016/11/11.
 */

public class GSYApplication extends Application {

    @Override
    public void onCreate() {
        super.onCreate();
S
1.3.3  
shuyu 已提交
16 17 18 19 20 21
        //if (LeakCanary.isInAnalyzerProcess(this)) {
            // This process is dedicated to LeakCanary for heap analysis.
            // You should not init your app in this process.
            //return;
        //}
        //LeakCanary.install(this);
S
shuyu 已提交
22 23
    }
}