| /expo/packages/expo-updates/ios/EXUpdates/ |
| H A D | UpdatesConfig.swift | 79 public let releaseChannel: String variable 98 releaseChannel: String, 112 self.releaseChannel = releaseChannel 161 …let releaseChannel = config.optionalValue(forKey: EXUpdatesConfigReleaseChannelKey) ?? ReleaseChan… in config() variable 218 releaseChannel: releaseChannel, in config()
|
| H A D | UpdatesModule.swift | 31 let releaseChannel = updatesService?.config?.releaseChannel in definition() variable 44 "releaseChannel": releaseChannel, in definition() 61 "releaseChannel": releaseChannel, in definition()
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/ |
| H A D | UpdatesConfig.swift | 79 public let releaseChannel: String variable 98 releaseChannel: String, 112 self.releaseChannel = releaseChannel 161 …let releaseChannel = config.optionalValue(forKey: ABI49_0_0EXUpdatesConfigReleaseChannelKey) ?? Re… in config() variable 218 releaseChannel: releaseChannel, in config()
|
| H A D | UpdatesModule.swift | 31 let releaseChannel = updatesService?.config?.releaseChannel in definition() variable 44 "releaseChannel": releaseChannel, in definition() 61 "releaseChannel": releaseChannel, in definition()
|
| /expo/docs/pages/archive/classic-updates/ |
| H A D | release-channels.mdx | 39 "releaseChannel": "your-channel" 49 You can access the release channel your update is published under with the `Updates.releaseChannel`… 51 > In development in Expo Go, `Updates.releaseChannel` is always `'default'`. 59 …alone ipa by running `eas build --platform ios --profile prod` with `releaseChannel` set to `prod-… 65 "releaseChannel": "prod-v1" 68 "releaseChannel": "staging" 76 …pp by running `expo publish --release-channel prod-v2`, setting the `releaseChannel` in your `prod… 82 …ng the `EXUpdatesReleaseChannel` key in **Expo.plist** (iOS) or the `releaseChannel` meta-data tag… 116 if (Updates.releaseChannel.startsWith('prod')) { 119 } else if (Updates.releaseChannel.startsWith('staging')) {
|
| /expo/ios/versioned/sdk47/EXUpdates/EXUpdates/ |
| H A D | ABI47_0_0EXUpdatesModule.m | 43 NSString *releaseChannel = _updatesService.config.releaseChannel; 52 @"releaseChannel": releaseChannel, 62 @"releaseChannel": releaseChannel, 78 @"releaseChannel": releaseChannel,
|
| H A D | ABI47_0_0EXUpdatesConfig.m | 21 @property (nonatomic, readwrite, strong) NSString *releaseChannel; property 150 id releaseChannel = config[ABI47_0_0EXUpdatesConfigReleaseChannelKey]; 151 if (releaseChannel && [releaseChannel isKindOfClass:[NSString class]]) { 152 _releaseChannel = (NSString *)releaseChannel;
|
| /expo/ios/versioned/sdk48/EXUpdates/EXUpdates/ |
| H A D | ABI48_0_0EXUpdatesModule.m | 44 NSString *releaseChannel = _updatesService.config.releaseChannel; 54 @"releaseChannel": releaseChannel, 65 @"releaseChannel": releaseChannel, 82 @"releaseChannel": releaseChannel,
|
| H A D | ABI48_0_0EXUpdatesConfig.m | 21 @property (nonatomic, readwrite, strong) NSString *releaseChannel; property 150 id releaseChannel = config[ABI48_0_0EXUpdatesConfigReleaseChannelKey]; 151 if (releaseChannel && [releaseChannel isKindOfClass:[NSString class]]) { 152 _releaseChannel = (NSString *)releaseChannel;
|
| /expo/packages/expo-updates/ios/Tests/ |
| H A D | UpdatesConfigSpec.swift | 23 expect(config.releaseChannel) == "test" in spec() 52 expect(config.releaseChannel) == "test" in spec()
|
| /expo/packages/expo-updates/build/ |
| H A D | Updates.d.ts | 12 export declare const releaseChannel: string; constant
|
| H A D | Updates.js | 15 export const releaseChannel = ExpoUpdates.releaseChannel ?? 'default'; constant
|
| /expo/home/graphql/queries/ |
| H A D | ProjectQuery.query.graphql | 24 latestReleaseForReleaseChannel(platform: $platform, releaseChannel: "default") {
|
| /expo/ios/Exponent/Kernel/AppLoader/ |
| H A D | EXFileDownloader.h | 18 @property (nonatomic, strong, nullable) NSString *releaseChannel;
|
| H A D | EXFileDownloader.m | 86 NSString *releaseChannel; 88 releaseChannel = _releaseChannel; 90 releaseChannel = @"default"; 102 [request setValue:releaseChannel forHTTPHeaderField:@"Expo-Release-Channel"];
|
| /expo/packages/expo-updates/src/ |
| H A D | Updates.ts | 28 export const releaseChannel: string = ExpoUpdates.releaseChannel ?? 'default'; constant
|
| /expo/packages/@expo/cli/src/export/ |
| H A D | createBundles.ts | 7 releaseChannel?: string;
|
| /expo/ios/Exponent/Kernel/Environment/ |
| H A D | EXEnvironment.h | 38 @property (nonatomic, readonly, nonnull) NSString *releaseChannel;
|
| /expo/ios/Exponent/Kernel/AppLoader/CachedResource/ |
| H A D | EXCachedResource.h | 17 @property (nonatomic, strong, nullable) NSString *releaseChannel;
|
| /expo/ios/versioned/sdk49/EXUpdates/EXUpdates/Database/ |
| H A D | UpdatesBuildData.swift | 68 "ABI49_0_0EXUpdatesReleaseChannel": config.releaseChannel, in getBuildDataFromConfig()
|
| /expo/packages/expo-updates/ios/EXUpdates/Database/ |
| H A D | UpdatesBuildData.swift | 68 "EXUpdatesReleaseChannel": config.releaseChannel, in getBuildDataFromConfig()
|
| /expo/ios/versioned/sdk48/EXUpdates/EXUpdates/Database/ |
| H A D | ABI48_0_0EXUpdatesBuildData.m | 18 * So far we only know that `releaseChannel` and 71 @"ABI48_0_0EXUpdatesReleaseChannel": config.releaseChannel,
|
| /expo/ios/versioned/sdk47/EXUpdates/EXUpdates/Database/ |
| H A D | ABI47_0_0EXUpdatesBuildData.m | 18 * So far we only know that `releaseChannel` and 71 @"ABI47_0_0EXUpdatesReleaseChannel": config.releaseChannel,
|
| /expo/packages/expo-updates/android/src/androidTest/java/expo/modules/updates/ |
| H A D | UpdatesConfigurationInstrumentationTest.kt | 72 Assert.assertEquals("default", config.releaseChannel) in test_defaultValues() 154 Assert.assertEquals("override", config.releaseChannel) in test_initialization_mapTakesPrecedenceOverContext()
|
| /expo/packages/expo-updates/android/src/main/java/expo/modules/updates/ |
| H A D | UpdatesConfiguration.kt | 28 val releaseChannel: String, constant in expo.modules.updates.UpdatesConfiguration 67 …releaseChannel = overrideMap?.readValueCheckingType<String>(UPDATES_CONFIGURATION_RELEASE_CHANNEL_…
|