react-native-universal-keyboard-aware-scrollview 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +387 -0
- package/android/app/build.gradle +182 -0
- package/android/app/debug.keystore +0 -0
- package/android/app/proguard-rules.pro +14 -0
- package/android/app/src/debug/AndroidManifest.xml +7 -0
- package/android/app/src/debugOptimized/AndroidManifest.xml +7 -0
- package/android/app/src/main/AndroidManifest.xml +25 -0
- package/android/app/src/main/java/com/anonymous/reactnativeuniversalkeyboardawarescrollview/MainActivity.kt +61 -0
- package/android/app/src/main/java/com/anonymous/reactnativeuniversalkeyboardawarescrollview/MainApplication.kt +56 -0
- package/android/app/src/main/res/drawable/ic_launcher_background.xml +6 -0
- package/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
- package/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png +0 -0
- package/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png +0 -0
- package/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png +0 -0
- package/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png +0 -0
- package/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png +0 -0
- package/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +5 -0
- package/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -0
- package/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- package/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
- package/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- package/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- package/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
- package/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- package/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
- package/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
- package/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
- package/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- package/android/app/src/main/res/values/colors.xml +6 -0
- package/android/app/src/main/res/values/strings.xml +5 -0
- package/android/app/src/main/res/values/styles.xml +11 -0
- package/android/app/src/main/res/values-night/colors.xml +1 -0
- package/android/build.gradle +89 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +7 -0
- package/android/gradle.properties +65 -0
- package/android/gradlew +251 -0
- package/android/gradlew.bat +94 -0
- package/android/settings.gradle +39 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/java/com/universalkeyboard/UniversalKeyboardModule.kt +349 -0
- package/android/src/main/java/com/universalkeyboard/UniversalKeyboardPackage.kt +21 -0
- package/ios/.xcode.env +11 -0
- package/ios/Podfile +60 -0
- package/ios/Podfile.lock +2001 -0
- package/ios/Podfile.properties.json +5 -0
- package/ios/UniversalKeyboard.h +24 -0
- package/ios/UniversalKeyboard.m +413 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/AppDelegate.swift +70 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png +0 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/AppIcon.appiconset/Contents.json +14 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/Contents.json +6 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/SplashScreenBackground.colorset/Contents.json +20 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/SplashScreenLegacy.imageset/Contents.json +23 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/SplashScreenLegacy.imageset/image.png +0 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/SplashScreenLegacy.imageset/image@2x.png +0 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Images.xcassets/SplashScreenLegacy.imageset/image@3x.png +0 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Info.plist +76 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/PrivacyInfo.xcprivacy +48 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/SplashScreen.storyboard +48 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/Supporting/Expo.plist +12 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h +3 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview.entitlements +5 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview.xcodeproj/project.pbxproj +540 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview.xcodeproj/xcshareddata/xcschemes/reactnativeuniversalkeyboardawarescrollview.xcscheme +88 -0
- package/ios/reactnativeuniversalkeyboardawarescrollview.xcworkspace/contents.xcworkspacedata +10 -0
- package/package.json +61 -0
- package/react-native-universal-keyboard-aware-scrollview.podspec +32 -0
- package/react-native.config.js +18 -0
- package/src/NativeModule.ts +61 -0
- package/src/components/KeyboardAwareScrollView.tsx +388 -0
- package/src/components/index.ts +5 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useKeyboard.ts +360 -0
- package/src/index.ts +27 -0
- package/src/types.ts +87 -0
- package/src/utils/KeyboardController.ts +112 -0
- package/src/utils/index.ts +1 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>NSPrivacyAccessedAPITypes</key>
|
|
6
|
+
<array>
|
|
7
|
+
<dict>
|
|
8
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
9
|
+
<string>NSPrivacyAccessedAPICategoryUserDefaults</string>
|
|
10
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
11
|
+
<array>
|
|
12
|
+
<string>CA92.1</string>
|
|
13
|
+
</array>
|
|
14
|
+
</dict>
|
|
15
|
+
<dict>
|
|
16
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
17
|
+
<string>NSPrivacyAccessedAPICategoryFileTimestamp</string>
|
|
18
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
19
|
+
<array>
|
|
20
|
+
<string>0A2A.1</string>
|
|
21
|
+
<string>3B52.1</string>
|
|
22
|
+
<string>C617.1</string>
|
|
23
|
+
</array>
|
|
24
|
+
</dict>
|
|
25
|
+
<dict>
|
|
26
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
27
|
+
<string>NSPrivacyAccessedAPICategoryDiskSpace</string>
|
|
28
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
29
|
+
<array>
|
|
30
|
+
<string>E174.1</string>
|
|
31
|
+
<string>85F4.1</string>
|
|
32
|
+
</array>
|
|
33
|
+
</dict>
|
|
34
|
+
<dict>
|
|
35
|
+
<key>NSPrivacyAccessedAPIType</key>
|
|
36
|
+
<string>NSPrivacyAccessedAPICategorySystemBootTime</string>
|
|
37
|
+
<key>NSPrivacyAccessedAPITypeReasons</key>
|
|
38
|
+
<array>
|
|
39
|
+
<string>35F9.1</string>
|
|
40
|
+
</array>
|
|
41
|
+
</dict>
|
|
42
|
+
</array>
|
|
43
|
+
<key>NSPrivacyCollectedDataTypes</key>
|
|
44
|
+
<array/>
|
|
45
|
+
<key>NSPrivacyTracking</key>
|
|
46
|
+
<false/>
|
|
47
|
+
</dict>
|
|
48
|
+
</plist>
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="24093.7" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="EXPO-VIEWCONTROLLER-1">
|
|
3
|
+
<device id="retina6_12" orientation="portrait" appearance="light"/>
|
|
4
|
+
<dependencies>
|
|
5
|
+
<deployment identifier="iOS"/>
|
|
6
|
+
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="24053.1"/>
|
|
7
|
+
<capability name="Named colors" minToolsVersion="9.0"/>
|
|
8
|
+
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
|
|
9
|
+
<capability name="System colors in document resources" minToolsVersion="11.0"/>
|
|
10
|
+
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
|
|
11
|
+
</dependencies>
|
|
12
|
+
<scenes>
|
|
13
|
+
<scene sceneID="EXPO-SCENE-1">
|
|
14
|
+
<objects>
|
|
15
|
+
<viewController storyboardIdentifier="SplashScreenViewController" id="EXPO-VIEWCONTROLLER-1" sceneMemberID="viewController">
|
|
16
|
+
<view key="view" userInteractionEnabled="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="EXPO-ContainerView" userLabel="ContainerView">
|
|
17
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
18
|
+
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
19
|
+
<subviews>
|
|
20
|
+
<imageView id="EXPO-SplashScreen" userLabel="SplashScreenLegacy" image="SplashScreenLegacy" contentMode="scaleAspectFit" clipsSubviews="true" userInteractionEnabled="false" translatesAutoresizingMaskIntoConstraints="false">
|
|
21
|
+
<rect key="frame" x="0" y="0" width="414" height="736"/>
|
|
22
|
+
</imageView>
|
|
23
|
+
</subviews>
|
|
24
|
+
<viewLayoutGuide key="safeArea" id="Rmq-lb-GrQ"/>
|
|
25
|
+
<constraints>
|
|
26
|
+
<constraint firstItem="EXPO-SplashScreen" firstAttribute="top" secondItem="EXPO-ContainerView" secondAttribute="top" id="83fcb9b545b870ba44c24f0feeb116490c499c52"/>
|
|
27
|
+
<constraint firstItem="EXPO-SplashScreen" firstAttribute="leading" secondItem="EXPO-ContainerView" secondAttribute="leading" id="61d16215e44b98e39d0a2c74fdbfaaa22601b12c"/>
|
|
28
|
+
<constraint firstItem="EXPO-SplashScreen" firstAttribute="trailing" secondItem="EXPO-ContainerView" secondAttribute="trailing" id="f934da460e9ab5acae3ad9987d5b676a108796c1"/>
|
|
29
|
+
<constraint firstItem="EXPO-SplashScreen" firstAttribute="bottom" secondItem="EXPO-ContainerView" secondAttribute="bottom" id="d6a0be88096b36fb132659aa90203d39139deda9"/>
|
|
30
|
+
</constraints>
|
|
31
|
+
<color key="backgroundColor" name="SplashScreenBackground"/>
|
|
32
|
+
</view>
|
|
33
|
+
</viewController>
|
|
34
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="EXPO-PLACEHOLDER-1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
35
|
+
</objects>
|
|
36
|
+
<point key="canvasLocation" x="0.0" y="0.0"/>
|
|
37
|
+
</scene>
|
|
38
|
+
</scenes>
|
|
39
|
+
<resources>
|
|
40
|
+
<image name="SplashScreenLegacy" width="414" height="736"/>
|
|
41
|
+
<systemColor name="systemBackgroundColor">
|
|
42
|
+
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
43
|
+
</systemColor>
|
|
44
|
+
<namedColor name="SplashScreenBackground">
|
|
45
|
+
<color alpha="1.000" blue="1.00000000000000" green="1.00000000000000" red="1.00000000000000" customColorSpace="sRGB" colorSpace="custom"/>
|
|
46
|
+
</namedColor>
|
|
47
|
+
</resources>
|
|
48
|
+
</document>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
3
|
+
<plist version="1.0">
|
|
4
|
+
<dict>
|
|
5
|
+
<key>EXUpdatesCheckOnLaunch</key>
|
|
6
|
+
<string>ALWAYS</string>
|
|
7
|
+
<key>EXUpdatesEnabled</key>
|
|
8
|
+
<false/>
|
|
9
|
+
<key>EXUpdatesLaunchWaitMs</key>
|
|
10
|
+
<integer>0</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</plist>
|
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
// !$*UTF8*$!
|
|
2
|
+
{
|
|
3
|
+
archiveVersion = 1;
|
|
4
|
+
classes = {
|
|
5
|
+
};
|
|
6
|
+
objectVersion = 54;
|
|
7
|
+
objects = {
|
|
8
|
+
|
|
9
|
+
/* Begin PBXBuildFile section */
|
|
10
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
11
|
+
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */; };
|
|
12
|
+
64593E8332E6832562EC69DB /* ExpoModulesProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC9534922D6842C6E5BDB811 /* ExpoModulesProvider.swift */; };
|
|
13
|
+
785E49FFBB8FA88C02C11028 /* libPods-reactnativeuniversalkeyboardawarescrollview.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FF270B4C7A763C3AF1AB215F /* libPods-reactnativeuniversalkeyboardawarescrollview.a */; };
|
|
14
|
+
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
|
|
15
|
+
DFE1E42DED41EC9BE3FB8E35 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 14903E3BF0BFEC9A2725379B /* PrivacyInfo.xcprivacy */; };
|
|
16
|
+
F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };
|
|
17
|
+
/* End PBXBuildFile section */
|
|
18
|
+
|
|
19
|
+
/* Begin PBXFileReference section */
|
|
20
|
+
13B07F961A680F5B00A75B9A /* reactnativeuniversalkeyboardawarescrollview.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = reactnativeuniversalkeyboardawarescrollview.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
21
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = reactnativeuniversalkeyboardawarescrollview/Images.xcassets; sourceTree = "<group>"; };
|
|
22
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = reactnativeuniversalkeyboardawarescrollview/Info.plist; sourceTree = "<group>"; };
|
|
23
|
+
14903E3BF0BFEC9A2725379B /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = reactnativeuniversalkeyboardawarescrollview/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
24
|
+
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = reactnativeuniversalkeyboardawarescrollview/SplashScreen.storyboard; sourceTree = "<group>"; };
|
|
25
|
+
BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
|
|
26
|
+
BC9534922D6842C6E5BDB811 /* ExpoModulesProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ExpoModulesProvider.swift; path = "Pods/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/ExpoModulesProvider.swift"; sourceTree = "<group>"; };
|
|
27
|
+
C9A70A2C6A9BFC433C7BA870 /* Pods-reactnativeuniversalkeyboardawarescrollview.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativeuniversalkeyboardawarescrollview.debug.xcconfig"; path = "Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/Pods-reactnativeuniversalkeyboardawarescrollview.debug.xcconfig"; sourceTree = "<group>"; };
|
|
28
|
+
DA27A6ACF420F4EBBC440842 /* Pods-reactnativeuniversalkeyboardawarescrollview.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-reactnativeuniversalkeyboardawarescrollview.release.xcconfig"; path = "Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/Pods-reactnativeuniversalkeyboardawarescrollview.release.xcconfig"; sourceTree = "<group>"; };
|
|
29
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
30
|
+
F11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = reactnativeuniversalkeyboardawarescrollview/AppDelegate.swift; sourceTree = "<group>"; };
|
|
31
|
+
F11748442D0722820044C1D9 /* reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h"; path = "reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
32
|
+
FF270B4C7A763C3AF1AB215F /* libPods-reactnativeuniversalkeyboardawarescrollview.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-reactnativeuniversalkeyboardawarescrollview.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
33
|
+
/* End PBXFileReference section */
|
|
34
|
+
|
|
35
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
36
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
37
|
+
isa = PBXFrameworksBuildPhase;
|
|
38
|
+
buildActionMask = 2147483647;
|
|
39
|
+
files = (
|
|
40
|
+
785E49FFBB8FA88C02C11028 /* libPods-reactnativeuniversalkeyboardawarescrollview.a in Frameworks */,
|
|
41
|
+
);
|
|
42
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
43
|
+
};
|
|
44
|
+
/* End PBXFrameworksBuildPhase section */
|
|
45
|
+
|
|
46
|
+
/* Begin PBXGroup section */
|
|
47
|
+
13B07FAE1A68108700A75B9A /* reactnativeuniversalkeyboardawarescrollview */ = {
|
|
48
|
+
isa = PBXGroup;
|
|
49
|
+
children = (
|
|
50
|
+
F11748412D0307B40044C1D9 /* AppDelegate.swift */,
|
|
51
|
+
F11748442D0722820044C1D9 /* reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h */,
|
|
52
|
+
BB2F792B24A3F905000567C9 /* Supporting */,
|
|
53
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
54
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
55
|
+
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
|
|
56
|
+
14903E3BF0BFEC9A2725379B /* PrivacyInfo.xcprivacy */,
|
|
57
|
+
);
|
|
58
|
+
name = reactnativeuniversalkeyboardawarescrollview;
|
|
59
|
+
sourceTree = "<group>";
|
|
60
|
+
};
|
|
61
|
+
1B3D0C666FB60964D52CC4AF /* ExpoModulesProviders */ = {
|
|
62
|
+
isa = PBXGroup;
|
|
63
|
+
children = (
|
|
64
|
+
5327AD1718C534763491A7A7 /* reactnativeuniversalkeyboardawarescrollview */,
|
|
65
|
+
);
|
|
66
|
+
name = ExpoModulesProviders;
|
|
67
|
+
sourceTree = "<group>";
|
|
68
|
+
};
|
|
69
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
70
|
+
isa = PBXGroup;
|
|
71
|
+
children = (
|
|
72
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
73
|
+
FF270B4C7A763C3AF1AB215F /* libPods-reactnativeuniversalkeyboardawarescrollview.a */,
|
|
74
|
+
);
|
|
75
|
+
name = Frameworks;
|
|
76
|
+
sourceTree = "<group>";
|
|
77
|
+
};
|
|
78
|
+
5327AD1718C534763491A7A7 /* reactnativeuniversalkeyboardawarescrollview */ = {
|
|
79
|
+
isa = PBXGroup;
|
|
80
|
+
children = (
|
|
81
|
+
BC9534922D6842C6E5BDB811 /* ExpoModulesProvider.swift */,
|
|
82
|
+
);
|
|
83
|
+
name = reactnativeuniversalkeyboardawarescrollview;
|
|
84
|
+
sourceTree = "<group>";
|
|
85
|
+
};
|
|
86
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
87
|
+
isa = PBXGroup;
|
|
88
|
+
children = (
|
|
89
|
+
);
|
|
90
|
+
name = Libraries;
|
|
91
|
+
sourceTree = "<group>";
|
|
92
|
+
};
|
|
93
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
94
|
+
isa = PBXGroup;
|
|
95
|
+
children = (
|
|
96
|
+
13B07FAE1A68108700A75B9A /* reactnativeuniversalkeyboardawarescrollview */,
|
|
97
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
98
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
99
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
100
|
+
AC64893226B0778AB7746C45 /* Pods */,
|
|
101
|
+
1B3D0C666FB60964D52CC4AF /* ExpoModulesProviders */,
|
|
102
|
+
);
|
|
103
|
+
indentWidth = 2;
|
|
104
|
+
sourceTree = "<group>";
|
|
105
|
+
tabWidth = 2;
|
|
106
|
+
usesTabs = 0;
|
|
107
|
+
};
|
|
108
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
109
|
+
isa = PBXGroup;
|
|
110
|
+
children = (
|
|
111
|
+
13B07F961A680F5B00A75B9A /* reactnativeuniversalkeyboardawarescrollview.app */,
|
|
112
|
+
);
|
|
113
|
+
name = Products;
|
|
114
|
+
sourceTree = "<group>";
|
|
115
|
+
};
|
|
116
|
+
AC64893226B0778AB7746C45 /* Pods */ = {
|
|
117
|
+
isa = PBXGroup;
|
|
118
|
+
children = (
|
|
119
|
+
C9A70A2C6A9BFC433C7BA870 /* Pods-reactnativeuniversalkeyboardawarescrollview.debug.xcconfig */,
|
|
120
|
+
DA27A6ACF420F4EBBC440842 /* Pods-reactnativeuniversalkeyboardawarescrollview.release.xcconfig */,
|
|
121
|
+
);
|
|
122
|
+
name = Pods;
|
|
123
|
+
path = Pods;
|
|
124
|
+
sourceTree = "<group>";
|
|
125
|
+
};
|
|
126
|
+
BB2F792B24A3F905000567C9 /* Supporting */ = {
|
|
127
|
+
isa = PBXGroup;
|
|
128
|
+
children = (
|
|
129
|
+
BB2F792C24A3F905000567C9 /* Expo.plist */,
|
|
130
|
+
);
|
|
131
|
+
name = Supporting;
|
|
132
|
+
path = reactnativeuniversalkeyboardawarescrollview/Supporting;
|
|
133
|
+
sourceTree = "<group>";
|
|
134
|
+
};
|
|
135
|
+
/* End PBXGroup section */
|
|
136
|
+
|
|
137
|
+
/* Begin PBXNativeTarget section */
|
|
138
|
+
13B07F861A680F5B00A75B9A /* reactnativeuniversalkeyboardawarescrollview */ = {
|
|
139
|
+
isa = PBXNativeTarget;
|
|
140
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativeuniversalkeyboardawarescrollview" */;
|
|
141
|
+
buildPhases = (
|
|
142
|
+
08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
|
|
143
|
+
DFB382BB79EB8681054D80D7 /* [Expo] Configure project */,
|
|
144
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
145
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
146
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
147
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
148
|
+
800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
|
|
149
|
+
72F117633427D5354BEE193D /* [CP] Embed Pods Frameworks */,
|
|
150
|
+
);
|
|
151
|
+
buildRules = (
|
|
152
|
+
);
|
|
153
|
+
dependencies = (
|
|
154
|
+
);
|
|
155
|
+
name = reactnativeuniversalkeyboardawarescrollview;
|
|
156
|
+
productName = reactnativeuniversalkeyboardawarescrollview;
|
|
157
|
+
productReference = 13B07F961A680F5B00A75B9A /* reactnativeuniversalkeyboardawarescrollview.app */;
|
|
158
|
+
productType = "com.apple.product-type.application";
|
|
159
|
+
};
|
|
160
|
+
/* End PBXNativeTarget section */
|
|
161
|
+
|
|
162
|
+
/* Begin PBXProject section */
|
|
163
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
164
|
+
isa = PBXProject;
|
|
165
|
+
attributes = {
|
|
166
|
+
LastUpgradeCheck = 1130;
|
|
167
|
+
TargetAttributes = {
|
|
168
|
+
13B07F861A680F5B00A75B9A = {
|
|
169
|
+
LastSwiftMigration = 1250;
|
|
170
|
+
};
|
|
171
|
+
};
|
|
172
|
+
};
|
|
173
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativeuniversalkeyboardawarescrollview" */;
|
|
174
|
+
compatibilityVersion = "Xcode 3.2";
|
|
175
|
+
developmentRegion = en;
|
|
176
|
+
hasScannedForEncodings = 0;
|
|
177
|
+
knownRegions = (
|
|
178
|
+
en,
|
|
179
|
+
Base,
|
|
180
|
+
);
|
|
181
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
182
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
183
|
+
projectDirPath = "";
|
|
184
|
+
projectRoot = "";
|
|
185
|
+
targets = (
|
|
186
|
+
13B07F861A680F5B00A75B9A /* reactnativeuniversalkeyboardawarescrollview */,
|
|
187
|
+
);
|
|
188
|
+
};
|
|
189
|
+
/* End PBXProject section */
|
|
190
|
+
|
|
191
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
192
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
193
|
+
isa = PBXResourcesBuildPhase;
|
|
194
|
+
buildActionMask = 2147483647;
|
|
195
|
+
files = (
|
|
196
|
+
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
|
|
197
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
198
|
+
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
|
|
199
|
+
DFE1E42DED41EC9BE3FB8E35 /* PrivacyInfo.xcprivacy in Resources */,
|
|
200
|
+
);
|
|
201
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
202
|
+
};
|
|
203
|
+
/* End PBXResourcesBuildPhase section */
|
|
204
|
+
|
|
205
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
206
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
207
|
+
isa = PBXShellScriptBuildPhase;
|
|
208
|
+
alwaysOutOfDate = 1;
|
|
209
|
+
buildActionMask = 2147483647;
|
|
210
|
+
files = (
|
|
211
|
+
);
|
|
212
|
+
inputPaths = (
|
|
213
|
+
"$(SRCROOT)/.xcode.env",
|
|
214
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
215
|
+
);
|
|
216
|
+
name = "Bundle React Native code and images";
|
|
217
|
+
outputPaths = (
|
|
218
|
+
);
|
|
219
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
220
|
+
shellPath = /bin/sh;
|
|
221
|
+
shellScript = "if [[ -f \"$PODS_ROOT/../.xcode.env\" ]]; then\n source \"$PODS_ROOT/../.xcode.env\"\nfi\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n# The project root by default is one level up from the ios directory\nexport PROJECT_ROOT=\"$PROJECT_DIR\"/..\n\nif [[ \"$CONFIGURATION\" = *Debug* ]]; then\n export SKIP_BUNDLING=1\nfi\nif [[ -z \"$ENTRY_FILE\" ]]; then\n # Set the entry JS file using the bundler's entry resolution.\n export ENTRY_FILE=\"$(\"$NODE_BINARY\" -e \"require('expo/scripts/resolveAppEntry')\" \"$PROJECT_ROOT\" ios absolute | tail -n 1)\"\nfi\n\nif [[ -z \"$CLI_PATH\" ]]; then\n # Use Expo CLI\n export CLI_PATH=\"$(\"$NODE_BINARY\" --print \"require.resolve('@expo/cli', { paths: [require.resolve('expo/package.json')] })\")\"\nfi\nif [[ -z \"$BUNDLE_COMMAND\" ]]; then\n # Default Expo CLI command for bundling\n export BUNDLE_COMMAND=\"export:embed\"\nfi\n\n# Source .xcode.env.updates if it exists to allow\n# SKIP_BUNDLING to be unset if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.updates\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.updates\"\nfi\n# Source local changes to allow overrides\n# if needed\nif [[ -f \"$PODS_ROOT/../.xcode.env.local\" ]]; then\n source \"$PODS_ROOT/../.xcode.env.local\"\nfi\n\n`\"$NODE_BINARY\" --print \"require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'\"`\n\n";
|
|
222
|
+
};
|
|
223
|
+
08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
|
|
224
|
+
isa = PBXShellScriptBuildPhase;
|
|
225
|
+
buildActionMask = 2147483647;
|
|
226
|
+
files = (
|
|
227
|
+
);
|
|
228
|
+
inputFileListPaths = (
|
|
229
|
+
);
|
|
230
|
+
inputPaths = (
|
|
231
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
232
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
233
|
+
);
|
|
234
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
235
|
+
outputFileListPaths = (
|
|
236
|
+
);
|
|
237
|
+
outputPaths = (
|
|
238
|
+
"$(DERIVED_FILE_DIR)/Pods-reactnativeuniversalkeyboardawarescrollview-checkManifestLockResult.txt",
|
|
239
|
+
);
|
|
240
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
241
|
+
shellPath = /bin/sh;
|
|
242
|
+
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
|
|
243
|
+
showEnvVarsInLog = 0;
|
|
244
|
+
};
|
|
245
|
+
72F117633427D5354BEE193D /* [CP] Embed Pods Frameworks */ = {
|
|
246
|
+
isa = PBXShellScriptBuildPhase;
|
|
247
|
+
buildActionMask = 2147483647;
|
|
248
|
+
files = (
|
|
249
|
+
);
|
|
250
|
+
inputPaths = (
|
|
251
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/Pods-reactnativeuniversalkeyboardawarescrollview-frameworks.sh",
|
|
252
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/React-Core-prebuilt/React.framework/React",
|
|
253
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/ReactNativeDependencies/ReactNativeDependencies.framework/ReactNativeDependencies",
|
|
254
|
+
"${PODS_XCFRAMEWORKS_BUILD_DIR}/hermes-engine/Pre-built/hermes.framework/hermes",
|
|
255
|
+
);
|
|
256
|
+
name = "[CP] Embed Pods Frameworks";
|
|
257
|
+
outputPaths = (
|
|
258
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/React.framework",
|
|
259
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/ReactNativeDependencies.framework",
|
|
260
|
+
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/hermes.framework",
|
|
261
|
+
);
|
|
262
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
263
|
+
shellPath = /bin/sh;
|
|
264
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/Pods-reactnativeuniversalkeyboardawarescrollview-frameworks.sh\"\n";
|
|
265
|
+
showEnvVarsInLog = 0;
|
|
266
|
+
};
|
|
267
|
+
800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
|
|
268
|
+
isa = PBXShellScriptBuildPhase;
|
|
269
|
+
buildActionMask = 2147483647;
|
|
270
|
+
files = (
|
|
271
|
+
);
|
|
272
|
+
inputPaths = (
|
|
273
|
+
"${PODS_ROOT}/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/Pods-reactnativeuniversalkeyboardawarescrollview-resources.sh",
|
|
274
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
|
|
275
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/ExpoConstants_privacy.bundle",
|
|
276
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/ExpoFileSystem/ExpoFileSystem_privacy.bundle",
|
|
277
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/React-Core_privacy.bundle",
|
|
278
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/React-cxxreact/React-cxxreact_privacy.bundle",
|
|
279
|
+
);
|
|
280
|
+
name = "[CP] Copy Pods Resources";
|
|
281
|
+
outputPaths = (
|
|
282
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
|
|
283
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoConstants_privacy.bundle",
|
|
284
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/ExpoFileSystem_privacy.bundle",
|
|
285
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-Core_privacy.bundle",
|
|
286
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/React-cxxreact_privacy.bundle",
|
|
287
|
+
);
|
|
288
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
289
|
+
shellPath = /bin/sh;
|
|
290
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/Pods-reactnativeuniversalkeyboardawarescrollview-resources.sh\"\n";
|
|
291
|
+
showEnvVarsInLog = 0;
|
|
292
|
+
};
|
|
293
|
+
DFB382BB79EB8681054D80D7 /* [Expo] Configure project */ = {
|
|
294
|
+
isa = PBXShellScriptBuildPhase;
|
|
295
|
+
alwaysOutOfDate = 1;
|
|
296
|
+
buildActionMask = 2147483647;
|
|
297
|
+
files = (
|
|
298
|
+
);
|
|
299
|
+
inputFileListPaths = (
|
|
300
|
+
);
|
|
301
|
+
inputPaths = (
|
|
302
|
+
"$(SRCROOT)/.xcode.env",
|
|
303
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
304
|
+
"$(SRCROOT)/reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview.entitlements",
|
|
305
|
+
"$(SRCROOT)/Pods/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/expo-configure-project.sh",
|
|
306
|
+
);
|
|
307
|
+
name = "[Expo] Configure project";
|
|
308
|
+
outputFileListPaths = (
|
|
309
|
+
);
|
|
310
|
+
outputPaths = (
|
|
311
|
+
"$(SRCROOT)/Pods/Target Support Files/Pods-reactnativeuniversalkeyboardawarescrollview/ExpoModulesProvider.swift",
|
|
312
|
+
);
|
|
313
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
314
|
+
shellPath = /bin/sh;
|
|
315
|
+
shellScript = "# This script configures Expo modules and generates the modules provider file.\nbash -l -c \"./Pods/Target\\ Support\\ Files/Pods-reactnativeuniversalkeyboardawarescrollview/expo-configure-project.sh\"\n";
|
|
316
|
+
};
|
|
317
|
+
/* End PBXShellScriptBuildPhase section */
|
|
318
|
+
|
|
319
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
320
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
321
|
+
isa = PBXSourcesBuildPhase;
|
|
322
|
+
buildActionMask = 2147483647;
|
|
323
|
+
files = (
|
|
324
|
+
F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,
|
|
325
|
+
64593E8332E6832562EC69DB /* ExpoModulesProvider.swift in Sources */,
|
|
326
|
+
);
|
|
327
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
328
|
+
};
|
|
329
|
+
/* End PBXSourcesBuildPhase section */
|
|
330
|
+
|
|
331
|
+
/* Begin XCBuildConfiguration section */
|
|
332
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
333
|
+
isa = XCBuildConfiguration;
|
|
334
|
+
baseConfigurationReference = C9A70A2C6A9BFC433C7BA870 /* Pods-reactnativeuniversalkeyboardawarescrollview.debug.xcconfig */;
|
|
335
|
+
buildSettings = {
|
|
336
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
337
|
+
CLANG_ENABLE_MODULES = YES;
|
|
338
|
+
CODE_SIGN_ENTITLEMENTS = reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview.entitlements;
|
|
339
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
340
|
+
ENABLE_BITCODE = NO;
|
|
341
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
342
|
+
"$(inherited)",
|
|
343
|
+
"FB_SONARKIT_ENABLED=1",
|
|
344
|
+
);
|
|
345
|
+
INFOPLIST_FILE = reactnativeuniversalkeyboardawarescrollview/Info.plist;
|
|
346
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
347
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
348
|
+
"$(inherited)",
|
|
349
|
+
"@executable_path/Frameworks",
|
|
350
|
+
);
|
|
351
|
+
MARKETING_VERSION = 1.0;
|
|
352
|
+
OTHER_LDFLAGS = (
|
|
353
|
+
"$(inherited)",
|
|
354
|
+
"-ObjC",
|
|
355
|
+
"-lc++",
|
|
356
|
+
);
|
|
357
|
+
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_DEBUG";
|
|
358
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.anonymous.reactnativeuniversalkeyboardawarescrollview;
|
|
359
|
+
PRODUCT_NAME = reactnativeuniversalkeyboardawarescrollview;
|
|
360
|
+
SWIFT_OBJC_BRIDGING_HEADER = "reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h";
|
|
361
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
362
|
+
SWIFT_VERSION = 5.0;
|
|
363
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
364
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
365
|
+
};
|
|
366
|
+
name = Debug;
|
|
367
|
+
};
|
|
368
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
369
|
+
isa = XCBuildConfiguration;
|
|
370
|
+
baseConfigurationReference = DA27A6ACF420F4EBBC440842 /* Pods-reactnativeuniversalkeyboardawarescrollview.release.xcconfig */;
|
|
371
|
+
buildSettings = {
|
|
372
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
373
|
+
CLANG_ENABLE_MODULES = YES;
|
|
374
|
+
CODE_SIGN_ENTITLEMENTS = reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview.entitlements;
|
|
375
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
376
|
+
INFOPLIST_FILE = reactnativeuniversalkeyboardawarescrollview/Info.plist;
|
|
377
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
378
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
379
|
+
"$(inherited)",
|
|
380
|
+
"@executable_path/Frameworks",
|
|
381
|
+
);
|
|
382
|
+
MARKETING_VERSION = 1.0;
|
|
383
|
+
OTHER_LDFLAGS = (
|
|
384
|
+
"$(inherited)",
|
|
385
|
+
"-ObjC",
|
|
386
|
+
"-lc++",
|
|
387
|
+
);
|
|
388
|
+
OTHER_SWIFT_FLAGS = "$(inherited) -D EXPO_CONFIGURATION_RELEASE";
|
|
389
|
+
PRODUCT_BUNDLE_IDENTIFIER = com.anonymous.reactnativeuniversalkeyboardawarescrollview;
|
|
390
|
+
PRODUCT_NAME = reactnativeuniversalkeyboardawarescrollview;
|
|
391
|
+
SWIFT_OBJC_BRIDGING_HEADER = "reactnativeuniversalkeyboardawarescrollview/reactnativeuniversalkeyboardawarescrollview-Bridging-Header.h";
|
|
392
|
+
SWIFT_VERSION = 5.0;
|
|
393
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
|
394
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
395
|
+
};
|
|
396
|
+
name = Release;
|
|
397
|
+
};
|
|
398
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
399
|
+
isa = XCBuildConfiguration;
|
|
400
|
+
buildSettings = {
|
|
401
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
402
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
403
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
404
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
405
|
+
CLANG_ENABLE_MODULES = YES;
|
|
406
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
407
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
408
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
409
|
+
CLANG_WARN_COMMA = YES;
|
|
410
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
411
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
412
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
413
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
414
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
415
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
416
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
417
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
418
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
419
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
420
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
421
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
422
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
423
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
424
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
425
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
426
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
427
|
+
COPY_PHASE_STRIP = NO;
|
|
428
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
429
|
+
ENABLE_TESTABILITY = YES;
|
|
430
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
431
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
432
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
433
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
434
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
435
|
+
"DEBUG=1",
|
|
436
|
+
"$(inherited)",
|
|
437
|
+
);
|
|
438
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
439
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
440
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
441
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
442
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
443
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
444
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
445
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
446
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
447
|
+
/usr/lib/swift,
|
|
448
|
+
"$(inherited)",
|
|
449
|
+
);
|
|
450
|
+
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
|
|
451
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
452
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
453
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
454
|
+
SDKROOT = iphoneos;
|
|
455
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
456
|
+
SWIFT_ENABLE_EXPLICIT_MODULES = NO;
|
|
457
|
+
USE_HERMES = true;
|
|
458
|
+
};
|
|
459
|
+
name = Debug;
|
|
460
|
+
};
|
|
461
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
462
|
+
isa = XCBuildConfiguration;
|
|
463
|
+
buildSettings = {
|
|
464
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
465
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
466
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
467
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
468
|
+
CLANG_ENABLE_MODULES = YES;
|
|
469
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
470
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
471
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
472
|
+
CLANG_WARN_COMMA = YES;
|
|
473
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
474
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
475
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
476
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
477
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
478
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
479
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
480
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
481
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
482
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
483
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
484
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
485
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
486
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
487
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
488
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
489
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
490
|
+
COPY_PHASE_STRIP = YES;
|
|
491
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
492
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
493
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
494
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
495
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
496
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
497
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
498
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
499
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
500
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
501
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
502
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
503
|
+
/usr/lib/swift,
|
|
504
|
+
"$(inherited)",
|
|
505
|
+
);
|
|
506
|
+
LIBRARY_SEARCH_PATHS = "$(SDKROOT)/usr/lib/swift\"$(inherited)\"";
|
|
507
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
508
|
+
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
509
|
+
SDKROOT = iphoneos;
|
|
510
|
+
SWIFT_ENABLE_EXPLICIT_MODULES = NO;
|
|
511
|
+
USE_HERMES = true;
|
|
512
|
+
VALIDATE_PRODUCT = YES;
|
|
513
|
+
};
|
|
514
|
+
name = Release;
|
|
515
|
+
};
|
|
516
|
+
/* End XCBuildConfiguration section */
|
|
517
|
+
|
|
518
|
+
/* Begin XCConfigurationList section */
|
|
519
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "reactnativeuniversalkeyboardawarescrollview" */ = {
|
|
520
|
+
isa = XCConfigurationList;
|
|
521
|
+
buildConfigurations = (
|
|
522
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
523
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
524
|
+
);
|
|
525
|
+
defaultConfigurationIsVisible = 0;
|
|
526
|
+
defaultConfigurationName = Release;
|
|
527
|
+
};
|
|
528
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "reactnativeuniversalkeyboardawarescrollview" */ = {
|
|
529
|
+
isa = XCConfigurationList;
|
|
530
|
+
buildConfigurations = (
|
|
531
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
532
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
533
|
+
);
|
|
534
|
+
defaultConfigurationIsVisible = 0;
|
|
535
|
+
defaultConfigurationName = Release;
|
|
536
|
+
};
|
|
537
|
+
/* End XCConfigurationList section */
|
|
538
|
+
};
|
|
539
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
540
|
+
}
|