private static int getApplicationSoSourceFlags()

in java/com/facebook/soloader/SoLoader.java [331:341]


  private static int getApplicationSoSourceFlags() {
    switch (sAppType) {
      case AppType.THIRD_PARTY_APP:
        return 0;
      case AppType.SYSTEM_APP:
      case AppType.UPDATED_SYSTEM_APP:
        return DirectorySoSource.RESOLVE_DEPENDENCIES;
      default:
        throw new RuntimeException("Unsupported app type, we should not reach here");
    }
  }