Skip to content

Commit

Permalink
Fix iOS version
Browse files Browse the repository at this point in the history
  • Loading branch information
bndkt committed Feb 14, 2023
1 parent 4aef78e commit 5fcdfb8
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 89 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-app-clip",
"version": "0.0.35",
"version": "0.0.36",
"description": "Config plugin to add an App Clip to a React Native iOS app",
"main": "app.plugin.js",
"files": [
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/withAppClipPlist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export const withAppClipPlist: ConfigPlugin = (config) => {
"Supporting/Expo.plist"
);
const appClipExpoPlist: InfoPlist = {};
appClipExpoPlist.EXUpdatesRuntimeVersion = "exposdk:47.0.0";
appClipExpoPlist.EXUpdatesRuntimeVersion = "exposdk:48.0.0";
/* appClipExpoPlist.EXUpdatesURL =
"https://u.expo.dev/0697085b-3043-46d0-a3ad-1677246578ec"; // TODO */
appClipExpoPlist.EXUpdatesEnabled = false;
Expand Down
2 changes: 1 addition & 1 deletion plugin/src/xcodeAppClip/addXCConfigurationList.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ export default function (
CLANG_ENABLE_MODULES: "YES",
CURRENT_PROJECT_VERSION: quoted(currentProjectVersion),
INFOPLIST_FILE: `${appClipFolder}/Info.plist`,
IPHONEOS_DEPLOYMENT_TARGET: "14.0",
IPHONEOS_DEPLOYMENT_TARGET: "16.0",
// LD_RUNPATH_SEARCH_PATHS: "$(inherited) @executable_path/Frameworks",
// OTHER_LDFLAGS: `("$(inherited)","-ObjC","-lc++",)`,
PRODUCT_BUNDLE_IDENTIFIER: quoted(appClipBundleIdentifier),
Expand Down
Loading

0 comments on commit 5fcdfb8

Please sign in to comment.