Skip to content

Commit 2750d5c

Browse files
committed
refactor
1 parent 589c187 commit 2750d5c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

apps/bare-expo/ios/Podfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ ENV['RCT_NEW_ARCH_ENABLED'] ||= '0' if podfile_properties['newArchEnabled'] == '
88
ENV['EX_DEV_CLIENT_NETWORK_INSPECTOR'] ||= podfile_properties['EX_DEV_CLIENT_NETWORK_INSPECTOR']
99
ENV['RCT_USE_RN_DEP'] ||= '1' if podfile_properties['ios.buildReactNativeFromSource'] != 'true'
1010
ENV['RCT_USE_PREBUILT_RNCORE'] ||= '1' if podfile_properties['ios.buildReactNativeFromSource'] != 'true'
11+
1112
platform :ios, podfile_properties['ios.deploymentTarget'] || '15.1'
1213

1314
source 'https://cdn.cocoapods.org/'

packages/expo-modules-autolinking/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"extends": "expo-module-scripts/tsconfig.plugin",
2+
"extends": "@tsconfig/node18/tsconfig.json",
33
"include": ["./src"],
44
"exclude": ["**/__mocks__/*", "**/__tests__/*"],
55
"compilerOptions": {

packages/expo-modules-core/android/src/main/java/expo/modules/kotlin/AppContext.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,11 +131,11 @@ class AppContext(
131131
}
132132

133133
private fun registerLocalModulesList() {
134-
try{
134+
try {
135135
val localModulesList = Class.forName("local.modules.ExpoLocalModulesList").getConstructor()
136136
.newInstance() as ModulesProvider
137137
hostingRuntimeContext.registry.register(localModulesList)
138-
} catch(_: ClassNotFoundException) {}
138+
} catch (_: ClassNotFoundException) {}
139139
}
140140

141141
/**

0 commit comments

Comments
 (0)