| /expo/packages/expo-updates/ |
| H A D | expo-updates.gradle | 21 def targetName = folderName.capitalize() 27 …assetsDir = file("$buildDir/intermediates/merged_assets/${folderName}/merge${targetName}Assets/out… 31 def bundleExpoAssetsTaskName = "bundle${targetName}ExpoUpdatesAssets" 36 description = "expo-updates: Bundle assets for ${targetName}." 56 enabled config."bundleIn${targetName}" || targetName.toLowerCase().contains("release") 59 currentBundleTask.dependsOn("merge${targetName}Resources") 60 currentBundleTask.dependsOn("merge${targetName}Assets") 62 runBefore("process${targetName}Resources", currentBundleTask)
|
| /expo/packages/@expo/config-plugins/src/ios/ |
| H A D | Bitcode.ts | 67 const targetName = typeof bitcode === 'string' ? bitcode : undefined; constant 69 if (targetName) { 72 const hasConfiguration = configs.find(([, configuration]) => configuration.name === targetName); 83 `No configuration named "${targetName}". Expected one of: ${names.join(', ')}.` 88 project.addBuildProperty('ENABLE_BITCODE', isBitcodeEnabled ? 'YES' : 'NO', targetName);
|
| H A D | Target.ts | 32 targetName, 34 }: { targetName?: string; buildConfiguration?: string } = {} 36 const [, nativeTarget] = targetName 37 ? findNativeTargetByName(project, targetName) 141 targetName: string 144 const nativeTargetEntry = nativeTargets.find(([, i]) => trimQuotes(i.name) === targetName); 146 throw new Error(`Could not find target '${targetName}' in project.pbxproj`);
|
| H A D | ProvisioningProfile.ts | 15 targetName?: string; 24 targetName, 32 const nativeTargetEntry = targetName 33 ? findNativeTargetByName(project, targetName)
|
| H A D | Entitlements.ts | 40 targetName, 42 }: { targetName?: string; buildConfiguration?: string } = {} 46 targetName,
|
| H A D | BuildScheme.ts | 108 const targetName = constant 116 if (!targetName) { 119 return targetName;
|
| H A D | BundleIdentifier.ts | 72 targetName, 74 }: { targetName?: string; buildConfiguration?: string } = {} 86 targetName,
|
| /expo/packages/@expo/config-plugins/src/ios/utils/ |
| H A D | getInfoPlistPath.ts | 16 targetName, 18 }: { targetName?: string; buildConfiguration?: string | 'Release' | 'Debug' } = {} 26 targetName,
|
| /expo/packages/expo-constants/scripts/ |
| H A D | get-app-config-android.gradle | 19 def targetName = variant.name.capitalize() 23 def packageTaskName = "package${targetName}Assets" 25 def currentBundleTask = tasks.register("create${targetName}ExpoConfig", Exec) { 26 description = "expo-constants: Create config for ${targetName}." 46 def currentCopyAppConfigTask = tasks.register("copy${targetName}ExpoConfig", Copy) { 47 description = "expo-constants: Copy generated app.config into ${targetName}." 56 def currentCleanupAppConfigTask = tasks.register("cleanup${targetName}ExpoConfig", Delete) { 57 description = "expo-constants: Cleanup generated app.config from ${targetName}." 70 tasks.findByPath("process${targetName}JavaRes").dependsOn(currentCleanupAppConfigTask)
|
| /expo/packages/@expo/config-plugins/build/ios/ |
| H A D | Bitcode.js | 92 const targetName = typeof bitcode === 'string' ? bitcode : undefined; 94 if (targetName) { 97 const hasConfiguration = configs.find(([, configuration]) => configuration.name === targetName); 105 …(0, _warnings().addWarningIOS)('ios.bitcode', `No configuration named "${targetName}". Expected on… 108 project.addBuildProperty('ENABLE_BITCODE', isBitcodeEnabled ? 'YES' : 'NO', targetName);
|
| H A D | Target.d.ts | 18 export declare function getXCBuildConfigurationFromPbxproj(project: XcodeProject, { targetName, bui… 19 targetName?: string; 27 export declare function findNativeTargetByName(project: XcodeProject, targetName: string): NativeTa…
|
| H A D | ProvisioningProfile.d.ts | 2 targetName?: string; 7 export declare function setProvisioningProfileForPbxproj(projectRoot: string, { targetName, profile…
|
| H A D | Entitlements.d.ts | 5 export declare function getEntitlementsPath(projectRoot: string, { targetName, buildConfiguration, … 6 targetName?: string;
|
| H A D | Target.js | 47 targetName, field 50 …const [, nativeTarget] = targetName ? findNativeTargetByName(project, targetName) : findFirstNativ… 121 function findNativeTargetByName(project, targetName) { argument 123 …ativeTargetEntry = nativeTargets.find(([, i]) => (0, _string().trimQuotes)(i.name) === targetName); 125 throw new Error(`Could not find target '${targetName}' in project.pbxproj`);
|
| H A D | BundleIdentifier.d.ts | 28 declare function getBundleIdentifierFromPbxproj(projectRoot: string, { targetName, buildConfigurati… 29 targetName?: string;
|
| H A D | ProvisioningProfile.js | 37 targetName, field 43 …const nativeTargetEntry = targetName ? (0, _Target().findNativeTargetByName)(project, targetName) …
|
| H A D | BuildScheme.js | 95 …const targetName = (buildActionEntry === null || buildActionEntry === void 0 ? void 0 : buildActio… 99 if (!targetName) { 102 return targetName;
|
| /expo/packages/@expo/config-plugins/src/ios/utils/__tests__/ |
| H A D | getInfoPlistPath-test.ts | 30 targetName: 'multitarget', 39 const plistPath = getInfoPlistPathFromPbxproj(projectRoot, { targetName: 'shareextension' }); 44 getInfoPlistPathFromPbxproj(projectRoot, { targetName: 'shareextension-invalid' })
|
| /expo/packages/@expo/config-plugins/build/ios/utils/ |
| H A D | getInfoPlistPath.d.ts | 9 …nfoPlistPathFromPbxproj(projectRootOrProject: string | XcodeProject, { targetName, buildConfigurat… 10 targetName?: string;
|
| H A D | getInfoPlistPath.js | 29 targetName, field 37 targetName, field
|
| H A D | getInfoPlistPath.js.map | 1 …targetName","buildConfiguration","project","resolvePathOrProject","xcBuildConfiguration","getXCBui…
|
| /expo/packages/@expo/config-plugins/src/ios/__tests__/ |
| H A D | BundleIdentifier-test.ts | 44 const bundleId = getBundleIdentifierFromPbxproj(projectRoot, { targetName: 'testproject' }); 56 const bundleId = getBundleIdentifierFromPbxproj(projectRoot, { targetName: 'HelloWorld' }); 77 targetName: 'multitarget', 98 targetName: 'multitarget',
|
| H A D | ProvisioningProfile-test.ts | 33 targetName: 'multitarget', 52 targetName: 'multitarget', 90 targetName: 'faketargetname',
|
| /expo/packages/@expo/config-plugins/src/android/ |
| H A D | Permissions.ts | 178 const targetName = ensurePermissionNameFormat(permissionName); constant 179 if (!permissions.includes(targetName)) { 180 addPermission(androidManifest, targetName); 194 const targetName = ensurePermissionNameFormat(permissionName); constant 196 if (!permissions.includes(targetName)) { 197 addPermission(androidManifest, targetName);
|
| /expo/packages/@expo/config-plugins/build/android/ |
| H A D | Permissions.js | 175 const targetName = ensurePermissionNameFormat(permissionName); 176 if (!permissions.includes(targetName)) { 177 addPermission(androidManifest, targetName); 187 const targetName = ensurePermissionNameFormat(permissionName); 188 if (!permissions.includes(targetName)) { 189 addPermission(androidManifest, targetName);
|