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


Java SoLoader.init方法代码示例

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


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

示例1: onCreate

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();
    SoLoader.init(this, /* native exopackage */ false);
    if (!BuildConfig.DEBUG) {
        CrashReport.initCrashReport(getApplicationContext(), "900019562", false);
    }
}
 
开发者ID:qq565999484,项目名称:RNLearn_Project1,代码行数:9,代码来源:MainApplication.java

示例2: setUp

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Before public void setUp() throws Exception {
  SoLoader.init(InstrumentationRegistry.getContext(), false);

  prefs = PreferenceManager.getDefaultSharedPreferences(InstrumentationRegistry.getContext());
  crypto = AndroidConceal
      .get()
      .createDefaultCrypto(new SharedPrefsBackedKeyChain(
          InstrumentationRegistry.getContext(),
          CryptoConfig.KEY_256
      ));
}
 
开发者ID:prolificinteractive,项目名称:Patrons,代码行数:12,代码来源:ConcealFloatPreferenceTest.java

示例3: initializeSoLoaderIfNecessary

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
private static void initializeSoLoaderIfNecessary(Context applicationContext) {
  // Call SoLoader.initialize here, this is required for apps that does not use exopackage and
  // does not use SoLoader for loading other native code except from the one used by React Native
  // This way we don't need to require others to have additional initialization code and to
  // subclass android.app.Application.

  // Method SoLoader.init is idempotent, so if you wish to use native exopackage, just call
  // SoLoader.init with appropriate args before initializing ReactInstanceManager
  SoLoader.init(applicationContext, /* native exopackage */ false);
}
 
开发者ID:qq565999484,项目名称:RNLearn_Project1,代码行数:11,代码来源:ReactInstanceManager.java

示例4: initializeSoLoaderIfNecessary

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
private static void initializeSoLoaderIfNecessary(Context applicationContext) {
  // Call SoLoader.initialize here, this is required for apps that does not use exopackage and
  // does not use SoLoader for loading other native code except from the one used by React Native
  // This way we don't need to require others to have additional initialization code and to
  // subclass android.app.Application.

  // Method SoLoader.init is idempotent, so if you wish to use native exopackage, just call
  // SoLoader.init with appropriate args before initializing ReactInstanceManagerImpl
  SoLoader.init(applicationContext, /* native exopackage */ false);
}
 
开发者ID:john1jan,项目名称:ReactNativeSignatureExample,代码行数:11,代码来源:ReactInstanceManagerImpl.java

示例5: onBaseContextAttached

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override
protected void onBaseContextAttached() {
  // This is a terrible hack.  Don't copy it.
  // It's unfortunate that Instagram does the same thing.
  // We need to do this here because internal apps use SoLoader,
  // and Open Source Buck uses ExopackageSoLoader.
  // If you feel the need to copy this, we should refactor it
  // into an FB-specific subclass of ExopackageApplication.
  SoLoader.init(this, (ReactBuildConfig.EXOPACKAGE_FLAGS & 2) != 0);
}
 
开发者ID:Right-Men,项目名称:Ironman,代码行数:11,代码来源:ReactTestAppShell.java

示例6: initialize

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
/** Initializes Fresco with the specified config. */
public static void initialize(
    Context context,
    @Nullable ImagePipelineConfig imagePipelineConfig,
    @Nullable DraweeConfig draweeConfig) {
  if (sIsInitialized) {
    FLog.w(
        TAG,
        "Fresco has already been initialized! `Fresco.initialize(...)` should only be called " +
          "1 single time to avoid memory leaks!");
  } else {
    sIsInitialized = true;
  }
  try {
    SoLoader.init(context, 0);
  } catch (IOException e) {
    throw new RuntimeException("Could not initialize SoLoader", e);
  }
  // we should always use the application context to avoid memory leaks
  context = context.getApplicationContext();
  if (imagePipelineConfig == null) {
    ImagePipelineFactory.initialize(context);
  } else {
    ImagePipelineFactory.initialize(imagePipelineConfig);
  }
  initializeDrawee(context, draweeConfig);
}
 
开发者ID:facebook,项目名称:fresco,代码行数:28,代码来源:Fresco.java

示例7: onCreate

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override
public void onCreate() {
  super.onCreate();
  SoLoader.init(this, /* native exopackage */ false);
}
 
开发者ID:qq565999484,项目名称:RNLearn_Project1,代码行数:6,代码来源:MainApplication.java

示例8: onCreate

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override
public void onCreate() {
    super.onCreate();
    SoLoader.init(this, /* native exopackage */ false);
}
 
开发者ID:hiteshsahu,项目名称:React-Native-Music-Player,代码行数:6,代码来源:MainApplication.java

示例9: onCreate

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override
public void onCreate() {
  super.onCreate();

  SoLoader.init(this, false);
}
 
开发者ID:charbgr,项目名称:litho-picasso,代码行数:7,代码来源:LithoPicassoSampleApp.java

示例10: onCreate

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override public void onCreate() {
  super.onCreate();
  SoLoader.init(this, false);
}
 
开发者ID:prolificinteractive,项目名称:Patrons,代码行数:5,代码来源:MyApplication.java

示例11: ReactContextBuilder

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
public ReactContextBuilder(Context context) {
    this.parentContext = context;
    SoLoader.init(context, /* native exopackage */ false);
}
 
开发者ID:devfd,项目名称:react-native-workers,代码行数:5,代码来源:ReactContextBuilder.java

示例12: setUp

import com.facebook.soloader.SoLoader; //导入方法依赖的package包/类
@Override
protected void setUp() throws Exception {
  super.setUp();
  SoLoader.init(getContext(), /* native exopackage */ false);
  ApplicationHolder.setApplication((Application) getContext().getApplicationContext());
}
 
开发者ID:Right-Men,项目名称:Ironman,代码行数:7,代码来源:ReactIntegrationTestCase.java


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