| /expo/android/expoview/src/main/java/host/exp/exponent/utils/ |
| H A D | BundleJSONConverter.kt | 46 fun convertToJSON(bundle: Bundle): JSONObject { in convertToJSON() 48 for (key in bundle.keySet()) { in convertToJSON() 50 bundle[key] // Null is not supported. in convertToJSON() 80 val bundle = Bundle() in convertToBundle() constant 98 setter.setOnBundle(bundle, key, value) in convertToBundle() 100 return bundle in convertToBundle() 114 bundle.putBoolean(key, value as Boolean) in setOnBundle() 126 bundle.putInt(key, value as Int) in setOnBundle() 138 bundle.putLong(key, value as Long) in setOnBundle() 150 bundle.putDouble(key, value as Double) in setOnBundle() [all …]
|
| /expo/packages/@expo/metro-runtime/build/error-overlay/UI/ |
| H A D | AnsiHighlight.js | 67 …ult.createElement(react_native_1.View, { style: styles.line, key: i }, items.map((bundle, key) => { 68 const textStyle = bundle.fg && COLORS[bundle.fg] 70 backgroundColor: bundle.bg && COLORS[bundle.bg], 71 color: bundle.fg && COLORS[bundle.fg], 74 backgroundColor: bundle.bg && COLORS[bundle.bg], 76 …ement(react_native_1.Text, { style: [style, textStyle], key: key }, getText(bundle.content, key)));
|
| /expo/fastlane/ |
| H A D | README.md | 21 [bundle exec] fastlane ios prepare_schemes 29 [bundle exec] fastlane ios test_module 37 [bundle exec] fastlane ios unit_tests 45 [bundle exec] fastlane ios test 53 [bundle exec] fastlane ios create_simulator_build 61 [bundle exec] fastlane ios create_expo_client_build 69 [bundle exec] fastlane ios release 82 [bundle exec] fastlane android start 90 [bundle exec] fastlane android build 98 [bundle exec] fastlane android upload_crashlytics_symbols [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/core/arguments/ |
| H A D | ReadableArguments.java | 67 Bundle bundle = new Bundle(); in toBundle() local 71 bundle.putString(key, null); in toBundle() 73 bundle.putString(key, (String) value); in toBundle() 75 bundle.putInt(key, (Integer) value); in toBundle() 77 bundle.putDouble(key, (Double) value); in toBundle() 79 bundle.putLong(key, (Long) value); in toBundle() 81 bundle.putBoolean(key, (Boolean) value); in toBundle() 83 bundle.putParcelableArrayList(key, (ArrayList) value); in toBundle() 85 bundle.putBundle(key, new MapArguments((Map) value).toBundle()); in toBundle() 87 bundle.putBundle(key, (Bundle) value); in toBundle() [all …]
|
| /expo/packages/expo-modules-core/android/src/main/java/expo/modules/core/arguments/ |
| H A D | ReadableArguments.java | 67 Bundle bundle = new Bundle(); in toBundle() local 71 bundle.putString(key, null); in toBundle() 73 bundle.putString(key, (String) value); in toBundle() 75 bundle.putInt(key, (Integer) value); in toBundle() 77 bundle.putDouble(key, (Double) value); in toBundle() 79 bundle.putLong(key, (Long) value); in toBundle() 81 bundle.putBoolean(key, (Boolean) value); in toBundle() 83 bundle.putParcelableArrayList(key, (ArrayList) value); in toBundle() 85 bundle.putBundle(key, new MapArguments((Map) value).toBundle()); in toBundle() 87 bundle.putBundle(key, (Bundle) value); in toBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/core/arguments/ |
| H A D | ReadableArguments.java | 67 Bundle bundle = new Bundle(); in toBundle() local 71 bundle.putString(key, null); in toBundle() 73 bundle.putString(key, (String) value); in toBundle() 75 bundle.putInt(key, (Integer) value); in toBundle() 77 bundle.putDouble(key, (Double) value); in toBundle() 79 bundle.putLong(key, (Long) value); in toBundle() 81 bundle.putBoolean(key, (Boolean) value); in toBundle() 83 bundle.putParcelableArrayList(key, (ArrayList) value); in toBundle() 85 bundle.putBundle(key, new MapArguments((Map) value).toBundle()); in toBundle() 87 bundle.putBundle(key, (Bundle) value); in toBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/core/arguments/ |
| H A D | ReadableArguments.java | 67 Bundle bundle = new Bundle(); in toBundle() local 71 bundle.putString(key, null); in toBundle() 73 bundle.putString(key, (String) value); in toBundle() 75 bundle.putInt(key, (Integer) value); in toBundle() 77 bundle.putDouble(key, (Double) value); in toBundle() 79 bundle.putLong(key, (Long) value); in toBundle() 81 bundle.putBoolean(key, (Boolean) value); in toBundle() 83 bundle.putParcelableArrayList(key, (ArrayList) value); in toBundle() 85 bundle.putBundle(key, new MapArguments((Map) value).toBundle()); in toBundle() 87 bundle.putBundle(key, (Bundle) value); in toBundle() [all …]
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/background/ |
| H A D | BackgroundRemoteNotificationTaskConsumer.java | 60 public void scheduleJob(Bundle bundle) { in scheduleJob() argument 81 Bundle bundle = new Bundle(); in didExecuteJob() local 83 mTask.execute(bundle, null, new TaskExecutionCallback() { in didExecuteJob() 99 private static JSONObject bundleToJson(Bundle bundle) { in bundleToJson() argument 101 for (String key : bundle.keySet()) { in bundleToJson() 103 if (bundle.get(key) instanceof Bundle) { in bundleToJson() 104 json.put(key, bundleToJson((Bundle) bundle.get(key))); in bundleToJson() 106 json.put(key, JSONObject.wrap(bundle.get(key))); in bundleToJson() 116 Bundle bundle = new Bundle(); in jsonStringToBundle() local 119 bundle = NotificationSerializer.toBundle(jsonObject); in jsonStringToBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/background/ |
| H A D | BackgroundRemoteNotificationTaskConsumer.java | 60 public void scheduleJob(Bundle bundle) { in scheduleJob() argument 81 Bundle bundle = new Bundle(); in didExecuteJob() local 83 mTask.execute(bundle, null, new TaskExecutionCallback() { in didExecuteJob() 99 private static JSONObject bundleToJson(Bundle bundle) { in bundleToJson() argument 101 for (String key : bundle.keySet()) { in bundleToJson() 103 if (bundle.get(key) instanceof Bundle) { in bundleToJson() 104 json.put(key, bundleToJson((Bundle) bundle.get(key))); in bundleToJson() 106 json.put(key, JSONObject.wrap(bundle.get(key))); in bundleToJson() 116 Bundle bundle = new Bundle(); in jsonStringToBundle() local 119 bundle = NotificationSerializer.toBundle(jsonObject); in jsonStringToBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/background/ |
| H A D | BackgroundRemoteNotificationTaskConsumer.java | 60 public void scheduleJob(Bundle bundle) { in scheduleJob() argument 81 Bundle bundle = new Bundle(); in didExecuteJob() local 83 mTask.execute(bundle, null, new TaskExecutionCallback() { in didExecuteJob() 99 private static JSONObject bundleToJson(Bundle bundle) { in bundleToJson() argument 101 for (String key : bundle.keySet()) { in bundleToJson() 103 if (bundle.get(key) instanceof Bundle) { in bundleToJson() 104 json.put(key, bundleToJson((Bundle) bundle.get(key))); in bundleToJson() 106 json.put(key, JSONObject.wrap(bundle.get(key))); in bundleToJson() 116 Bundle bundle = new Bundle(); in jsonStringToBundle() local 119 bundle = NotificationSerializer.toBundle(jsonObject); in jsonStringToBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/background/ |
| H A D | BackgroundRemoteNotificationTaskConsumer.java | 60 public void scheduleJob(Bundle bundle) { in scheduleJob() argument 81 Bundle bundle = new Bundle(); in didExecuteJob() local 83 mTask.execute(bundle, null, new TaskExecutionCallback() { in didExecuteJob() 99 private static JSONObject bundleToJson(Bundle bundle) { in bundleToJson() argument 101 for (String key : bundle.keySet()) { in bundleToJson() 103 if (bundle.get(key) instanceof Bundle) { in bundleToJson() 104 json.put(key, bundleToJson((Bundle) bundle.get(key))); in bundleToJson() 106 json.put(key, JSONObject.wrap(bundle.get(key))); in bundleToJson() 116 Bundle bundle = new Bundle(); in jsonStringToBundle() local 119 bundle = NotificationSerializer.toBundle(jsonObject); in jsonStringToBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/ |
| H A D | NotificationSerializer.java | 160 Bundle bundle = new Bundle(); in toBundle() local 162 bundle.putString("type", "push"); in toBundle() 165 bundle.putString("type", "timeInterval"); in toBundle() 169 bundle.putString("type", "date"); in toBundle() 170 bundle.putBoolean("repeats", false); in toBundle() 173 bundle.putString("type", "daily"); in toBundle() 177 bundle.putString("type", "weekly"); in toBundle() 182 bundle.putString("type", "yearly"); in toBundle() 188 bundle.putString("type", "unknown"); in toBundle() 190 bundle.putString("channelId", getChannelId(trigger)); in toBundle() [all …]
|
| /expo/packages/expo-notifications/android/src/main/java/expo/modules/notifications/notifications/ |
| H A D | NotificationSerializer.java | 160 Bundle bundle = new Bundle(); in toBundle() local 162 bundle.putString("type", "push"); in toBundle() 165 bundle.putString("type", "timeInterval"); in toBundle() 169 bundle.putString("type", "date"); in toBundle() 170 bundle.putBoolean("repeats", false); in toBundle() 173 bundle.putString("type", "daily"); in toBundle() 177 bundle.putString("type", "weekly"); in toBundle() 182 bundle.putString("type", "yearly"); in toBundle() 188 bundle.putString("type", "unknown"); in toBundle() 190 bundle.putString("channelId", getChannelId(trigger)); in toBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/ |
| H A D | NotificationSerializer.java | 160 Bundle bundle = new Bundle(); in toBundle() local 162 bundle.putString("type", "push"); in toBundle() 165 bundle.putString("type", "timeInterval"); in toBundle() 169 bundle.putString("type", "date"); in toBundle() 170 bundle.putBoolean("repeats", false); in toBundle() 173 bundle.putString("type", "daily"); in toBundle() 177 bundle.putString("type", "weekly"); in toBundle() 182 bundle.putString("type", "yearly"); in toBundle() 188 bundle.putString("type", "unknown"); in toBundle() 190 bundle.putString("channelId", getChannelId(trigger)); in toBundle() [all …]
|
| /expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/ |
| H A D | NotificationSerializer.java | 160 Bundle bundle = new Bundle(); in toBundle() local 162 bundle.putString("type", "push"); in toBundle() 165 bundle.putString("type", "timeInterval"); in toBundle() 169 bundle.putString("type", "date"); in toBundle() 170 bundle.putBoolean("repeats", false); in toBundle() 173 bundle.putString("type", "daily"); in toBundle() 177 bundle.putString("type", "weekly"); in toBundle() 182 bundle.putString("type", "yearly"); in toBundle() 188 bundle.putString("type", "unknown"); in toBundle() 190 bundle.putString("channelId", getChannelId(trigger)); in toBundle() [all …]
|
| /expo/packages/@expo/cli/src/export/ |
| H A D | fork-bundleAsync.ts | 84 const buildID = `bundle_${nextBuildID++}_${bundle.platform}`; 85 const isHermes = isEnableHermesManaged(expoConfig, bundle.platform); 89 platform: bundle.platform, 90 entryFile: bundle.entryPoint, 91 dev: bundle.dev ?? false, 92 minify: !isHermes && (bundle.minify ?? !bundle.dev), 94 sourceMapUrl: bundle.sourceMapUrl, 139 bundle: BundleOptions, 142 const { platform } = bundle; 155 bundle.minify ?? !bundle.dev [all …]
|
| H A D | writeContents.ts | 34 function createBundleHash(bundle: string | Uint8Array): string { 35 return crypto.createHash('md5').update(bundle).digest('hex'); 58 const bundle = bundleOutput.hermesBytecodeBundle ?? bundleOutput.code; constant 59 const hash = createBundleHash(bundle); 68 await fs.writeFile(path.join(outputDir, fileName), bundle); 98 Object.entries(bundles).map(async ([platform, bundle]) => { 99 const sourceMap = bundle.hermesSourcemap ?? bundle.map; constant 106 hashes?.[platform] ?? createBundleHash(bundle.hermesBytecodeBundle ?? bundle.code); 114 format: bundle.hermesBytecodeBundle ? 'bytecode' : 'javascript',
|
| H A D | createMetadataJson.ts | 9 type PlatformMetadata = { bundle: string; assets: PlatformMetadataAsset[] }; 31 (metadata, [platform, bundle]) => { 38 bundle: path.join('bundles', fileNames[platform]!), 40 assets: bundle.assets
|
| /expo/ios/versioned-react-native/ABI47_0_0/ReactNative/scripts/ |
| H A D | update_podfile_lock.sh | 17 bundle check || exit 23 bundle check || exit 24 bundle exec pod install
|
| /expo/ios/versioned-react-native/ABI48_0_0/ReactNative/scripts/ |
| H A D | update_podfile_lock.sh | 17 bundle check || exit 23 bundle check || exit 24 bundle exec pod install
|
| /expo/packages/@expo/metro-runtime/src/error-overlay/UI/ |
| H A D | AnsiHighlight.tsx | 70 {items.map((bundle, key) => { 72 bundle.fg && COLORS[bundle.fg] 74 backgroundColor: bundle.bg && COLORS[bundle.bg], 75 color: bundle.fg && COLORS[bundle.fg], 78 backgroundColor: bundle.bg && COLORS[bundle.bg], 82 {getText(bundle.content, key)}
|
| /expo/packages/expo-dev-menu/ios/Tests/ |
| H A D | DevMenuUtilsTests.swift | 12 let bundle = DevMenuUtils.resourcesBundle() in test_if_bundle_is_present() variable 14 XCTAssertNotNil(bundle) in test_if_bundle_is_present() 15 XCTAssertNotNil(bundle!.url(forResource: "EXDevMenuApp.ios", withExtension: "js")) in test_if_bundle_is_present()
|
| /expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/host/exp/exponent/modules/api/components/reactnativestripesdk/addresssheet/ |
| H A D | AddressSheetView.kt | 116 name = bundle.getString("name"), in <lambda>() 117 address = buildAddress(bundle.getBundle("address")), in <lambda>() 118 phoneNumber = bundle.getString("phone"), in <lambda>() 119 isCheckboxSelected = bundle.getBoolean("isCheckboxSelected"), in <lambda>() 128 if (bundle == null) { in <lambda>() 132 city = bundle.getString("city"), in <lambda>() 133 country = bundle.getString("country"), in <lambda>() 134 line1 = bundle.getString("line1"), in <lambda>() 135 line2 = bundle.getString("line2"), in <lambda>() 136 state = bundle.getString("state"), in <lambda>() [all …]
|
| /expo/android/expoview/src/main/java/versioned/host/exp/exponent/modules/api/components/reactnativestripesdk/addresssheet/ |
| H A D | AddressSheetView.kt | 118 name = bundle.getString("name"), in <lambda>() 119 address = buildAddress(bundle.getBundle("address")), in <lambda>() 120 phoneNumber = bundle.getString("phone"), in <lambda>() 121 isCheckboxSelected = bundle.getBoolean("isCheckboxSelected"), in <lambda>() 130 if (bundle == null) { in <lambda>() 134 city = bundle.getString("city"), in <lambda>() 135 country = bundle.getString("country"), in <lambda>() 136 line1 = bundle.getString("line1"), in <lambda>() 137 line2 = bundle.getString("line2"), in <lambda>() 138 state = bundle.getString("state"), in <lambda>() [all …]
|
| /expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/host/exp/exponent/modules/api/components/reactnativestripesdk/addresssheet/ |
| H A D | AddressSheetView.kt | 116 name = bundle.getString("name"), in <lambda>() 117 address = buildAddress(bundle.getBundle("address")), in <lambda>() 118 phoneNumber = bundle.getString("phone"), in <lambda>() 119 isCheckboxSelected = bundle.getBoolean("isCheckboxSelected"), in <lambda>() 128 if (bundle == null) { in <lambda>() 132 city = bundle.getString("city"), in <lambda>() 133 country = bundle.getString("country"), in <lambda>() 134 line1 = bundle.getString("line1"), in <lambda>() 135 line2 = bundle.getString("line2"), in <lambda>() 136 state = bundle.getString("state"), in <lambda>() [all …]
|