Skip to content

Commit

Permalink
update example project based on new xcframework changes
Browse files Browse the repository at this point in the history
  • Loading branch information
QSD_faris committed Jan 14, 2024
1 parent acd128d commit a96fbb5
Show file tree
Hide file tree
Showing 28 changed files with 6,016 additions and 18 deletions.
18 changes: 10 additions & 8 deletions Examples/SwiftExample/SwiftExample.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
objects = {

/* Begin PBXBuildFile section */
5E0273E22B483A0E00872EE0 /* messenger-sdk-ios in Frameworks */ = {isa = PBXBuildFile; productRef = 5E0273E12B483A0E00872EE0 /* messenger-sdk-ios */; };
5E19F5942B477AE400E37F55 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E19F5932B477AE400E37F55 /* AppDelegate.swift */; };
5E19F5962B477AE400E37F55 /* SceneDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E19F5952B477AE400E37F55 /* SceneDelegate.swift */; };
5E19F5982B477AE400E37F55 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E19F5972B477AE400E37F55 /* ViewController.swift */; };
5E19F59B2B477AE400E37F55 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5E19F5992B477AE400E37F55 /* Main.storyboard */; };
5E19F59D2B477AE400E37F55 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 5E19F59C2B477AE400E37F55 /* Assets.xcassets */; };
5E19F5A02B477AE400E37F55 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 5E19F59E2B477AE400E37F55 /* LaunchScreen.storyboard */; };
5EA7B6F02B549B6200C9B3AC /* messenger-sdk-ios in Frameworks */ = {isa = PBXBuildFile; productRef = 5EA7B6EF2B549B6200C9B3AC /* messenger-sdk-ios */; };
/* End PBXBuildFile section */

/* Begin PBXCopyFilesBuildPhase section */
Expand Down Expand Up @@ -45,7 +45,7 @@
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
5E0273E22B483A0E00872EE0 /* messenger-sdk-ios in Frameworks */,
5EA7B6F02B549B6200C9B3AC /* messenger-sdk-ios in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down Expand Up @@ -100,7 +100,7 @@
);
name = SwiftExample;
packageProductDependencies = (
5E0273E12B483A0E00872EE0 /* messenger-sdk-ios */,
5EA7B6EF2B549B6200C9B3AC /* messenger-sdk-ios */,
);
productName = SwiftExample;
productReference = 5E19F5902B477AE400E37F55 /* SwiftExample.app */;
Expand Down Expand Up @@ -131,7 +131,7 @@
);
mainGroup = 5E19F5872B477AE400E37F55;
packageReferences = (
5E0273E02B483A0E00872EE0 /* XCRemoteSwiftPackageReference "messenger-sdk-ios" */,
5EA7B6EE2B549B6200C9B3AC /* XCRemoteSwiftPackageReference "messenger-sdk-ios" */,
);
productRefGroup = 5E19F5912B477AE400E37F55 /* Products */;
projectDirPath = "";
Expand Down Expand Up @@ -317,6 +317,7 @@
INFOPLIST_KEY_UIMainStoryboardFile = Main;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -345,6 +346,7 @@
INFOPLIST_KEY_UIMainStoryboardFile = Main;
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
Expand Down Expand Up @@ -382,20 +384,20 @@
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
5E0273E02B483A0E00872EE0 /* XCRemoteSwiftPackageReference "messenger-sdk-ios" */ = {
5EA7B6EE2B549B6200C9B3AC /* XCRemoteSwiftPackageReference "messenger-sdk-ios" */ = {
isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/deskpro/messenger-sdk-ios.git";
requirement = {
kind = upToNextMajorVersion;
minimumVersion = 0.0.2;
minimumVersion = 0.0.4;
};
};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
5E0273E12B483A0E00872EE0 /* messenger-sdk-ios */ = {
5EA7B6EF2B549B6200C9B3AC /* messenger-sdk-ios */ = {
isa = XCSwiftPackageProductDependency;
package = 5E0273E02B483A0E00872EE0 /* XCRemoteSwiftPackageReference "messenger-sdk-ios" */;
package = 5EA7B6EE2B549B6200C9B3AC /* XCRemoteSwiftPackageReference "messenger-sdk-ios" */;
productName = "messenger-sdk-ios";
};
/* End XCSwiftPackageProductDependency section */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
"kind" : "remoteSourceControl",
"location" : "https://github.com/deskpro/messenger-sdk-ios.git",
"state" : {
"revision" : "8be673468b716ef7ad53c6c465cffde7022df348",
"version" : "0.0.2"
"revision" : "acd128d826940bf1ef4fbd551cc5afd5369196b9",
"version" : "0.0.4"
}
}
],
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>AvailableLibraries</key>
<array>
<dict>
<key>BinaryPath</key>
<string>DeskproFramework.framework/DeskproFramework</string>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>DeskproFramework.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
</dict>
<dict>
<key>BinaryPath</key>
<string>DeskproFramework.framework/DeskproFramework</string>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>DeskproFramework.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
<string>XFWK</string>
<key>XCFrameworkFormatVersion</key>
<string>1.0</string>
</dict>
</plist>
Binary file not shown.
Loading

0 comments on commit a96fbb5

Please sign in to comment.