Skip to content

Commit

Permalink
Updates FBSDK dependency and migrates sample project to Xcode 8.X
Browse files Browse the repository at this point in the history
  • Loading branch information
gbonnin committed Feb 20, 2017
1 parent 8c2f501 commit 0fd5aae
Show file tree
Hide file tree
Showing 7 changed files with 79 additions and 42 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
##SNSSocial

###2.0.2

Updates FBSDK dependency (v4.19.0) and migrates sample project to Xcode 8.X

###2.0.1

Updates FBSDK & STTwitter dependencies
Expand Down
32 changes: 16 additions & 16 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,26 +5,26 @@ PODS:
- Bolts/AppLinks (1.8.4):
- Bolts/Tasks
- Bolts/Tasks (1.8.4)
- FBSDKCoreKit (4.16.0):
- FBSDKCoreKit (4.19.0):
- Bolts (~> 1.7)
- FBSDKLoginKit (4.16.0):
- FBSDKLoginKit (4.19.0):
- FBSDKCoreKit
- FBSDKShareKit (4.16.0):
- FBSDKShareKit (4.19.0):
- FBSDKCoreKit
- FBSnapshotTestCase (2.1.4):
- FBSnapshotTestCase/SwiftSupport (= 2.1.4)
- FBSnapshotTestCase/Core (2.1.4)
- FBSnapshotTestCase/SwiftSupport (2.1.4):
- FBSnapshotTestCase/Core
- Kiwi (2.4.0)
- SNSSocial (2.0.1):
- SNSSocial/Facebook (= 2.0.1)
- SNSSocial/Twitter (= 2.0.1)
- SNSSocial/Facebook (2.0.1):
- FBSDKCoreKit (= 4.16.0)
- FBSDKLoginKit (= 4.16.0)
- FBSDKShareKit (= 4.16.0)
- SNSSocial/Twitter (2.0.1):
- SNSSocial (2.0.2):
- SNSSocial/Facebook (= 2.0.2)
- SNSSocial/Twitter (= 2.0.2)
- SNSSocial/Facebook (2.0.2):
- FBSDKCoreKit (= 4.19.0)
- FBSDKLoginKit (= 4.19.0)
- FBSDKShareKit (= 4.19.0)
- SNSSocial/Twitter (2.0.2):
- STTwitter (= 0.2.5)
- STTwitter (0.2.5)

Expand All @@ -39,14 +39,14 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
Bolts: 8a7995239dbe724f9cba2248b766d48b7ebdd322
FBSDKCoreKit: 7a6baaed4a2b2a244ba253346713bdbc74df135b
FBSDKLoginKit: 9a514a55a7d05190f64d4ef09502737588b5b561
FBSDKShareKit: e81505de17fc0624cbaa87b83cccc9f2a786e6cb
FBSDKCoreKit: 894b2b6eda6a4c8c4204e92e59cc355709ef045c
FBSDKLoginKit: 83ca4d8f12a2022570af9fd6aacf27f6b425b99f
FBSDKShareKit: 5953758366278430dc322d5cdc906db361ed7f81
FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a
Kiwi: f49c9d54b28917df5928fe44968a39ed198cb8a8
SNSSocial: b8636a4d813bc05474083bab2b6dfb6f89304fff
SNSSocial: 043ce99c9b110c5f9c9a1b0762c89b798625f972
STTwitter: 5c157e8dcb4f0e4cf5b4374393021b7d7b7fd497

PODFILE CHECKSUM: 8b7863ba4b6612afc500a2ebb50164b8b2de8aa8

