Home
last modified time | relevance | path

Searched refs:entitlements (Results 1 – 25 of 70) sorted by relevance

123

/expo/packages/expo-document-picker/plugin/src/
H A DwithDocumentPickerIOS.ts31 { 'com.apple.developer.icloud-container-environment': _env, ...entitlements }: Record<string, any>
36 entitlements['com.apple.developer.icloud-container-environment'] = iCloudContainerEnvironment;
38 entitlements['com.apple.developer.icloud-container-identifiers'] = [
41 entitlements['com.apple.developer.ubiquity-container-identifiers'] = [
44 entitlements[
48 entitlements['com.apple.developer.icloud-services'] = ['CloudDocuments'];
50 return entitlements;
/expo/packages/expo-document-picker/plugin/build/
H A DwithDocumentPickerIOS.js12 …inerEnvironment }, { 'com.apple.developer.icloud-container-environment': _env, ...entitlements }) {
16entitlements['com.apple.developer.icloud-container-environment'] = iCloudContainerEnvironment;
17 entitlements['com.apple.developer.icloud-container-identifiers'] = [
20 entitlements['com.apple.developer.ubiquity-container-identifiers'] = [
23entitlements['com.apple.developer.ubiquity-kvstore-identifier'] = `$(TeamIdentifierPrefix)${config…
24 entitlements['com.apple.developer.icloud-services'] = ['CloudDocuments'];
26 return entitlements;
H A DwithDocumentPickerIOS.d.ts13 …Props, { 'com.apple.developer.icloud-container-environment': _env, ...entitlements }: Record<strin…
/expo/packages/@expo/cli/src/run/ios/codeSigning/
H A DsimulatorCodeSigning.ts23 const entitlements = plist.parse(entitlementsContents); constant
24 return entitlements;
33 const entitlements = getEntitlements(projectRoot); constant
34 if (!entitlements) {
37 return ENTITLEMENTS_THAT_REQUIRE_CODE_SIGNING.some((entitlement) => entitlement in entitlements);
/expo/packages/@expo/config-plugins/src/plugins/__tests__/
H A DwithIosBaseMods-test.ts31 entitlements: {
44 expect(config.ios?.entitlements).toStrictEqual({
48 expect(config.mods.ios.entitlements).toBeDefined();
50 expect(config._internal.modResults.ios.entitlements).toBeDefined();
93 entitlements: getIosModFileProviders().entitlements,
102 expect(config.ios?.entitlements).toMatchInlineSnapshot(`
163 entitlements: getIosModFileProviders().entitlements,
173 expect(config.ios?.entitlements).toMatchInlineSnapshot(`
H A Dmod-compiler-test.ts56 expect(config.ios?.entitlements).toBeUndefined();
99 expect(config.ios?.entitlements).toBeUndefined();
133 expect(config.ios.entitlements).toBeUndefined();
/expo/packages/@expo/config-plugins/src/plugins/
H A DwithIosBaseMods.ts205 entitlements: provider<JSONObject, ForwardedBaseModOptions>({
243 if (!config.ios.entitlements) config.ios.entitlements = {};
245 config.ios.entitlements = {
247 ...config.ios.entitlements,
250 return config.ios.entitlements!;
258 config.ios.entitlements = config.modResults;
H A Dios-plugins.ts71 type MutateEntitlementsPlistAction = (expo: ExpoConfig, entitlements: JSONObject) => JSONObject;
147 config.ios.entitlements = config.modResults;
/expo/packages/@expo/config-plugins/build/plugins/
H A DwithIosBaseMods.js312 entitlements: (0, _createBaseMod().provider)({ property
349 if (!config.ios.entitlements) config.ios.entitlements = {};
350 config.ios.entitlements = {
352 ...config.ios.entitlements
354 return config.ios.entitlements;
361 config.ios.entitlements = config.modResults;
H A DwithIosBaseMods.d.ts13entitlements: import("./createBaseMod").BaseModProviderMethods<JSONObject, Partial<Pick<import("./… constant
26entitlements: import("./createBaseMod").BaseModProviderMethods<JSONObject, Partial<Pick<import("./…
H A Dios-plugins.d.ts19 type MutateEntitlementsPlistAction = (expo: ExpoConfig, entitlements: JSONObject) => JSONObject;
/expo/docs/pages/build-reference/
H A Dios-capabilities.mdx8entitlements, this change needs to be updated remotely on Apple's servers before making a producti…
14entitlements are read from the introspected app config. To edit them, see the [`ios.entitlements`]…
16 In bare workflow apps, the entitlements are read from your **ios/\*\*/\*.entitlements** file.
20 If a supported entitlement is present in the entitlements file, then running `eas build` will enabl…
24 If a capability is enabled for your app remotely, but not present in the native entitlements file, …
28 …enable capabilities that it has built-in support for, any unsupported entitlements must be manuall…
120entitlements** (or more specific entitlements file for multi-target apps). You can refer to [Suppo…
/expo/ios/versioned/sdk48/EXApplication/EXApplication/
H A DABI48_0_0EXProvisioningProfile.m34 NSDictionary *entitlements = _plist[@"Entitlements"];
35 NSString *apsEnvironment = entitlements[@"aps-environment"];
60 NSDictionary *entitlements = [mobileProvision objectForKey:@"Entitlements"];
61 if ([[entitlements objectForKey:@"get-task-allow"] boolValue]) {
/expo/packages/expo-application/ios/EXApplication/
H A DEXProvisioningProfile.m34 NSDictionary *entitlements = _plist[@"Entitlements"];
35 NSString *apsEnvironment = entitlements[@"aps-environment"];
60 NSDictionary *entitlements = [mobileProvision objectForKey:@"Entitlements"];
61 if ([[entitlements objectForKey:@"get-task-allow"] boolValue]) {
/expo/ios/versioned/sdk47/EXApplication/EXApplication/
H A DABI47_0_0EXProvisioningProfile.m34 NSDictionary *entitlements = _plist[@"Entitlements"];
35 NSString *apsEnvironment = entitlements[@"aps-environment"];
60 NSDictionary *entitlements = [mobileProvision objectForKey:@"Entitlements"];
61 if ([[entitlements objectForKey:@"get-task-allow"] boolValue]) {
/expo/ios/versioned/sdk49/EXApplication/EXApplication/
H A DABI49_0_0EXProvisioningProfile.m34 NSDictionary *entitlements = _plist[@"Entitlements"];
35 NSString *apsEnvironment = entitlements[@"aps-environment"];
60 NSDictionary *entitlements = [mobileProvision objectForKey:@"Entitlements"];
61 if ([[entitlements objectForKey:@"get-task-allow"] boolValue]) {
/expo/packages/@expo/prebuild-config/src/plugins/__tests__/
H A DwithDefaultPlugins-test.ts124 entitlements: { foo: 'bar' },
323 expect(config.ios?.entitlements).toBeDefined();
440 const entitlements = await plist.parse( constant
443 expect(entitlements.foo).toStrictEqual('bar');
471 expect(config.ios?.entitlements).toBeDefined();
503 expect(config._internal?.modResults.ios.entitlements).toBeDefined();
618 expect(config.ios?.entitlements).toBeDefined();
650 expect(config._internal?.modResults.ios.entitlements).toBeDefined();
/expo/docs/pages/versions/unversioned/sdk/
H A Ddocument-picker.mdx69 … support**](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_devel…
71 …eloper-console), then be sure to add the following entitlements in your `ios/[app]/[app].entitleme…
90 …loud-container-identifiers` and `com.apple.developer.ubiquity-container-identifiers` entitlements).
108 [icloud-entitlement]: https://developer.apple.com/documentation/bundleresources/entitlements/com_ap…
H A Dnetinfo.mdx58 …om.apple.developer.networking.wifi-info` entitlement to your **app.json** under `ios.entitlements`:
62 "entitlements": {
/expo/docs/pages/versions/v49.0.0/sdk/
H A Ddocument-picker.mdx69 … support**](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_devel…
71 …eloper-console), then be sure to add the following entitlements in your `ios/[app]/[app].entitleme…
90 …loud-container-identifiers` and `com.apple.developer.ubiquity-container-identifiers` entitlements).
108 [icloud-entitlement]: https://developer.apple.com/documentation/bundleresources/entitlements/com_ap…
H A Dnetinfo.mdx58 …om.apple.developer.networking.wifi-info` entitlement to your **app.json** under `ios.entitlements`:
62 "entitlements": {
/expo/docs/pages/versions/v47.0.0/sdk/
H A Ddocument-picker.mdx69 … support**](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_devel…
71 …eloper-console), then be sure to add the following entitlements in your `ios/[app]/[app].entitleme…
90 …loud-container-identifiers` and `com.apple.developer.ubiquity-container-identifiers` entitlements).
108 [icloud-entitlement]: https://developer.apple.com/documentation/bundleresources/entitlements/com_ap…
/expo/docs/pages/versions/v48.0.0/sdk/
H A Ddocument-picker.mdx69 … support**](https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_devel…
71 …eloper-console), then be sure to add the following entitlements in your `ios/[app]/[app].entitleme…
90 …loud-container-identifiers` and `com.apple.developer.ubiquity-container-identifiers` entitlements).
108 [icloud-entitlement]: https://developer.apple.com/documentation/bundleresources/entitlements/com_ap…
H A Dnetinfo.mdx58 …om.apple.developer.networking.wifi-info` entitlement to your **app.json** under `ios.entitlements`:
62 "entitlements": {
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dnetinfo.mdx58 …om.apple.developer.networking.wifi-info` entitlement to your **app.json** under `ios.entitlements`:
62 "entitlements": {

123