| /expo/tools/src/versioning/android/ |
| H A D | reactNativeTransforms.ts | 16 abiVersion: string 58 replaceWith: `"${lib}_${abiVersion}"`, 74 replaceWith: `${lib}_${abiVersion} {`, 86 replaceWith: `${abiVersion}/${pathFromPkg(pkg)}`, 88 ...reactNativeCmakeTransforms(abiVersion), 97 replaceWith: `$1_${abiVersion}`, 158 ...reactNativeCmakeTransforms(abiVersion), 183 replaceWith: `libhermes_${abiVersion}.so`, 192 replaceWith: `OUTPUT_NAME hermes_${abiVersion}`, 196 replaceWith: `libhermes_${abiVersion}`, [all …]
|
| H A D | expoModulesTransforms.ts | 8 function expoModulesBaseTransforms(pkg: Package, abiVersion: string): FileTransforms { 13 replaceWith: `src/main/java/${abiVersion}`, 17 replaceWith: `src/main/java/${abiVersion}`, 40 replaceWith: `$1${abiVersion}.${pkg}`, 50 replaceWith: `import ${abiVersion}.host.exp.expoview.R;`, 55 replaceWith: `import ${abiVersion}.host.exp.expoview.R`, 61 export function expoModulesTransforms(pkg: Package, abiVersion: string): FileTransforms { 63 const base = expoModulesBaseTransforms(pkg, abiVersion); 71 find: new RegExp(`\\bimport ${abiVersion}\\.expo\\.modules\\.BuildConfig`, 'g'),
|
| H A D | versionReactNative.ts | 19 const abiVersion = `abi${sdkVersion.replace(/\./g, '_')}`; constant 51 await versionCodegenDirectoryAsync(tmpCodegenOutputRoot, codegenOutputRoot, abiVersion); 57 await versionReactNativeAsync(versionedReactNativeRoot, abiVersion); 59 await versionHermesAsync(versionedReactNativeMonorepoRoot, abiVersion); 62 async function versionHermesAsync(versionedReactNativeMonorepoRoot: string, abiVersion: string) { 74 hermesTransforms(abiVersion) 78 async function versionReactNativeAsync(versionedReactNativeRoot: string, abiVersion: string) { 89 const transforms = reactNativeTransforms(versionedReactNativeRoot, abiVersion); 103 abiVersion: string 106 const transforms = codegenTransforms(abiVersion);
|
| H A D | copyExpoview.ts | 9 const abiVersion = `abi${sdkVersion.replace(/\./g, '_')}`; constant 10 const targetDirectory = path.join(androidDir, `versioned-abis/expoview-${abiVersion}`); 12 const transforms = expoviewTransforms(abiVersion); 37 if (!settingsGradle.match(abiVersion)) { 40 `ADD_NEW_SUPPORTED_ABIS_HERE\n "${abiVersion}",`
|
| H A D | cmakeTransforms.ts | 10 abiVersion: string, 18 replaceWith: `$1${lib}_${abiVersion}$2`, 26 replaceWith: `$1${lib}_${abiVersion}$2`,
|
| H A D | index.ts | 256 const abiVersion = `abi${version.replace(/\./g, '_')}`; constant 257 const targetDirectory = path.join(ANDROID_DIR, `versioned-abis/expoview-${abiVersion}`); 259 const transforms = expoModulesTransforms(pkg, abiVersion); 312 const abiVersion = version.replace(/\./g, '_'); constant 313 const abiName = `abi${abiVersion}`; 345 const abiVersion = version.replace(/\./g, '_'); constant 346 const abiName = `abi${abiVersion}`; 496 const abiVersion = `abi${version.replace(/\./g, '_')}`; constant 498 versionedExpoviewAbiPath(abiVersion), 499 `maven/host/exp/reactandroid-${abiVersion}/1.0.0/reactandroid-${abiVersion}-1.0.0.aar` [all …]
|
| /expo/tools/src/versioning/android/transforms/ |
| H A D | expoviewTransforms.ts | 7 export function expoviewTransforms(abiVersion: string): FileTransforms { 8 const sdkVersion = abiVersion.replace(/abi(\d+)_0_0/, 'sdk$1'); 13 replaceWith: `src/main/java/${abiVersion}`, 17 replaceWith: `src/main/java/${abiVersion}/com`, 48 replaceWith: `${abiVersion}.host.exp.expoview`, 53 replaceWith: `${abiVersion}.host.exp.exponent`, 63 replaceWith: `import $1${abiVersion}.expo.`, 68 replaceWith: `${abiVersion}.host.exp.exponent`, 73 replaceWith: `$1${abiVersion}.${pkg}`, 83 replaceWith: `${abiVersion}.$1`, [all …]
|
| /expo/android/expoview/src/main/java/host/exp/exponent/ |
| H A D | ABIVersion.kt | 7 @JvmStatic fun toNumber(abiVersion: String): Int { in toNumber() 8 if (abiVersion == RNObject.UNVERSIONED) { in toNumber() 12 if (abiVersion.contains("_")) { in toNumber() 18 val split = abiVersion.split(delimiter) in toNumber()
|
| H A D | RNObject.kt | 197 val abiVersion = classname.split(".").toTypedArray()[0] in versionForClassname() constant 198 abiVersion.substring(3) in versionForClassname()
|
| /expo/tools/src/commands/ |
| H A D | AndroidDownloadVersionedAars.ts | 72 const abiVersion = `abi${sdkVersion.replace(/\./g, '_')}`; constant 73 const url = `${DOWNLOAD_BASE}sdk-${sdkVersion}/reactandroid-${abiVersion}-1.0.0.aar`; 76 `versioned-abis/expoview-${abiVersion}`, 77 `maven/host/exp/reactandroid-${abiVersion}/1.0.0/reactandroid-${abiVersion}-1.0.0.aar`
|
| /expo/ios/Exponent/Kernel/AppLoader/ |
| H A D | EXFileDownloader.h | 15 @property (nonatomic, strong, nullable) NSString *abiVersion;
|
| /expo/ios/Exponent/Kernel/AppLoader/CachedResource/ |
| H A D | EXCachedResource.h | 14 @property (nonatomic, strong, nullable) NSString *abiVersion;
|
| H A D | EXCachedResource.m | 88 downloader.abiVersion = _abiVersion;
|
| /expo/ios/Exponent/Kernel/AppLoader/AppFetcher/ |
| H A D | EXAppFetcher.m | 44 jsResource.abiVersion = [[EXVersions sharedInstance] availableSdkVersionForManifest:manifest];
|
| /expo/android/expoview/src/main/java/host/exp/expoview/ |
| H A D | Exponent.kt | 123 abiVersion: String, in <lambda>() 144 KernelConstants.BUNDLE_FILE_PREFIX + id + urlString.hashCode().toString() + '-' + abiVersion in <lambda>() 145 val directory = File(context.filesDir, abiVersion) in <lambda>()
|