当前位置: 首页>>代码示例>>Java>>正文


Java Once.initialise方法代码示例

本文整理汇总了Java中jonathanfinerty.once.Once.initialise方法的典型用法代码示例。如果您正苦于以下问题:Java Once.initialise方法的具体用法?Java Once.initialise怎么用?Java Once.initialise使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在jonathanfinerty.once.Once的用法示例。


在下文中一共展示了Once.initialise方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    // Install Timber
    if (BuildConfig.DEBUG) {
        Timber.plant(new Timber.DebugTree());
    }

    Once.initialise(this);
    screenShotNotifications = new ScreenShotNotifications(this);

    Observable.just(true)
            .subscribeOn(AndroidSchedulers.mainThread())
            .subscribe(new Action1<Boolean>() {
                @Override
                public void call(Boolean aBoolean) {
                    initializeResources();
                }
            });
}
 
开发者ID:ToxicBakery,项目名称:Screenshot-Redaction,代码行数:22,代码来源:ScreenshotApplication.java

示例2: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    if (BuildConfig.DEBUG) {
        StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
                .detectAll()
                .penaltyLog()
                .penaltyDeath()
                .build());

        StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
                .detectAll()
                .penaltyLog()
                .penaltyDeath()
                .build());
    }

    Once.initialise(this);
}
 
开发者ID:jonfinerty,项目名称:Once,代码行数:21,代码来源:ExampleApplication.java

示例3: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();

    Analytics.setup(this);
    Once.initialise(this);
    Inject.using(new DefaultDependencyFactory(this));

    if (BuildConfig.DEBUG)
        Timber.plant(new Timber.DebugTree());
    else
        Timber.plant(new Analytics.YandexMeticaTree());
}
 
开发者ID:mecid,项目名称:robird-reborn,代码行数:14,代码来源:RobirdApplication.java

示例4: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();
    sDb = LiteOrm.newSingleInstance(this, DB_NAME);
    sContext = this;
    Once.initialise(this);
    Logger.init("AppPlusLog").setLogLevel(BuildConfig.IS_DEBUG?LogLevel.FULL:LogLevel.NONE);
    sDb.setDebugged(BuildConfig.IS_DEBUG);
}
 
开发者ID:maoruibin,项目名称:AppPlus,代码行数:10,代码来源:App.java

示例5: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();
    CalligraphyConfig.initDefault(new CalligraphyConfig.Builder()
                    .setDefaultFontPath("fonts/GothamRnd-Book.otf")
                    .setFontAttrId(R.attr.fontPath)
                    .build());
    mCheckoutInternal = new CheckoutInternal(this, Products.create().add(ProductTypes.IN_APP,
            IabProducts.PRODUCT_LIST));
    Once.initialise(this);
}
 
开发者ID:shaobin0604,项目名称:HeartbeatFixerForGCM,代码行数:12,代码来源:HeartbeatFixerForGcmApp.java

示例6: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
public void onCreate() {
        super.onCreate();
        sContext = this;
        Once.initialise(this);
        initRongIM();
        ImageHelper.initImageLoader(getApplicationContext());
        SmsSdkHelper.initSmsSDK(getApplicationContext());
        if ("com.cuitrip.service".equals(getCurProcessName(getApplicationContext())) ||
                "io.rong.push".equals(getCurProcessName(getApplicationContext()))) {

            initRongIM();
            /**
             * 融云SDK事件监听处理
             *
             * 注册相关代码,只需要在主进程里做。
             */
            if ("com.cuitrip.service".equals(getCurProcessName(getApplicationContext()))) {
                initRongImCallback();
//                RongCloudEvent.init(this);
//                DemoContext.init(this);
//                Thread.setDefaultUncaughtExceptionHandler(new RongExceptionHandler(this));
//                try {
//                    RongIM.registerMessageType(DeAgreedFriendRequestMessage.class);
//                    RongIM.registerMessageTemplate(new DeContactNotificationMessageProvider());
////                RongIM.registerMessageTemplate(new DeAgreedFriendRequestMessageProvider());
//
//                } catch (Exception e) {
//                    e.printStackTrace();
//                }
            }
        }
        init();
        initStictMode();
    }
 
开发者ID:MoonRune,项目名称:CuiTrip,代码行数:35,代码来源:MainApplication.java

示例7: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Once.initialise(getApplicationContext());

    if (!Once.beenDone(KEY)) {
        Once.toDo(KEY);
    }
    if (!Once.beenDone(KEY2)) {
        Once.toDo(KEY2);
    }
}
 
开发者ID:Piasy,项目名称:AndroidPlayground,代码行数:15,代码来源:MainActivity.java

示例8: onCreate

import jonathanfinerty.once.Once; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();
    //Bad static initializers.
    SugarContext.init(this);
    Once.initialise(this);
    Hawk.init(this)
    .setEncryptionMethod(HawkBuilder.EncryptionMethod.NO_ENCRYPTION)
            .setStorage(HawkBuilder.newSqliteStorage(this))
            .setLogLevel(LogLevel.FULL)
            .build();


    vaporAppComponent = VaporAppComponent.Initializer.init(this);

    uiComponent = DaggerUiComponent.builder()
            .vaporAppComponent(vaporAppComponent)
            .build();

    vaporAppComponent.inject(this);

    registerBus();

    initStetho();

    if (BuildConfig.DEBUG) {
        //When debugging logs will go through the Android logger
        Timber.plant(new Timber.DebugTree());

        StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
                .detectCustomSlowCalls()
        .detectDiskReads()
        .detectDiskWrites()
        .penaltyLog()
        .build());

        StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
        .detectActivityLeaks()
        .penaltyLog()
        .build());
    }

    Thread.setDefaultUncaughtExceptionHandler(new CrashHandler(this));
}
 
开发者ID:tevjef,项目名称:Vapor,代码行数:45,代码来源:VaporApp.java


注:本文中的jonathanfinerty.once.Once.initialise方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。