Home
last modified time | relevance | path

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

/expo/packages/@expo/config-plugins/build/ios/
H A DTarget.js6 exports.TargetType = void 0;
35 let TargetType; variable
36 exports.TargetType = TargetType;
37 (function (TargetType) { argument
43 TargetType["FRAMEWORK"] = "com.apple.product-type.framework";
44 TargetType["OTHER"] = "other";
45 })(TargetType || (exports.TargetType = TargetType = {}));
64 type: TargetType.APPLICATION,
73 const nonSignableTargetTypes = [TargetType.FRAMEWORK];
81 …const type = isTargetOfType(target, TargetType.EXTENSION) ? TargetType.EXTENSION : TargetType.OTHE…
[all …]
H A DTarget.d.ts3 export declare enum TargetType { enum
14 type: TargetType;
23 export declare function isTargetOfType(target: PBXNativeTarget, targetType: TargetType): boolean;
H A DTarget.js.map1TargetType","exports","getXCBuildConfigurationFromPbxproj","project","targetName","buildConfigurat…
H A DBuildScheme.js48 if (type === _Target().TargetType.WATCH) {
54 type.startsWith(_Target().TargetType.APPLICATION)) {
H A DBuildScheme.js.map1TargetType","WATCH","startsWith","APPLICATION","xcConfigurationList","hash","objects","XCConfigura…
/expo/packages/@expo/config-plugins/src/ios/
H A DTarget.ts12 export enum TargetType { enum
24 type: TargetType;
56 type: TargetType.APPLICATION,
70 const nonSignableTargetTypes: TargetType[] = [TargetType.FRAMEWORK];
81 ? TargetType.EXTENSION
82 : TargetType.OTHER;
107 TargetType.APPLICATION,
108 TargetType.APP_CLIP, constant
109 TargetType.EXTENSION, constant
110 TargetType.WATCH, constant
[all …]
H A DBuildScheme.ts2 import { findSignableTargets, TargetType } from './Target';
44 if (type === TargetType.WATCH) {
50 type.startsWith(TargetType.APPLICATION)
/expo/packages/@expo/config-plugins/src/ios/__tests__/
H A DTarget-test.ts4 import { findApplicationTargetWithDependenciesAsync, TargetType } from '../Target';
33 expect(applicationTarget.type).toBe(TargetType.APPLICATION);
37 expect(applicationTarget.dependencies?.[0].type).toBe(TargetType.EXTENSION);
59 expect(applicationTarget.type).toBe(TargetType.APPLICATION);
62 expect(applicationTarget.dependencies?.[0].type).toBe(TargetType.OTHER);
66 expect(applicationTarget.dependencies?.[0].dependencies?.[0].type).toBe(TargetType.OTHER);
/expo/packages/@expo/cli/src/run/ios/options/
H A DresolveNativeScheme.ts50 value.type === IOSConfig.Target.TargetType.APPLICATION && value.osType === 'iOS';
85 resolvedSchemes.find(({ type }) => type === IOSConfig.Target.TargetType.APPLICATION) ??
/expo/ios/versioned/sdk48/ExpoModulesCore/ios/Swift/
H A DConversions.swift181 internal class ConvertingException<TargetType>: GenericException<Any?> {
193 internal class CastingException<TargetType>: GenericException<Any> {
228 internal class NullCastException<TargetType>: Exception {
/expo/ios/versioned/sdk47/ExpoModulesCore/ios/Swift/
H A DConversions.swift178 internal class ConvertingException<TargetType>: GenericException<Any?> {
190 internal class CastingException<TargetType>: GenericException<Any> {
225 internal class NullCastException<TargetType>: Exception {
/expo/packages/expo-modules-core/ios/Swift/
H A DConversions.swift197 internal class ConvertingException<TargetType>: GenericException<Any?> {
209 internal class CastingException<TargetType>: GenericException<Any> {
244 internal class NullCastException<TargetType>: Exception {
/expo/ios/versioned/sdk49/ExpoModulesCore/ios/Swift/
H A DConversions.swift197 internal class ConvertingException<TargetType>: GenericException<Any?> {
209 internal class CastingException<TargetType>: GenericException<Any> {
244 internal class NullCastException<TargetType>: Exception {
/expo/packages/expo-build-properties/src/
H A Dios.ts68 .filter(([_, target]) => Target.isTargetOfType(target, Target.TargetType.APPLICATION))
/expo/packages/expo-build-properties/build/
H A Dios.js50 .filter(([_, target]) => Target.isTargetOfType(target, Target.TargetType.APPLICATION))