Home
last modified time | relevance | path

Searched refs:abiVersion (Results 1 – 15 of 15) sorted by relevance

/expo/tools/src/versioning/android/
H A DreactNativeTransforms.ts16 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 DexpoModulesTransforms.ts8 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 DversionReactNative.ts19 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 DcopyExpoview.ts9 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 DcmakeTransforms.ts10 abiVersion: string,
18 replaceWith: `$1${lib}_${abiVersion}$2`,
26 replaceWith: `$1${lib}_${abiVersion}$2`,
H A Dindex.ts256 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 DexpoviewTransforms.ts7 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 DABIVersion.kt7 @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 DRNObject.kt197 val abiVersion = classname.split(".").toTypedArray()[0] in versionForClassname() constant
198 abiVersion.substring(3) in versionForClassname()
/expo/tools/src/commands/
H A DAndroidDownloadVersionedAars.ts72 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 DEXFileDownloader.h15 @property (nonatomic, strong, nullable) NSString *abiVersion;
/expo/ios/Exponent/Kernel/AppLoader/CachedResource/
H A DEXCachedResource.h14 @property (nonatomic, strong, nullable) NSString *abiVersion;
H A DEXCachedResource.m88 downloader.abiVersion = _abiVersion;
/expo/ios/Exponent/Kernel/AppLoader/AppFetcher/
H A DEXAppFetcher.m44 jsResource.abiVersion = [[EXVersions sharedInstance] availableSdkVersionForManifest:manifest];
/expo/android/expoview/src/main/java/host/exp/expoview/
H A DExponent.kt123 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>()