Lines Matching refs:abiName
41 const abiName = `abi${version.replace(/\./g, '_')}`; constant
42 const versionedAbiRoot = path.join(ANDROID_DIR, 'versioned-abis', `expoview-${abiName}`);
52 await transformPackageAsync(packageFiles, abiName);
53 const patchContent = await getTransformPatchContentAsync(packageName, abiName);
66 await versionJavaLoadersAsync(packageName, versionedAbiRoot, abiName);
84 async function transformPackageAsync(packageFiles: string[], abiName: string) {
85 await transformFilesAsync(packageFiles, baseTransforms(abiName));
92 function baseTransforms(abiName: string): FileTransform[] {
97 replaceWith: `$1_${abiName}$2`,
102 replaceWith: `$1_${abiName}`,
107 replaceWith: `$1${abiName}/$2`,
112 replaceWith: `$1${abiName}/$2`,
117 replaceWith: `compileOnly 'host.exp:reactandroid-${abiName}:1.0.0'`,
188 abiName: string
193 path.join(versionedAbiRoot, 'src', 'main', 'java', abiName, file)
202 !s.includes(abiName) ? `${g1}_${abiName}${g3}` : s,
215 abiName: string
225 replaceWith: abiName,
229 replaceWith: escapeJniSymbol(abiName),