@situaction/traquiste-mobile 1.0.0-next.2
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/.eslintrc.js +5 -0
- package/.releaserc +12 -0
- package/CLAUDE.md +25 -0
- package/README.md +124 -0
- package/app.json +5 -0
- package/bitbucket-pipelines.yml +81 -0
- package/build/components/Button/Button.d.ts +31 -0
- package/build/components/Button/Button.d.ts.map +1 -0
- package/build/components/Button/Button.js +67 -0
- package/build/components/Button/Button.js.map +1 -0
- package/build/components/Button/Button.stories.d.ts +19 -0
- package/build/components/Button/Button.stories.d.ts.map +1 -0
- package/build/components/Button/Button.stories.js +95 -0
- package/build/components/Button/Button.stories.js.map +1 -0
- package/build/components/Button/index.d.ts +3 -0
- package/build/components/Button/index.d.ts.map +1 -0
- package/build/components/Button/index.js +2 -0
- package/build/components/Button/index.js.map +1 -0
- package/build/components/ButtonAction/ButtonAction.d.ts +21 -0
- package/build/components/ButtonAction/ButtonAction.d.ts.map +1 -0
- package/build/components/ButtonAction/ButtonAction.js +35 -0
- package/build/components/ButtonAction/ButtonAction.js.map +1 -0
- package/build/components/ButtonAction/ButtonAction.stories.d.ts +13 -0
- package/build/components/ButtonAction/ButtonAction.stories.d.ts.map +1 -0
- package/build/components/ButtonAction/ButtonAction.stories.js +51 -0
- package/build/components/ButtonAction/ButtonAction.stories.js.map +1 -0
- package/build/components/ButtonAction/index.d.ts +3 -0
- package/build/components/ButtonAction/index.d.ts.map +1 -0
- package/build/components/ButtonAction/index.js +2 -0
- package/build/components/ButtonAction/index.js.map +1 -0
- package/build/components/ButtonMap/ButtonMap.d.ts +18 -0
- package/build/components/ButtonMap/ButtonMap.d.ts.map +1 -0
- package/build/components/ButtonMap/ButtonMap.js +17 -0
- package/build/components/ButtonMap/ButtonMap.js.map +1 -0
- package/build/components/ButtonMap/ButtonMap.stories.d.ts +12 -0
- package/build/components/ButtonMap/ButtonMap.stories.d.ts.map +1 -0
- package/build/components/ButtonMap/ButtonMap.stories.js +36 -0
- package/build/components/ButtonMap/ButtonMap.stories.js.map +1 -0
- package/build/components/ButtonMap/index.d.ts +3 -0
- package/build/components/ButtonMap/index.d.ts.map +1 -0
- package/build/components/ButtonMap/index.js +2 -0
- package/build/components/ButtonMap/index.js.map +1 -0
- package/build/components/ButtonMenu/ButtonMenu.d.ts +21 -0
- package/build/components/ButtonMenu/ButtonMenu.d.ts.map +1 -0
- package/build/components/ButtonMenu/ButtonMenu.js +56 -0
- package/build/components/ButtonMenu/ButtonMenu.js.map +1 -0
- package/build/components/ButtonMenu/ButtonMenu.stories.d.ts +15 -0
- package/build/components/ButtonMenu/ButtonMenu.stories.d.ts.map +1 -0
- package/build/components/ButtonMenu/ButtonMenu.stories.js +52 -0
- package/build/components/ButtonMenu/ButtonMenu.stories.js.map +1 -0
- package/build/components/ButtonMenu/index.d.ts +3 -0
- package/build/components/ButtonMenu/index.d.ts.map +1 -0
- package/build/components/ButtonMenu/index.js +2 -0
- package/build/components/ButtonMenu/index.js.map +1 -0
- package/build/components/FilterChip/FilterChip.d.ts +28 -0
- package/build/components/FilterChip/FilterChip.d.ts.map +1 -0
- package/build/components/FilterChip/FilterChip.js +66 -0
- package/build/components/FilterChip/FilterChip.js.map +1 -0
- package/build/components/FilterChip/FilterChip.stories.d.ts +15 -0
- package/build/components/FilterChip/FilterChip.stories.d.ts.map +1 -0
- package/build/components/FilterChip/FilterChip.stories.js +55 -0
- package/build/components/FilterChip/FilterChip.stories.js.map +1 -0
- package/build/components/FilterChip/index.d.ts +3 -0
- package/build/components/FilterChip/index.d.ts.map +1 -0
- package/build/components/FilterChip/index.js +2 -0
- package/build/components/FilterChip/index.js.map +1 -0
- package/build/constants/colors.d.ts +2 -0
- package/build/constants/colors.d.ts.map +1 -0
- package/build/constants/colors.js +3 -0
- package/build/constants/colors.js.map +1 -0
- package/build/context/ThemeContext.d.ts +30 -0
- package/build/context/ThemeContext.d.ts.map +1 -0
- package/build/context/ThemeContext.js +34 -0
- package/build/context/ThemeContext.js.map +1 -0
- package/build/index.d.ts +7 -0
- package/build/index.d.ts.map +1 -0
- package/build/index.js +8 -0
- package/build/index.js.map +1 -0
- package/build/theme/index.d.ts +5 -0
- package/build/theme/index.d.ts.map +1 -0
- package/build/theme/index.js +6 -0
- package/build/theme/index.js.map +1 -0
- package/build/theme/tokens/dark.d.ts +8 -0
- package/build/theme/tokens/dark.d.ts.map +1 -0
- package/build/theme/tokens/dark.js +146 -0
- package/build/theme/tokens/dark.js.map +1 -0
- package/build/theme/tokens/light.d.ts +8 -0
- package/build/theme/tokens/light.d.ts.map +1 -0
- package/build/theme/tokens/light.js +152 -0
- package/build/theme/tokens/light.js.map +1 -0
- package/build/theme/type.d.ts +75 -0
- package/build/theme/type.d.ts.map +1 -0
- package/build/theme/type.js +7 -0
- package/build/theme/type.js.map +1 -0
- package/docs/README.md +73 -0
- package/docs/eslint.config.js +22 -0
- package/docs/index.html +16 -0
- package/docs/package-lock.json +5578 -0
- package/docs/package.json +37 -0
- package/docs/public/favicon.svg +1 -0
- package/docs/public/icons.svg +24 -0
- package/docs/src/App.css +184 -0
- package/docs/src/App.tsx +38 -0
- package/docs/src/assets/hero.png +0 -0
- package/docs/src/assets/react.svg +1 -0
- package/docs/src/assets/vite.svg +1 -0
- package/docs/src/components/Layout.tsx +108 -0
- package/docs/src/components/LiveEditor.tsx +294 -0
- package/docs/src/components/PropsTable.tsx +101 -0
- package/docs/src/components/Sidebar.tsx +103 -0
- package/docs/src/components/TableOfContents.tsx +75 -0
- package/docs/src/context/ColorModeContext.tsx +34 -0
- package/docs/src/index.css +76 -0
- package/docs/src/lib/createComponentPage.tsx +270 -0
- package/docs/src/main.tsx +13 -0
- package/docs/src/pages/Examples.tsx +273 -0
- package/docs/src/pages/Home.tsx +70 -0
- package/docs/src/pages/components/button-action.ts +88 -0
- package/docs/src/pages/components/button-map.ts +67 -0
- package/docs/src/pages/components/button-menu.ts +90 -0
- package/docs/src/pages/components/button.ts +158 -0
- package/docs/src/pages/components/filter-chip.ts +109 -0
- package/docs/tsconfig.app.json +32 -0
- package/docs/tsconfig.json +7 -0
- package/docs/tsconfig.node.json +24 -0
- package/docs/vite.config.ts +18 -0
- package/ios/.xcode.env +11 -0
- package/ios/Podfile +63 -0
- package/ios/Podfile.properties.json +4 -0
- package/ios/situactiontraquistemobile/AppDelegate.swift +69 -0
- package/ios/situactiontraquistemobile/Images.xcassets/AppIcon.appiconset/Contents.json +13 -0
- package/ios/situactiontraquistemobile/Images.xcassets/Contents.json +6 -0
- package/ios/situactiontraquistemobile/Images.xcassets/SplashScreenLegacy.imageset/Contents.json +21 -0
- package/ios/situactiontraquistemobile/Images.xcassets/SplashScreenLegacy.imageset/SplashScreenLegacy.png +0 -0
- package/ios/situactiontraquistemobile/Info.plist +53 -0
- package/ios/situactiontraquistemobile/SplashScreen.storyboard +47 -0
- package/ios/situactiontraquistemobile/Supporting/Expo.plist +6 -0
- package/ios/situactiontraquistemobile/situactiontraquistemobile-Bridging-Header.h +3 -0
- package/ios/situactiontraquistemobile.xcodeproj/project.pbxproj +432 -0
- package/ios/situactiontraquistemobile.xcodeproj/xcshareddata/xcschemes/situactiontraquistemobile.xcscheme +88 -0
- package/jest.config.js +197 -0
- package/package.json +90 -0
- package/src/components/.gitkeep +0 -0
- package/src/components/Button/Button.stories.tsx +123 -0
- package/src/components/Button/Button.tsx +128 -0
- package/src/components/Button/index.ts +2 -0
- package/src/components/ButtonAction/ButtonAction.stories.tsx +67 -0
- package/src/components/ButtonAction/ButtonAction.tsx +67 -0
- package/src/components/ButtonAction/index.ts +2 -0
- package/src/components/ButtonMap/ButtonMap.stories.tsx +49 -0
- package/src/components/ButtonMap/ButtonMap.tsx +40 -0
- package/src/components/ButtonMap/index.ts +2 -0
- package/src/components/ButtonMenu/ButtonMenu.stories.tsx +68 -0
- package/src/components/ButtonMenu/ButtonMenu.tsx +97 -0
- package/src/components/ButtonMenu/index.ts +2 -0
- package/src/components/FilterChip/FilterChip.stories.tsx +71 -0
- package/src/components/FilterChip/FilterChip.tsx +124 -0
- package/src/components/FilterChip/index.ts +2 -0
- package/src/constants/colors.ts +2 -0
- package/src/context/ThemeContext.tsx +84 -0
- package/src/index.ts +23 -0
- package/src/theme/index.ts +20 -0
- package/src/theme/tokens/dark.ts +160 -0
- package/src/theme/tokens/light.ts +166 -0
- package/src/theme/type.ts +122 -0
- package/src/types/.gitkeep +0 -0
- package/src/utils/.gitkeep +0 -0
- package/tsconfig.json +9 -0
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
internal import Expo
|
|
2
|
+
import React
|
|
3
|
+
import ReactAppDependencyProvider
|
|
4
|
+
|
|
5
|
+
@main
|
|
6
|
+
class AppDelegate: ExpoAppDelegate {
|
|
7
|
+
var window: UIWindow?
|
|
8
|
+
|
|
9
|
+
var reactNativeDelegate: ExpoReactNativeFactoryDelegate?
|
|
10
|
+
var reactNativeFactory: RCTReactNativeFactory?
|
|
11
|
+
|
|
12
|
+
public override func application(
|
|
13
|
+
_ application: UIApplication,
|
|
14
|
+
didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? = nil
|
|
15
|
+
) -> Bool {
|
|
16
|
+
let delegate = ReactNativeDelegate()
|
|
17
|
+
let factory = ExpoReactNativeFactory(delegate: delegate)
|
|
18
|
+
delegate.dependencyProvider = RCTAppDependencyProvider()
|
|
19
|
+
|
|
20
|
+
reactNativeDelegate = delegate
|
|
21
|
+
reactNativeFactory = factory
|
|
22
|
+
|
|
23
|
+
#if os(iOS) || os(tvOS)
|
|
24
|
+
window = UIWindow(frame: UIScreen.main.bounds)
|
|
25
|
+
factory.startReactNative(
|
|
26
|
+
withModuleName: "main",
|
|
27
|
+
in: window,
|
|
28
|
+
launchOptions: launchOptions)
|
|
29
|
+
#endif
|
|
30
|
+
|
|
31
|
+
return super.application(application, didFinishLaunchingWithOptions: launchOptions)
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
// Linking API
|
|
35
|
+
public override func application(
|
|
36
|
+
_ app: UIApplication,
|
|
37
|
+
open url: URL,
|
|
38
|
+
options: [UIApplication.OpenURLOptionsKey: Any] = [:]
|
|
39
|
+
) -> Bool {
|
|
40
|
+
return super.application(app, open: url, options: options) || RCTLinkingManager.application(app, open: url, options: options)
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
// Universal Links
|
|
44
|
+
public override func application(
|
|
45
|
+
_ application: UIApplication,
|
|
46
|
+
continue userActivity: NSUserActivity,
|
|
47
|
+
restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void
|
|
48
|
+
) -> Bool {
|
|
49
|
+
let result = RCTLinkingManager.application(application, continue: userActivity, restorationHandler: restorationHandler)
|
|
50
|
+
return super.application(application, continue: userActivity, restorationHandler: restorationHandler) || result
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
class ReactNativeDelegate: ExpoReactNativeFactoryDelegate {
|
|
55
|
+
// Extension point for config-plugins
|
|
56
|
+
|
|
57
|
+
override func sourceURL(for bridge: RCTBridge) -> URL? {
|
|
58
|
+
// needed to return the correct URL for expo-dev-client.
|
|
59
|
+
bridge.bundleURL ?? bundleURL()
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
override func bundleURL() -> URL? {
|
|
63
|
+
#if DEBUG
|
|
64
|
+
return RCTBundleURLProvider.sharedSettings().jsBundleURL(forBundleRoot: ".expo/.virtual-metro-entry")
|
|
65
|
+
#else
|
|
66
|
+
return Bundle.main.url(forResource: "main", withExtension: "jsbundle")
|
|
67
|
+
#endif
|
|
68
|
+
}
|
|
69
|
+
}
|
package/ios/situactiontraquistemobile/Images.xcassets/SplashScreenLegacy.imageset/Contents.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"images" : [
|
|
3
|
+
{
|
|
4
|
+
"filename" : "SplashScreenLegacy.png",
|
|
5
|
+
"idiom" : "universal",
|
|
6
|
+
"scale" : "1x"
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
"idiom" : "universal",
|
|
10
|
+
"scale" : "2x"
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"idiom" : "universal",
|
|
14
|
+
"scale" : "3x"
|
|
15
|
+
}
|
|
16
|
+
],
|
|
17
|
+
"info" : {
|
|
18
|
+
"author" : "xcode",
|
|
19
|
+
"version" : 1
|
|
20
|
+
}
|
|
21
|
+
}
|
|
Binary file
|
|
@@ -0,0 +1,53 @@
|
|
|
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>CADisableMinimumFrameDurationOnPhone</key>
|
|
6
|
+
<true/>
|
|
7
|
+
<key>CFBundleDevelopmentRegion</key>
|
|
8
|
+
<string>$(DEVELOPMENT_LANGUAGE)</string>
|
|
9
|
+
<key>CFBundleExecutable</key>
|
|
10
|
+
<string>$(EXECUTABLE_NAME)</string>
|
|
11
|
+
<key>CFBundleIdentifier</key>
|
|
12
|
+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
|
|
13
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
14
|
+
<string>6.0</string>
|
|
15
|
+
<key>CFBundleName</key>
|
|
16
|
+
<string>$(PRODUCT_NAME)</string>
|
|
17
|
+
<key>CFBundlePackageType</key>
|
|
18
|
+
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
|
19
|
+
<key>CFBundleShortVersionString</key>
|
|
20
|
+
<string>1.0</string>
|
|
21
|
+
<key>CFBundleSignature</key>
|
|
22
|
+
<string>????</string>
|
|
23
|
+
<key>CFBundleVersion</key>
|
|
24
|
+
<string>1</string>
|
|
25
|
+
<key>LSRequiresIPhoneOS</key>
|
|
26
|
+
<true/>
|
|
27
|
+
<key>LSMinimumSystemVersion</key>
|
|
28
|
+
<string>12.0</string>
|
|
29
|
+
<key>NSAppTransportSecurity</key>
|
|
30
|
+
<dict>
|
|
31
|
+
<key>NSAllowsArbitraryLoads</key>
|
|
32
|
+
<false/>
|
|
33
|
+
<key>NSAllowsLocalNetworking</key>
|
|
34
|
+
<true/>
|
|
35
|
+
</dict>
|
|
36
|
+
<key>UILaunchStoryboardName</key>
|
|
37
|
+
<string>SplashScreen</string>
|
|
38
|
+
<key>UIRequiredDeviceCapabilities</key>
|
|
39
|
+
<array>
|
|
40
|
+
<string>arm64</string>
|
|
41
|
+
</array>
|
|
42
|
+
<key>UIStatusBarStyle</key>
|
|
43
|
+
<string>UIStatusBarStyleDefault</string>
|
|
44
|
+
<key>UISupportedInterfaceOrientations</key>
|
|
45
|
+
<array>
|
|
46
|
+
<string>UIInterfaceOrientationPortrait</string>
|
|
47
|
+
<string>UIInterfaceOrientationLandscapeLeft</string>
|
|
48
|
+
<string>UIInterfaceOrientationLandscapeRight</string>
|
|
49
|
+
</array>
|
|
50
|
+
<key>UIViewControllerBasedStatusBarAppearance</key>
|
|
51
|
+
<false/>
|
|
52
|
+
</dict>
|
|
53
|
+
</plist>
|
|
@@ -0,0 +1,47 @@
|
|
|
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
|
+
<!--View Controller-->
|
|
14
|
+
<scene sceneID="EXPO-SCENE-1">
|
|
15
|
+
<objects>
|
|
16
|
+
<viewController storyboardIdentifier="SplashScreenViewController" id="EXPO-VIEWCONTROLLER-1" sceneMemberID="viewController">
|
|
17
|
+
<view key="view" userInteractionEnabled="NO" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" id="EXPO-ContainerView" userLabel="ContainerView">
|
|
18
|
+
<rect key="frame" x="0.0" y="0.0" width="393" height="852"/>
|
|
19
|
+
<autoresizingMask key="autoresizingMask" flexibleMaxX="YES" flexibleMaxY="YES"/>
|
|
20
|
+
<subviews>
|
|
21
|
+
<imageView clipsSubviews="YES" userInteractionEnabled="NO" contentMode="scaleAspectFit" horizontalHuggingPriority="251" verticalHuggingPriority="251" image="SplashScreen" translatesAutoresizingMaskIntoConstraints="NO" id="EXPO-SplashScreen" userLabel="SplashScreen">
|
|
22
|
+
<rect key="frame" x="146.66666666666666" y="381" width="100" height="90.333333333333314"/>
|
|
23
|
+
<accessibility key="accessibilityConfiguration">
|
|
24
|
+
<accessibilityTraits key="traits" image="YES" notEnabled="YES"/>
|
|
25
|
+
</accessibility>
|
|
26
|
+
</imageView>
|
|
27
|
+
</subviews>
|
|
28
|
+
<viewLayoutGuide key="safeArea" id="Rmq-lb-GrQ"/>
|
|
29
|
+
<constraints>
|
|
30
|
+
<constraint firstItem="EXPO-SplashScreen" firstAttribute="centerY" secondItem="EXPO-ContainerView" secondAttribute="centerY" id="0VC-Wk-OaO"/>
|
|
31
|
+
<constraint firstItem="EXPO-SplashScreen" firstAttribute="centerX" secondItem="EXPO-ContainerView" secondAttribute="centerX" id="zR4-NK-mVN"/>
|
|
32
|
+
</constraints>
|
|
33
|
+
<color key="backgroundColor" systemColor="systemBackgroundColor"/>
|
|
34
|
+
</view>
|
|
35
|
+
</viewController>
|
|
36
|
+
<placeholder placeholderIdentifier="IBFirstResponder" id="EXPO-PLACEHOLDER-1" userLabel="First Responder" sceneMemberID="firstResponder"/>
|
|
37
|
+
</objects>
|
|
38
|
+
<point key="canvasLocation" x="0.0" y="0.0"/>
|
|
39
|
+
</scene>
|
|
40
|
+
</scenes>
|
|
41
|
+
<resources>
|
|
42
|
+
<image name="SplashScreenLogo" width="100" height="90.333335876464844"/>
|
|
43
|
+
<systemColor name="systemBackgroundColor">
|
|
44
|
+
<color white="1" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
|
|
45
|
+
</systemColor>
|
|
46
|
+
</resources>
|
|
47
|
+
</document>
|
|
@@ -0,0 +1,432 @@
|
|
|
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
|
+
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */ = {isa = PBXBuildFile; fileRef = BB2F792C24A3F905000567C9 /* Expo.plist */; };
|
|
13
|
+
F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F11748412D0307B40044C1D9 /* AppDelegate.swift */; };
|
|
14
|
+
/* End PBXBuildFile section */
|
|
15
|
+
|
|
16
|
+
/* Begin PBXFileReference section */
|
|
17
|
+
13B07F961A680F5B00A75B9A /* situactiontraquistemobile.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = situactiontraquistemobile.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
18
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Images.xcassets; path = situactiontraquistemobile/Images.xcassets; sourceTree = "<group>"; };
|
|
19
|
+
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = situactiontraquistemobile/Info.plist; sourceTree = "<group>"; };
|
|
20
|
+
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = SplashScreen.storyboard; path = situactiontraquistemobile/SplashScreen.storyboard; sourceTree = "<group>"; };
|
|
21
|
+
BB2F792C24A3F905000567C9 /* Expo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Expo.plist; sourceTree = "<group>"; };
|
|
22
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
23
|
+
F11748412D0307B40044C1D9 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = situactiontraquistemobile/AppDelegate.swift; sourceTree = "<group>"; };
|
|
24
|
+
F11748442D0722820044C1D9 /* situactiontraquistemobile-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "situactiontraquistemobile-Bridging-Header.h"; path = "situactiontraquistemobile/situactiontraquistemobile-Bridging-Header.h"; sourceTree = "<group>"; };
|
|
25
|
+
/* End PBXFileReference section */
|
|
26
|
+
|
|
27
|
+
/* Begin PBXFrameworksBuildPhase section */
|
|
28
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */ = {
|
|
29
|
+
isa = PBXFrameworksBuildPhase;
|
|
30
|
+
buildActionMask = 2147483647;
|
|
31
|
+
files = (
|
|
32
|
+
);
|
|
33
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
34
|
+
};
|
|
35
|
+
/* End PBXFrameworksBuildPhase section */
|
|
36
|
+
|
|
37
|
+
/* Begin PBXGroup section */
|
|
38
|
+
13B07FAE1A68108700A75B9A /* situactiontraquistemobile */ = {
|
|
39
|
+
isa = PBXGroup;
|
|
40
|
+
children = (
|
|
41
|
+
F11748412D0307B40044C1D9 /* AppDelegate.swift */,
|
|
42
|
+
F11748442D0722820044C1D9 /* situactiontraquistemobile-Bridging-Header.h */,
|
|
43
|
+
BB2F792B24A3F905000567C9 /* Supporting */,
|
|
44
|
+
13B07FB51A68108700A75B9A /* Images.xcassets */,
|
|
45
|
+
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
46
|
+
AA286B85B6C04FC6940260E9 /* SplashScreen.storyboard */,
|
|
47
|
+
);
|
|
48
|
+
name = situactiontraquistemobile;
|
|
49
|
+
sourceTree = "<group>";
|
|
50
|
+
};
|
|
51
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */ = {
|
|
52
|
+
isa = PBXGroup;
|
|
53
|
+
children = (
|
|
54
|
+
ED297162215061F000B7C4FE /* JavaScriptCore.framework */,
|
|
55
|
+
);
|
|
56
|
+
name = Frameworks;
|
|
57
|
+
sourceTree = "<group>";
|
|
58
|
+
};
|
|
59
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */ = {
|
|
60
|
+
isa = PBXGroup;
|
|
61
|
+
children = (
|
|
62
|
+
);
|
|
63
|
+
name = Libraries;
|
|
64
|
+
sourceTree = "<group>";
|
|
65
|
+
};
|
|
66
|
+
83CBB9F61A601CBA00E9B192 = {
|
|
67
|
+
isa = PBXGroup;
|
|
68
|
+
children = (
|
|
69
|
+
13B07FAE1A68108700A75B9A /* situactiontraquistemobile */,
|
|
70
|
+
832341AE1AAA6A7D00B99B32 /* Libraries */,
|
|
71
|
+
83CBBA001A601CBA00E9B192 /* Products */,
|
|
72
|
+
2D16E6871FA4F8E400B85C8A /* Frameworks */,
|
|
73
|
+
);
|
|
74
|
+
indentWidth = 2;
|
|
75
|
+
sourceTree = "<group>";
|
|
76
|
+
tabWidth = 2;
|
|
77
|
+
usesTabs = 0;
|
|
78
|
+
};
|
|
79
|
+
83CBBA001A601CBA00E9B192 /* Products */ = {
|
|
80
|
+
isa = PBXGroup;
|
|
81
|
+
children = (
|
|
82
|
+
13B07F961A680F5B00A75B9A /* situactiontraquistemobile.app */,
|
|
83
|
+
);
|
|
84
|
+
name = Products;
|
|
85
|
+
sourceTree = "<group>";
|
|
86
|
+
};
|
|
87
|
+
BB2F792B24A3F905000567C9 /* Supporting */ = {
|
|
88
|
+
isa = PBXGroup;
|
|
89
|
+
children = (
|
|
90
|
+
BB2F792C24A3F905000567C9 /* Expo.plist */,
|
|
91
|
+
);
|
|
92
|
+
name = Supporting;
|
|
93
|
+
path = situactiontraquistemobile/Supporting;
|
|
94
|
+
sourceTree = "<group>";
|
|
95
|
+
};
|
|
96
|
+
/* End PBXGroup section */
|
|
97
|
+
|
|
98
|
+
/* Begin PBXNativeTarget section */
|
|
99
|
+
13B07F861A680F5B00A75B9A /* situactiontraquistemobile */ = {
|
|
100
|
+
isa = PBXNativeTarget;
|
|
101
|
+
buildConfigurationList = 13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "situactiontraquistemobile" */;
|
|
102
|
+
buildPhases = (
|
|
103
|
+
08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */,
|
|
104
|
+
13B07F871A680F5B00A75B9A /* Sources */,
|
|
105
|
+
13B07F8C1A680F5B00A75B9A /* Frameworks */,
|
|
106
|
+
13B07F8E1A680F5B00A75B9A /* Resources */,
|
|
107
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */,
|
|
108
|
+
800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */,
|
|
109
|
+
);
|
|
110
|
+
buildRules = (
|
|
111
|
+
);
|
|
112
|
+
dependencies = (
|
|
113
|
+
);
|
|
114
|
+
name = situactiontraquistemobile;
|
|
115
|
+
productName = situactiontraquistemobile;
|
|
116
|
+
productReference = 13B07F961A680F5B00A75B9A /* situactiontraquistemobile.app */;
|
|
117
|
+
productType = "com.apple.product-type.application";
|
|
118
|
+
};
|
|
119
|
+
/* End PBXNativeTarget section */
|
|
120
|
+
|
|
121
|
+
/* Begin PBXProject section */
|
|
122
|
+
83CBB9F71A601CBA00E9B192 /* Project object */ = {
|
|
123
|
+
isa = PBXProject;
|
|
124
|
+
attributes = {
|
|
125
|
+
LastUpgradeCheck = 1130;
|
|
126
|
+
TargetAttributes = {
|
|
127
|
+
13B07F861A680F5B00A75B9A = {
|
|
128
|
+
LastSwiftMigration = 1250;
|
|
129
|
+
};
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
buildConfigurationList = 83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "situactiontraquistemobile" */;
|
|
133
|
+
compatibilityVersion = "Xcode 3.2";
|
|
134
|
+
developmentRegion = en;
|
|
135
|
+
hasScannedForEncodings = 0;
|
|
136
|
+
knownRegions = (
|
|
137
|
+
en,
|
|
138
|
+
Base,
|
|
139
|
+
);
|
|
140
|
+
mainGroup = 83CBB9F61A601CBA00E9B192;
|
|
141
|
+
productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */;
|
|
142
|
+
projectDirPath = "";
|
|
143
|
+
projectRoot = "";
|
|
144
|
+
targets = (
|
|
145
|
+
13B07F861A680F5B00A75B9A /* situactiontraquistemobile */,
|
|
146
|
+
);
|
|
147
|
+
};
|
|
148
|
+
/* End PBXProject section */
|
|
149
|
+
|
|
150
|
+
/* Begin PBXResourcesBuildPhase section */
|
|
151
|
+
13B07F8E1A680F5B00A75B9A /* Resources */ = {
|
|
152
|
+
isa = PBXResourcesBuildPhase;
|
|
153
|
+
buildActionMask = 2147483647;
|
|
154
|
+
files = (
|
|
155
|
+
BB2F792D24A3F905000567C9 /* Expo.plist in Resources */,
|
|
156
|
+
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
157
|
+
3E461D99554A48A4959DE609 /* SplashScreen.storyboard in Resources */,
|
|
158
|
+
);
|
|
159
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
160
|
+
};
|
|
161
|
+
/* End PBXResourcesBuildPhase section */
|
|
162
|
+
|
|
163
|
+
/* Begin PBXShellScriptBuildPhase section */
|
|
164
|
+
00DD1BFF1BD5951E006B06BC /* Bundle React Native code and images */ = {
|
|
165
|
+
isa = PBXShellScriptBuildPhase;
|
|
166
|
+
alwaysOutOfDate = 1;
|
|
167
|
+
buildActionMask = 2147483647;
|
|
168
|
+
files = (
|
|
169
|
+
);
|
|
170
|
+
inputPaths = (
|
|
171
|
+
"$(SRCROOT)/.xcode.env",
|
|
172
|
+
"$(SRCROOT)/.xcode.env.local",
|
|
173
|
+
);
|
|
174
|
+
name = "Bundle React Native code and images";
|
|
175
|
+
outputPaths = (
|
|
176
|
+
);
|
|
177
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
178
|
+
shellPath = /bin/sh;
|
|
179
|
+
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";
|
|
180
|
+
};
|
|
181
|
+
08A4A3CD28434E44B6B9DE2E /* [CP] Check Pods Manifest.lock */ = {
|
|
182
|
+
isa = PBXShellScriptBuildPhase;
|
|
183
|
+
buildActionMask = 2147483647;
|
|
184
|
+
files = (
|
|
185
|
+
);
|
|
186
|
+
inputFileListPaths = (
|
|
187
|
+
);
|
|
188
|
+
inputPaths = (
|
|
189
|
+
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
|
|
190
|
+
"${PODS_ROOT}/Manifest.lock",
|
|
191
|
+
);
|
|
192
|
+
name = "[CP] Check Pods Manifest.lock";
|
|
193
|
+
outputFileListPaths = (
|
|
194
|
+
);
|
|
195
|
+
outputPaths = (
|
|
196
|
+
"$(DERIVED_FILE_DIR)/Pods-situactiontraquistemobile-checkManifestLockResult.txt",
|
|
197
|
+
);
|
|
198
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
199
|
+
shellPath = /bin/sh;
|
|
200
|
+
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";
|
|
201
|
+
showEnvVarsInLog = 0;
|
|
202
|
+
};
|
|
203
|
+
800E24972A6A228C8D4807E9 /* [CP] Copy Pods Resources */ = {
|
|
204
|
+
isa = PBXShellScriptBuildPhase;
|
|
205
|
+
buildActionMask = 2147483647;
|
|
206
|
+
files = (
|
|
207
|
+
);
|
|
208
|
+
inputPaths = (
|
|
209
|
+
"${PODS_ROOT}/Target Support Files/Pods-situactiontraquistemobile/Pods-situactiontraquistemobile-resources.sh",
|
|
210
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/EXConstants/EXConstants.bundle",
|
|
211
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/EXUpdates/EXUpdates.bundle",
|
|
212
|
+
"${PODS_CONFIGURATION_BUILD_DIR}/React-Core/RCTI18nStrings.bundle",
|
|
213
|
+
);
|
|
214
|
+
name = "[CP] Copy Pods Resources";
|
|
215
|
+
outputPaths = (
|
|
216
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXConstants.bundle",
|
|
217
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EXUpdates.bundle",
|
|
218
|
+
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RCTI18nStrings.bundle",
|
|
219
|
+
);
|
|
220
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
221
|
+
shellPath = /bin/sh;
|
|
222
|
+
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-situactiontraquistemobile/Pods-situactiontraquistemobile-resources.sh\"\n";
|
|
223
|
+
showEnvVarsInLog = 0;
|
|
224
|
+
};
|
|
225
|
+
/* End PBXShellScriptBuildPhase section */
|
|
226
|
+
|
|
227
|
+
/* Begin PBXSourcesBuildPhase section */
|
|
228
|
+
13B07F871A680F5B00A75B9A /* Sources */ = {
|
|
229
|
+
isa = PBXSourcesBuildPhase;
|
|
230
|
+
buildActionMask = 2147483647;
|
|
231
|
+
files = (
|
|
232
|
+
F11748422D0307B40044C1D9 /* AppDelegate.swift in Sources */,
|
|
233
|
+
);
|
|
234
|
+
runOnlyForDeploymentPostprocessing = 0;
|
|
235
|
+
};
|
|
236
|
+
/* End PBXSourcesBuildPhase section */
|
|
237
|
+
|
|
238
|
+
/* Begin XCBuildConfiguration section */
|
|
239
|
+
13B07F941A680F5B00A75B9A /* Debug */ = {
|
|
240
|
+
isa = XCBuildConfiguration;
|
|
241
|
+
buildSettings = {
|
|
242
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
243
|
+
CLANG_ENABLE_MODULES = YES;
|
|
244
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
245
|
+
ENABLE_BITCODE = NO;
|
|
246
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
247
|
+
"$(inherited)",
|
|
248
|
+
"FB_SONARKIT_ENABLED=1",
|
|
249
|
+
);
|
|
250
|
+
INFOPLIST_FILE = situactiontraquistemobile/Info.plist;
|
|
251
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
252
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
253
|
+
"$(inherited)",
|
|
254
|
+
"@executable_path/Frameworks",
|
|
255
|
+
);
|
|
256
|
+
MARKETING_VERSION = 1.0;
|
|
257
|
+
OTHER_LDFLAGS = (
|
|
258
|
+
"$(inherited)",
|
|
259
|
+
"-ObjC",
|
|
260
|
+
"-lc++",
|
|
261
|
+
);
|
|
262
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.name.situactiontraquistemobile;
|
|
263
|
+
PRODUCT_NAME = situactiontraquistemobile;
|
|
264
|
+
SWIFT_OBJC_BRIDGING_HEADER = "situactiontraquistemobile/situactiontraquistemobile-Bridging-Header.h";
|
|
265
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
|
266
|
+
SWIFT_VERSION = 5.0;
|
|
267
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
268
|
+
};
|
|
269
|
+
name = Debug;
|
|
270
|
+
};
|
|
271
|
+
13B07F951A680F5B00A75B9A /* Release */ = {
|
|
272
|
+
isa = XCBuildConfiguration;
|
|
273
|
+
buildSettings = {
|
|
274
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
275
|
+
CLANG_ENABLE_MODULES = YES;
|
|
276
|
+
CURRENT_PROJECT_VERSION = 1;
|
|
277
|
+
INFOPLIST_FILE = situactiontraquistemobile/Info.plist;
|
|
278
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
279
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
280
|
+
"$(inherited)",
|
|
281
|
+
"@executable_path/Frameworks",
|
|
282
|
+
);
|
|
283
|
+
MARKETING_VERSION = 1.0;
|
|
284
|
+
OTHER_LDFLAGS = (
|
|
285
|
+
"$(inherited)",
|
|
286
|
+
"-ObjC",
|
|
287
|
+
"-lc++",
|
|
288
|
+
);
|
|
289
|
+
PRODUCT_BUNDLE_IDENTIFIER = org.name.situactiontraquistemobile;
|
|
290
|
+
PRODUCT_NAME = situactiontraquistemobile;
|
|
291
|
+
SWIFT_OBJC_BRIDGING_HEADER = "situactiontraquistemobile/situactiontraquistemobile-Bridging-Header.h";
|
|
292
|
+
SWIFT_VERSION = 5.0;
|
|
293
|
+
VERSIONING_SYSTEM = "apple-generic";
|
|
294
|
+
};
|
|
295
|
+
name = Release;
|
|
296
|
+
};
|
|
297
|
+
83CBBA201A601CBA00E9B192 /* Debug */ = {
|
|
298
|
+
isa = XCBuildConfiguration;
|
|
299
|
+
buildSettings = {
|
|
300
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
301
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
302
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
303
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
304
|
+
CLANG_ENABLE_MODULES = YES;
|
|
305
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
306
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
307
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
308
|
+
CLANG_WARN_COMMA = YES;
|
|
309
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
310
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
311
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
312
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
313
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
314
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
315
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
316
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
317
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
318
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
319
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
320
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
321
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
322
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
323
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
324
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
325
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
326
|
+
COPY_PHASE_STRIP = NO;
|
|
327
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
328
|
+
ENABLE_TESTABILITY = YES;
|
|
329
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
330
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
|
331
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
332
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
|
333
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
|
334
|
+
"DEBUG=1",
|
|
335
|
+
"$(inherited)",
|
|
336
|
+
);
|
|
337
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
|
338
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
339
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
340
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
341
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
342
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
343
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
344
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
345
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
346
|
+
/usr/lib/swift,
|
|
347
|
+
"$(inherited)",
|
|
348
|
+
);
|
|
349
|
+
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
|
350
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
|
351
|
+
ONLY_ACTIVE_ARCH = YES;
|
|
352
|
+
SDKROOT = iphoneos;
|
|
353
|
+
};
|
|
354
|
+
name = Debug;
|
|
355
|
+
};
|
|
356
|
+
83CBBA211A601CBA00E9B192 /* Release */ = {
|
|
357
|
+
isa = XCBuildConfiguration;
|
|
358
|
+
buildSettings = {
|
|
359
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
360
|
+
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
361
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
362
|
+
CLANG_CXX_LIBRARY = "libc++";
|
|
363
|
+
CLANG_ENABLE_MODULES = YES;
|
|
364
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
|
365
|
+
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
|
|
366
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
|
367
|
+
CLANG_WARN_COMMA = YES;
|
|
368
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
|
369
|
+
CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
|
|
370
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
|
371
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
|
372
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
|
373
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
|
374
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
|
375
|
+
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
|
|
376
|
+
CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
|
|
377
|
+
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
|
|
378
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
|
379
|
+
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
|
|
380
|
+
CLANG_WARN_STRICT_PROTOTYPES = YES;
|
|
381
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
|
382
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
|
383
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
|
384
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
|
385
|
+
COPY_PHASE_STRIP = YES;
|
|
386
|
+
ENABLE_NS_ASSERTIONS = NO;
|
|
387
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
|
388
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
|
389
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
|
390
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
|
391
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
|
392
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
|
393
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
|
394
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
|
395
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
|
396
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
397
|
+
LD_RUNPATH_SEARCH_PATHS = (
|
|
398
|
+
/usr/lib/swift,
|
|
399
|
+
"$(inherited)",
|
|
400
|
+
);
|
|
401
|
+
LIBRARY_SEARCH_PATHS = "\"$(inherited)\"";
|
|
402
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
|
403
|
+
SDKROOT = iphoneos;
|
|
404
|
+
VALIDATE_PRODUCT = YES;
|
|
405
|
+
};
|
|
406
|
+
name = Release;
|
|
407
|
+
};
|
|
408
|
+
/* End XCBuildConfiguration section */
|
|
409
|
+
|
|
410
|
+
/* Begin XCConfigurationList section */
|
|
411
|
+
13B07F931A680F5B00A75B9A /* Build configuration list for PBXNativeTarget "situactiontraquistemobile" */ = {
|
|
412
|
+
isa = XCConfigurationList;
|
|
413
|
+
buildConfigurations = (
|
|
414
|
+
13B07F941A680F5B00A75B9A /* Debug */,
|
|
415
|
+
13B07F951A680F5B00A75B9A /* Release */,
|
|
416
|
+
);
|
|
417
|
+
defaultConfigurationIsVisible = 0;
|
|
418
|
+
defaultConfigurationName = Release;
|
|
419
|
+
};
|
|
420
|
+
83CBB9FA1A601CBA00E9B192 /* Build configuration list for PBXProject "situactiontraquistemobile" */ = {
|
|
421
|
+
isa = XCConfigurationList;
|
|
422
|
+
buildConfigurations = (
|
|
423
|
+
83CBBA201A601CBA00E9B192 /* Debug */,
|
|
424
|
+
83CBBA211A601CBA00E9B192 /* Release */,
|
|
425
|
+
);
|
|
426
|
+
defaultConfigurationIsVisible = 0;
|
|
427
|
+
defaultConfigurationName = Release;
|
|
428
|
+
};
|
|
429
|
+
/* End XCConfigurationList section */
|
|
430
|
+
};
|
|
431
|
+
rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */;
|
|
432
|
+
}
|