COCOAPODS: 1.0.1
COCOAPODS: 1.2.0
27 changes: 22 additions & 5 deletions Example/SNSSocial.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -253,10 +253,11 @@
attributes = {
CLASSPREFIX = SNS;
LastSwiftUpdateCheck = 0730;
LastUpgradeCheck = 0720;
LastUpgradeCheck = 0810;
ORGANIZATIONNAME = "Jean-Charles SORIN";
TargetAttributes = {
6003F5AD195388D20070C39A = {
LastSwiftMigration = 0810;
TestTargetID = 6003F589195388D20070C39A;
};
};
Expand Down Expand Up @@ -345,7 +346,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
89B8C5AC501798CE04C7A2BF /* [CP] Embed Pods Frameworks */ = {
Expand Down Expand Up @@ -390,7 +391,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down Expand Up @@ -458,14 +459,19 @@
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
ENABLE_TESTABILITY = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_DYNAMIC_NO_PIC = NO;
GCC_NO_COMMON_BLOCKS = YES;
GCC_OPTIMIZATION_LEVEL = 0;
GCC_PREPROCESSOR_DEFINITIONS = (
"DEBUG=1",
Expand All @@ -478,7 +484,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
ONLY_ACTIVE_ARCH = YES;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
Expand All @@ -498,20 +504,25 @@
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INFINITE_RECURSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_SUSPICIOUS_MOVE = YES;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
COPY_PHASE_STRIP = YES;
ENABLE_NS_ASSERTIONS = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
GCC_C_LANGUAGE_STANDARD = gnu99;
GCC_NO_COMMON_BLOCKS = YES;
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
GCC_WARN_UNDECLARED_SELECTOR = YES;
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 8.3;
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
Expand All @@ -528,6 +539,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SNSSocial/SNSSocial-Prefix.pch";
INFOPLIST_FILE = "SNSSocial/SNSSocial-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
Expand All @@ -548,6 +560,7 @@
GCC_PRECOMPILE_PREFIX_HEADER = YES;
GCC_PREFIX_HEADER = "SNSSocial/SNSSocial-Prefix.pch";
INFOPLIST_FILE = "SNSSocial/SNSSocial-Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
MODULE_NAME = ExampleApp;
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
Expand All @@ -561,6 +574,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 5F1229FEF07D9E3EDC0E5DDA /* Pods-SNSSocial_Example-SNSSocial_Tests.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUNDLE_LOADER = "$(TEST_HOST)";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
Expand All @@ -576,6 +590,7 @@
INFOPLIST_FILE = "Tests/Tests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SNSSocial_Example.app/SNSSocial_Example";
WRAPPER_EXTENSION = xctest;
};
Expand All @@ -585,6 +600,7 @@
isa = XCBuildConfiguration;
baseConfigurationReference = 0BCC190F8E77B449DA1A5790 /* Pods-SNSSocial_Example-SNSSocial_Tests.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
BUNDLE_LOADER = "$(TEST_HOST)";
FRAMEWORK_SEARCH_PATHS = (
"$(SDKROOT)/Developer/Library/Frameworks",
Expand All @@ -596,6 +612,7 @@
INFOPLIST_FILE = "Tests/Tests-Info.plist";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.demo.${PRODUCT_NAME:rfc1034identifier}";
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SNSSocial_Example.app/SNSSocial_Example";
WRAPPER_EXTENSION = xctest;
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0720"
LastUpgradeVersion = "0810"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
46 changes: 31 additions & 15 deletions Example/SNSSocial/Main.storyboard
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="10117" systemVersion="15F34" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" initialViewController="pYV-qY-e0L">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="11542" systemVersion="15G31" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" colorMatched="YES" initialViewController="pYV-qY-e0L">
<device id="retina4_7" orientation="portrait">
<adaptation id="fullscreen"/>
</device>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="10085"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="11524"/>
<capability name="Constraints to layout margins" minToolsVersion="6.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<scenes>
<!--Navigation Controller-->
Expand Down Expand Up @@ -31,32 +35,33 @@
<viewControllerLayoutGuide type="bottom" id="e91-kp-ew8"/>
</layoutGuides>
<view key="view" contentMode="scaleToFill" id="HQy-QR-Oxz">
<rect key="frame" x="0.0" y="0.0" width="600" height="600"/>
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<subviews>
<view contentMode="scaleToFill" fixedFrame="YES" translatesAutoresizingMaskIntoConstraints="NO" id="vu3-Pz-F2g">
<rect key="frame" x="180" y="236" width="240" height="128"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<rect key="frame" x="-8" y="51" width="11" height="100"/>
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
</view>
<tableView clipsSubviews="YES" contentMode="scaleToFill" ambiguous="YES" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="V5W-gc-iMi">
<rect key="frame" x="0.0" y="102" width="600" height="498"/>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" dataMode="prototypes" style="plain" separatorStyle="default" rowHeight="44" sectionHeaderHeight="28" sectionFooterHeight="28" translatesAutoresizingMaskIntoConstraints="NO" id="V5W-gc-iMi">
<rect key="frame" x="-4" y="110" width="383" height="557"/>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<connections>
<outlet property="dataSource" destination="k1v-Wv-bcv" id="wqX-pp-TLv"/>
<outlet property="delegate" destination="k1v-Wv-bcv" id="Mns-kH-NcW"/>
</connections>
</tableView>
<view contentMode="scaleToFill" ambiguous="YES" translatesAutoresizingMaskIntoConstraints="NO" id="voT-IT-92e" userLabel="TopLabelsView">
<rect key="frame" x="0.0" y="64" width="600" height="37"/>
<view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="voT-IT-92e" userLabel="TopLabelsView">
<rect key="frame" x="-4" y="64" width="383" height="45"/>
<subviews>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Twitter User Name" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zAA-5u-uSR">
<rect key="frame" x="13" y="8" width="256" height="21"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Twitter User Name" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="zAA-5u-uSR">
<rect key="frame" x="13" y="12" width="147.5" height="21"/>
<fontDescription key="fontDescription" type="system" pointSize="17"/>
<color key="textColor" cocoaTouchSystemColor="darkTextColor"/>
<nil key="highlightedColor"/>
</label>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Facebook User Name" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="0" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dKI-B5-9Cc">
<rect key="frame" x="336" y="8" width="256" height="21"/>
<label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Facebook User Name" textAlignment="center" lineBreakMode="tailTruncation" numberOfLines="2" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="dKI-B5-9Cc">
<rect key="frame" x="227.5" y="12" width="147.5" height="21"/>
<constraints>
<constraint firstAttribute="height" relation="greaterThanOrEqual" constant="21" id="z4j-nG-lAE"/>
</constraints>
Expand All @@ -67,18 +72,29 @@
</subviews>
<color key="backgroundColor" cocoaTouchSystemColor="lightTextColor"/>
<constraints>
<constraint firstItem="dKI-B5-9Cc" firstAttribute="centerY" secondItem="voT-IT-92e" secondAttribute="centerY" id="11V-gz-nrb"/>
<constraint firstItem="zAA-5u-uSR" firstAttribute="width" secondItem="dKI-B5-9Cc" secondAttribute="width" id="54F-dz-FHX"/>
<constraint firstItem="dKI-B5-9Cc" firstAttribute="top" secondItem="voT-IT-92e" secondAttribute="top" constant="8" id="6as-cr-Nm1"/>
<constraint firstItem="zAA-5u-uSR" firstAttribute="leading" secondItem="voT-IT-92e" secondAttribute="leading" constant="13" id="9VT-sS-eoU"/>
<constraint firstItem="zAA-5u-uSR" firstAttribute="centerY" secondItem="voT-IT-92e" secondAttribute="centerY" id="Dgr-JC-vjJ"/>
<constraint firstItem="zAA-5u-uSR" firstAttribute="top" secondItem="voT-IT-92e" secondAttribute="top" constant="8" id="LVy-zQ-5J7"/>
<constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="zAA-5u-uSR" secondAttribute="bottom" constant="8" id="R0v-tZ-jYw"/>
<constraint firstItem="dKI-B5-9Cc" firstAttribute="leading" secondItem="zAA-5u-uSR" secondAttribute="trailing" constant="67" id="Shp-2l-0bP"/>
<constraint firstAttribute="bottom" relation="greaterThanOrEqual" secondItem="dKI-B5-9Cc" secondAttribute="bottom" constant="8" id="UQR-fI-dQI"/>
<constraint firstAttribute="height" constant="45" id="ZLU-rf-xKi"/>
<constraint firstAttribute="trailing" secondItem="dKI-B5-9Cc" secondAttribute="trailing" constant="8" id="u9U-qP-HqD"/>
</constraints>
<variation key="default">
<mask key="constraints">
<exclude reference="LVy-zQ-5J7"/>
<exclude reference="R0v-tZ-jYw"/>
<exclude reference="6as-cr-Nm1"/>
<exclude reference="UQR-fI-dQI"/>
</mask>
</variation>
</view>
</subviews>
<color key="backgroundColor" white="1" alpha="1" colorSpace="calibratedWhite"/>
<color key="backgroundColor" red="1" green="1" blue="1" alpha="1" colorSpace="custom" customColorSpace="sRGB"/>
<constraints>
<constraint firstItem="V5W-gc-iMi" firstAttribute="top" secondItem="voT-IT-92e" secondAttribute="bottom" constant="1" id="Hu1-qP-Hhf"/>
<constraint firstAttribute="trailingMargin" secondItem="voT-IT-92e" secondAttribute="trailing" constant="-20" id="Kcf-F7-jDP"/>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The version 2.X is written in Objective-C (but fully compatible Swift). We are c

- Minimum iOS versions required : **8.0**.
- Swift or Objective-C project
- Xcode 7.3+
- Xcode 8.1+

### Facebook Features

Expand Down
8 changes: 4 additions & 4 deletions SNSSocial.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SNSSocial'
s.version = '2.0.1'
s.version = '2.0.2'
s.homepage = 'https://github.com/smartnsoft/SNSSocial'
s.license = 'Free'
s.summary = 'Make social networks management easier on iOS.'
Expand All @@ -25,9 +25,9 @@ end

s.subspec "Facebook" do |sp|
sp.ios.source_files = "SNSSocial/Classes/Facebook/**/*.{h,m}"
sp.ios.dependency 'FBSDKCoreKit', '4.16.0'
sp.ios.dependency 'FBSDKShareKit', '4.16.0'
sp.ios.dependency 'FBSDKLoginKit', '4.16.0'
sp.ios.dependency 'FBSDKCoreKit', '4.19.0'
sp.ios.dependency 'FBSDKShareKit', '4.19.0'
sp.ios.dependency 'FBSDKLoginKit', '4.19.0'
sp.ios.xcconfig = {'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES'}
end

Expand Down

0 comments on commit 0fd5aae

Please sign in to comment.