本文整理匯總了Java中com.squareup.leakcanary.LeakCanary.install方法的典型用法代碼示例。如果您正苦於以下問題:Java LeakCanary.install方法的具體用法?Java LeakCanary.install怎麽用?Java LeakCanary.install使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.squareup.leakcanary.LeakCanary
的用法示例。
在下文中一共展示了LeakCanary.install方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
Fresco.initialize(this);//Init Fresco
applicationComponent = DaggerApplicationComponent.builder()
.applicationModule(new ApplicationModule(this))
.contextModule(new ContextModule(this))
.databaseModule(new DatabaseModule())
.networkModule(new NetworkModule())
.build();
applicationComponent.inject(this);
CalligraphyConfig.initDefault(calligraphyConfig);
Timber.plant(new Timber.DebugTree());
LeakCanary.install(this);
}
示例2: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
initializeDependencies();
if (BuildConfig.DEBUG) {
Timber.plant(new Timber.DebugTree());
Stetho.initializeWithDefaults(this);
}
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);
}
示例3: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate()
{
super.onCreate();
if (LeakCanary.isInAnalyzerProcess(this))
{
// This process is dedicated to LeakCanary for heap analysis.
// You should not init your app in this process.
return;
}
setupGraph();
Iconify.with(new FontAwesomeModule());
if (!BuildConfig.DEBUG)
Bugsnag.init(this);
else
LeakCanary.install(this);
// Empty string while RxSocialConnect's disk cache is not working
RxSocialConnect.register(this, "")
.using(new GsonSpeaker());
NavigationDrawerBuilder.initialiseMaterialDrawerImageLoader();
}
示例4: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
if (LeakCanary.isInAnalyzerProcess(this)) {
mRefWatcher = RefWatcher.DISABLED;
} else {
mRefWatcher = LeakCanary.install(this);
}
if (isInMainProcess()) {
instance = this;
Thread.setDefaultUncaughtExceptionHandler(new AppCrashHandler(this));
initModule();
}
}
示例5: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
if (LeakCanary.isInAnalyzerProcess(this)) {
// This process is dedicated to LeakCanary for heap analysis.
// You should not init your app in this process.
return;
}
if (BuildConfig.DEBUG) {
Timber.plant(new Timber.DebugTree());
}
LeakCanary.install(this);
initializeLogger();
Mapbox.getInstance(this, getString(R.string.mapbox_access_token));
Timber.plant(new Timber.DebugTree());
// TODO remove when 5.2.1 is released
FileSource.getInstance(this).activate();
}
示例6: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
context = getApplicationContext();
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);
}
示例7: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);
}
示例8: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
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);
}
示例9: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
context = getApplicationContext();
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);
QDUpgradeManager.getInstance(this).check();
}
示例10: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
CustomActivityOnCrash.install(this);
if (LeakCanary.isInAnalyzerProcess(this)) {
return;
}
LeakCanary.install(this);
}
示例11: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override public void onCreate() {
super.onCreate();
if (LeakCanary.isInAnalyzerProcess(this)) {
// This process is dedicated to LeakCanary for heap analysis.
// You should not init your app in this process.
return;
}
mailComponent = DaggerMailAppComponent.create();
refWatcher = LeakCanary.install(this);
}
示例12: initLeakCanary
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
private void initLeakCanary(){
if (LeakCanary.isInAnalyzerProcess(this)) {
}else{
LeakCanary.install(this);
}
}
示例13: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override public void onCreate() {
super.onCreate();
if (LeakCanary.isInAnalyzerProcess(this)) {
// This process is dedicated to LeakCanary for heap analysis.
// You should not init your app in this process.
return;
}
refWatcher = LeakCanary.install(this);
Timber.d("Starting Application");
}
示例14: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override
public void onCreate() {
super.onCreate();
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);
}
示例15: onCreate
import com.squareup.leakcanary.LeakCanary; //導入方法依賴的package包/類
@Override public void onCreate() {
super.onCreate();
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);
}