@xrnjs/app-template 0.0.7 → 0.1.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/$package.json +30 -36
- package/android/app/build.gradle +56 -73
- package/android/app/src/debug/java/com/xrn/template/ReactNativeFlipper.java +23 -44
- package/android/app/src/main/assets/xrn-manifest.json +1 -1
- package/android/app/src/main/java/com/xrn/template/MainApplication.kt +54 -65
- package/android/app/src/main/java/com/xrn/template/multibundle/CodePushBundleActivity.kt +65 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/CodePushJSBundleLoader.kt +18 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/CodePushUtils.kt +263 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XBundleTool.kt +9 -0
- package/android/app/src/main/java/com/xrn/template/multibundle/XRNReactHostDelegate.kt +56 -0
- package/android/app/src/main/java/com/xrn/template/navigation/XBundleActivity.kt +10 -7
- package/android/app/src/main/res/raw/bundle_config.json +2 -6
- package/android/build.gradle +40 -39
- package/android/buildSrc/build.gradle.kts +15 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +3 -1
- package/android/gradle.properties +17 -10
- package/android/settings.gradle +40 -12
- package/harmony/.clang-tidy +1 -1
- package/harmony/.clangd +3 -1
- package/harmony/AppScope/app.json5 +1 -1
- package/harmony/build-profile.json5 +8 -8
- package/harmony/entry/oh-package-lock.json5 +283 -262
- package/harmony/entry/oh-package.json5 +35 -36
- package/harmony/entry/src/main/cpp/CMakeLists.txt +37 -17
- package/harmony/entry/src/main/cpp/PackageProvider.cpp +20 -2
- package/harmony/entry/src/main/cpp/generated/BundleNavigation.cpp +3 -0
- package/harmony/entry/src/main/cpp/generated/RNOHGeneratedPackage.h +31 -87
- package/harmony/entry/src/main/cpp/generated/RTNCodePush.cpp +7 -1
- package/harmony/entry/src/main/cpp/generated/XRNBundleModule.cpp +9 -0
- package/harmony/entry/src/main/cpp/generated/XRNDebugToolsModule.cpp +10 -0
- package/harmony/entry/src/main/cpp/generated/{ImageResizer.cpp → XRNImageView.cpp} +6 -3
- package/harmony/entry/src/main/cpp/generated/{ImageResizer.h → XRNImageView.h} +2 -2
- package/harmony/entry/src/main/cpp/generated/{RNCWebViewComponentDescriptor.h → XRNImageViewComponentDescriptor.h} +11 -10
- package/harmony/entry/src/main/cpp/generated/XRNImageViewJSIBinder.h +58 -0
- package/harmony/entry/src/main/cpp/generated/XRNKeyboard.cpp +23 -0
- package/harmony/entry/src/main/cpp/generated/{RNLocalize.h → XRNKeyboard.h} +2 -2
- package/harmony/entry/src/main/cpp/generated/XRNNavigation.cpp +5 -0
- package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.cpp → XRNNetworkModule.cpp} +2 -4
- package/harmony/entry/src/main/cpp/generated/{RNCWebViewModule.h → XRNNetworkModule.h} +2 -2
- package/harmony/entry/src/main/ets/BundleHelper.ets +41 -45
- package/harmony/entry/src/main/ets/MainAbilityStage.ets +9 -4
- package/harmony/entry/src/main/ets/entryability/EntryAbility.ets +1 -1
- package/harmony/entry/src/main/ets/navDestination/BizModuleContainer.ets +2 -2
- package/harmony/entry/src/main/ets/navDestination/MainModuleContainer.ets +2 -2
- package/harmony/entry/src/main/ets/navDestination/Splash.ets +1 -2
- package/harmony/entry/src/main/ets/pages/Index.ets +4 -4
- package/harmony/entry/src/main/resources/rawfile/bundle_config.json5 +2 -6
- package/harmony/entry/src/main/resources/rawfile/xrn-manifest.json +1 -0
- package/harmony/oh-package-lock.json5 +2 -1
- package/harmony/oh-package.json5 +12 -4
- package/index.ts +0 -0
- package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.h +16 -0
- package/ios/BundleEventCenter/Hooks/XRNCustomKeyborad+XTHooks.mm +40 -0
- package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.h +15 -0
- package/ios/BundleEventCenter/Hooks/XTIQKeyboardManagerBridge.m +22 -0
- package/ios/BundleEventCenter/XTBundleProvider.m +98 -72
- package/ios/BundleEventCenter/XTBundleViewControllerFactory.m +4 -15
- package/ios/BundleEventCenter/bundleController/XTBundleViewController.mm +43 -0
- package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.mm +48 -0
- package/ios/BundleEventCenter/bundleController/xtBundles.plist +1 -1
- package/ios/Podfile +234 -151
- package/ios/Podfile.lock +2810 -594
- package/ios/RNDebug/DebugPlugin/XTPluginManage.m +5 -5
- package/ios/RNDebug/MotroTools/XTMetroAutoConnector.h +21 -0
- package/ios/RNDebug/MotroTools/XTMetroAutoConnector.m +124 -0
- package/ios/RNDebug/MotroTools/XTReloadCommandHelper.h +30 -0
- package/ios/RNDebug/MotroTools/XTReloadCommandHelper.mm +128 -0
- package/ios/RNDebug/Views/XTScanQRPlugin.swift +9 -4
- package/ios/XRNTemplate/AppDelegate.h +3 -3
- package/ios/XRNTemplate/AppDelegate.mm +40 -102
- package/ios/XRNTemplate/Info.plist +4 -4
- package/ios/XRNTemplate/PrivacyInfo.xcprivacy +48 -0
- package/ios/XRNTemplate-Bridging-Header.h +2 -1
- package/ios/XRNTemplate.xcodeproj/project.pbxproj +68 -77
- package/ios/ios_patches/fixed_glog_config.h +195 -0
- package/ios/ios_patches/xt_IQKeyboardManager+Position.swift +1341 -0
- package/ios/ios_patches/xt_IQKeyboardManager.swift +454 -0
- package/ios/subBundles/.gitkeep +0 -0
- package/main-bundle/babel.config.js +2 -2
- package/main-bundle/package.json +11 -20
- package/main-bundle/yarn.lock +14655 -9651
- package/metro.config.js +21 -0
- package/package.json +2 -2
- package/react-native.config.js +3 -45
- package/src/.gitkeep +0 -0
- package/sub-bundle/babel.config.js +2 -2
- package/sub-bundle/package.json +11 -20
- package/sub-bundle/react-native.config.js +4 -0
- package/sub-bundle/yarn.lock +14655 -9651
- package/xrn.config.json +12 -12
- package/android/app/src/main/java/com/xrn/template/multibundle/XDevSupportParams.kt +0 -6
- package/android/app/src/main/java/com/xrn/template/multibundle/XRNHostParams.kt +0 -82
- package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.cpp +0 -21
- package/harmony/entry/src/main/cpp/generated/ConfigNativeModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.cpp +0 -21
- package/harmony/entry/src/main/cpp/generated/GetRandomValuesNativeModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.cpp +0 -22
- package/harmony/entry/src/main/cpp/generated/NativeHarmonyTouchId.h +0 -21
- package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.cpp +0 -31
- package/harmony/entry/src/main/cpp/generated/OreitationLockerNativeModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.cpp +0 -28
- package/harmony/entry/src/main/cpp/generated/RNCCameraRoll.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.cpp +0 -26
- package/harmony/entry/src/main/cpp/generated/RNCCameraRollPermission.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNCWebViewJSIBinder.h +0 -120
- package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.cpp +0 -164
- package/harmony/entry/src/main/cpp/generated/RNDeviceInfo.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.cpp +0 -24
- package/harmony/entry/src/main/cpp/generated/RNDocumentPicker.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonComponentDescriptor.h +0 -43
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerButtonJSIBinder.h +0 -38
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.cpp +0 -28
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewComponentDescriptor.h +0 -43
- package/harmony/entry/src/main/cpp/generated/RNGestureHandlerRootViewJSIBinder.h +0 -31
- package/harmony/entry/src/main/cpp/generated/RNLocalize.cpp +0 -31
- package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.cpp +0 -51
- package/harmony/entry/src/main/cpp/generated/ReactNativeBlobUtil.h +0 -21
- package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.cpp +0 -21
- package/harmony/entry/src/main/cpp/generated/XRNAssetLoaderModule.h +0 -21
- package/harmony/entry/src/main/cpp/generated/XRNFileModule.cpp +0 -22
- package/harmony/entry/src/main/cpp/generated/XRNFileModule.h +0 -21
- package/ios/BundleEventCenter/bundleController/XTBundleViewController.m +0 -35
- package/ios/BundleEventCenter/bundleController/XTMainBundleViewController.m +0 -41
- package/main-bundle/.watchmanconfig +0 -1
- package/sub-bundle/.watchmanconfig +0 -1
|
@@ -12,17 +12,22 @@
|
|
|
12
12
|
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB01A68108700A75B9A /* AppDelegate.mm */; };
|
|
13
13
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 13B07FB51A68108700A75B9A /* Images.xcassets */; };
|
|
14
14
|
13B07FC11A68108700A75B9A /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B07FB71A68108700A75B9A /* main.m */; };
|
|
15
|
-
|
|
15
|
+
3C1075882F7E69B600904006 /* XRNCustomKeyborad+XTHooks.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3C1075872F7E69B600904006 /* XRNCustomKeyborad+XTHooks.mm */; };
|
|
16
|
+
69C704442E13D35200ADBBDB /* XTBundleViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69C7042F2E13D35200ADBBDB /* XTBundleViewController.mm */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; };
|
|
16
17
|
69C704452E13D35200ADBBDB /* XTScanQRPlugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69C7043E2E13D35200ADBBDB /* XTScanQRPlugin.swift */; };
|
|
17
18
|
69C704462E13D35200ADBBDB /* XTSuspendBall.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C704402E13D35200ADBBDB /* XTSuspendBall.m */; };
|
|
18
|
-
69C704482E13D35200ADBBDB /* XTMainBundleViewController.
|
|
19
|
+
69C704482E13D35200ADBBDB /* XTMainBundleViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = 69C704312E13D35200ADBBDB /* XTMainBundleViewController.mm */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; };
|
|
19
20
|
69C704492E13D35200ADBBDB /* XTPluginManage.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C7043B2E13D35200ADBBDB /* XTPluginManage.m */; };
|
|
20
21
|
69C7044A2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69C7043D2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift */; };
|
|
21
22
|
69C7044B2E13D35200ADBBDB /* XTBundleViewControllerFactory.m in Sources */ = {isa = PBXBuildFile; fileRef = 69C704382E13D35200ADBBDB /* XTBundleViewControllerFactory.m */; };
|
|
22
23
|
69C7044C2E13D35200ADBBDB /* xtBundles.plist in Resources */ = {isa = PBXBuildFile; fileRef = 69C7042D2E13D35200ADBBDB /* xtBundles.plist */; };
|
|
23
24
|
69E6DB042E4B1E35007F02A4 /* XTBundleProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = 69E6DB032E4B1E35007F02A4 /* XTBundleProvider.m */; };
|
|
25
|
+
701440A31193EFD481073816 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 20D5894F90E0467C41AFD3DC /* PrivacyInfo.xcprivacy */; };
|
|
24
26
|
7699B88040F8A987B510C191 /* libPods-XRNTemplate-XRNTemplateTests.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 19F6CBCC0A4E27FBF8BF4A61 /* libPods-XRNTemplate-XRNTemplateTests.a */; };
|
|
25
27
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */; };
|
|
28
|
+
A1F2E3D42E84000300F16D60 /* XTIQKeyboardManagerBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F2E3D42E84000200F16D60 /* XTIQKeyboardManagerBridge.m */; };
|
|
29
|
+
A1F2E3D72E8A110100F16D60 /* XTReloadCommandHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1F2E3D62E8A110100F16D60 /* XTReloadCommandHelper.mm */; settings = {COMPILER_FLAGS = "-x objective-c++"; }; };
|
|
30
|
+
A1F2E3DB2E8A220100F16D60 /* XTMetroAutoConnector.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F2E3DA2E8A220100F16D60 /* XTMetroAutoConnector.m */; };
|
|
26
31
|
/* End PBXBuildFile section */
|
|
27
32
|
|
|
28
33
|
/* Begin PBXContainerItemProxy section */
|
|
@@ -46,16 +51,19 @@
|
|
|
46
51
|
13B07FB61A68108700A75B9A /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = XRNTemplate/Info.plist; sourceTree = "<group>"; };
|
|
47
52
|
13B07FB71A68108700A75B9A /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = XRNTemplate/main.m; sourceTree = "<group>"; };
|
|
48
53
|
19F6CBCC0A4E27FBF8BF4A61 /* libPods-XRNTemplate-XRNTemplateTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-XRNTemplate-XRNTemplateTests.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
54
|
+
20D5894F90E0467C41AFD3DC /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = XRNTemplate/PrivacyInfo.xcprivacy; sourceTree = "<group>"; };
|
|
49
55
|
29593CFF2BA7796694DDE3DC /* Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig"; path = "Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests.staging.xcconfig"; sourceTree = "<group>"; };
|
|
50
56
|
3B4392A12AC88292D35C810B /* Pods-XRNTemplate.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate.debug.xcconfig"; path = "Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate.debug.xcconfig"; sourceTree = "<group>"; };
|
|
57
|
+
3C1075862F7E69B600904006 /* XRNCustomKeyborad+XTHooks.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XRNCustomKeyborad+XTHooks.h"; sourceTree = "<group>"; };
|
|
58
|
+
3C1075872F7E69B600904006 /* XRNCustomKeyborad+XTHooks.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = "XRNCustomKeyborad+XTHooks.mm"; sourceTree = "<group>"; };
|
|
51
59
|
5709B34CF0A7D63546082F79 /* Pods-XRNTemplate.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate.release.xcconfig"; path = "Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate.release.xcconfig"; sourceTree = "<group>"; };
|
|
52
60
|
5B7EB9410499542E8C5724F5 /* Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig"; path = "Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests.debug.xcconfig"; sourceTree = "<group>"; };
|
|
53
61
|
5DCACB8F33CDC322A6C60F78 /* libPods-XRNTemplate.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-XRNTemplate.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
|
54
62
|
69C7042D2E13D35200ADBBDB /* xtBundles.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = xtBundles.plist; sourceTree = "<group>"; };
|
|
55
63
|
69C7042E2E13D35200ADBBDB /* XTBundleViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTBundleViewController.h; sourceTree = "<group>"; };
|
|
56
|
-
69C7042F2E13D35200ADBBDB /* XTBundleViewController.
|
|
64
|
+
69C7042F2E13D35200ADBBDB /* XTBundleViewController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = XTBundleViewController.mm; sourceTree = "<group>"; };
|
|
57
65
|
69C704302E13D35200ADBBDB /* XTMainBundleViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTMainBundleViewController.h; sourceTree = "<group>"; };
|
|
58
|
-
69C704312E13D35200ADBBDB /* XTMainBundleViewController.
|
|
66
|
+
69C704312E13D35200ADBBDB /* XTMainBundleViewController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = XTMainBundleViewController.mm; sourceTree = "<group>"; };
|
|
59
67
|
69C704372E13D35200ADBBDB /* XTBundleViewControllerFactory.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTBundleViewControllerFactory.h; sourceTree = "<group>"; };
|
|
60
68
|
69C704382E13D35200ADBBDB /* XTBundleViewControllerFactory.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTBundleViewControllerFactory.m; sourceTree = "<group>"; };
|
|
61
69
|
69C7043A2E13D35200ADBBDB /* XTPluginManage.h */ = {isa = PBXFileReference; indentWidth = 4; lastKnownFileType = sourcecode.c.h; path = XTPluginManage.h; sourceTree = "<group>"; tabWidth = 4; };
|
|
@@ -69,6 +77,12 @@
|
|
|
69
77
|
69E6DB032E4B1E35007F02A4 /* XTBundleProvider.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTBundleProvider.m; sourceTree = "<group>"; };
|
|
70
78
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = XRNTemplate/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
|
71
79
|
89C6BE57DB24E9ADA2F236DE /* Pods-XRNTemplate-XRNTemplateTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate-XRNTemplateTests.release.xcconfig"; path = "Target Support Files/Pods-XRNTemplate-XRNTemplateTests/Pods-XRNTemplate-XRNTemplateTests.release.xcconfig"; sourceTree = "<group>"; };
|
|
80
|
+
A1F2E3D42E84000100F16D60 /* XTIQKeyboardManagerBridge.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTIQKeyboardManagerBridge.h; sourceTree = "<group>"; };
|
|
81
|
+
A1F2E3D42E84000200F16D60 /* XTIQKeyboardManagerBridge.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTIQKeyboardManagerBridge.m; sourceTree = "<group>"; };
|
|
82
|
+
A1F2E3D52E8A110100F16D60 /* XTReloadCommandHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTReloadCommandHelper.h; sourceTree = "<group>"; };
|
|
83
|
+
A1F2E3D62E8A110100F16D60 /* XTReloadCommandHelper.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = XTReloadCommandHelper.mm; sourceTree = "<group>"; };
|
|
84
|
+
A1F2E3D92E8A220100F16D60 /* XTMetroAutoConnector.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XTMetroAutoConnector.h; sourceTree = "<group>"; };
|
|
85
|
+
A1F2E3DA2E8A220100F16D60 /* XTMetroAutoConnector.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XTMetroAutoConnector.m; sourceTree = "<group>"; };
|
|
72
86
|
AEC8BF6D3233DB54DD408BD1 /* Pods-XRNTemplate.staging.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-XRNTemplate.staging.xcconfig"; path = "Target Support Files/Pods-XRNTemplate/Pods-XRNTemplate.staging.xcconfig"; sourceTree = "<group>"; };
|
|
73
87
|
ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; };
|
|
74
88
|
/* End PBXFileReference section */
|
|
@@ -122,6 +136,7 @@
|
|
|
122
136
|
13B07FB61A68108700A75B9A /* Info.plist */,
|
|
123
137
|
81AB9BB72411601600AC10FF /* LaunchScreen.storyboard */,
|
|
124
138
|
13B07FB71A68108700A75B9A /* main.m */,
|
|
139
|
+
20D5894F90E0467C41AFD3DC /* PrivacyInfo.xcprivacy */,
|
|
125
140
|
);
|
|
126
141
|
name = XRNTemplate;
|
|
127
142
|
sourceTree = "<group>";
|
|
@@ -136,14 +151,25 @@
|
|
|
136
151
|
name = Frameworks;
|
|
137
152
|
sourceTree = "<group>";
|
|
138
153
|
};
|
|
154
|
+
3CC321BC2E83F34000E87258 /* Hooks */ = {
|
|
155
|
+
isa = PBXGroup;
|
|
156
|
+
children = (
|
|
157
|
+
A1F2E3D42E84000100F16D60 /* XTIQKeyboardManagerBridge.h */,
|
|
158
|
+
A1F2E3D42E84000200F16D60 /* XTIQKeyboardManagerBridge.m */,
|
|
159
|
+
3C1075862F7E69B600904006 /* XRNCustomKeyborad+XTHooks.h */,
|
|
160
|
+
3C1075872F7E69B600904006 /* XRNCustomKeyborad+XTHooks.mm */,
|
|
161
|
+
);
|
|
162
|
+
path = Hooks;
|
|
163
|
+
sourceTree = "<group>";
|
|
164
|
+
};
|
|
139
165
|
69C704322E13D35200ADBBDB /* bundleController */ = {
|
|
140
166
|
isa = PBXGroup;
|
|
141
167
|
children = (
|
|
142
168
|
69C7042D2E13D35200ADBBDB /* xtBundles.plist */,
|
|
143
169
|
69C7042E2E13D35200ADBBDB /* XTBundleViewController.h */,
|
|
144
|
-
69C7042F2E13D35200ADBBDB /* XTBundleViewController.
|
|
170
|
+
69C7042F2E13D35200ADBBDB /* XTBundleViewController.mm */,
|
|
145
171
|
69C704302E13D35200ADBBDB /* XTMainBundleViewController.h */,
|
|
146
|
-
69C704312E13D35200ADBBDB /* XTMainBundleViewController.
|
|
172
|
+
69C704312E13D35200ADBBDB /* XTMainBundleViewController.mm */,
|
|
147
173
|
);
|
|
148
174
|
path = bundleController;
|
|
149
175
|
sourceTree = "<group>";
|
|
@@ -152,6 +178,7 @@
|
|
|
152
178
|
isa = PBXGroup;
|
|
153
179
|
children = (
|
|
154
180
|
69C704322E13D35200ADBBDB /* bundleController */,
|
|
181
|
+
3CC321BC2E83F34000E87258 /* Hooks */,
|
|
155
182
|
69E6DB022E4B1E35007F02A4 /* XTBundleProvider.h */,
|
|
156
183
|
69E6DB032E4B1E35007F02A4 /* XTBundleProvider.m */,
|
|
157
184
|
69C704372E13D35200ADBBDB /* XTBundleViewControllerFactory.h */,
|
|
@@ -185,6 +212,7 @@
|
|
|
185
212
|
children = (
|
|
186
213
|
69C7043C2E13D35200ADBBDB /* DebugPlugin */,
|
|
187
214
|
69C704412E13D35200ADBBDB /* Views */,
|
|
215
|
+
A1F2E3D82E8A110100F16D60 /* MotroTools */,
|
|
188
216
|
);
|
|
189
217
|
path = RNDebug;
|
|
190
218
|
sourceTree = "<group>";
|
|
@@ -220,6 +248,17 @@
|
|
|
220
248
|
name = Products;
|
|
221
249
|
sourceTree = "<group>";
|
|
222
250
|
};
|
|
251
|
+
A1F2E3D82E8A110100F16D60 /* MotroTools */ = {
|
|
252
|
+
isa = PBXGroup;
|
|
253
|
+
children = (
|
|
254
|
+
A1F2E3D92E8A220100F16D60 /* XTMetroAutoConnector.h */,
|
|
255
|
+
A1F2E3DA2E8A220100F16D60 /* XTMetroAutoConnector.m */,
|
|
256
|
+
A1F2E3D52E8A110100F16D60 /* XTReloadCommandHelper.h */,
|
|
257
|
+
A1F2E3D62E8A110100F16D60 /* XTReloadCommandHelper.mm */,
|
|
258
|
+
);
|
|
259
|
+
path = MotroTools;
|
|
260
|
+
sourceTree = "<group>";
|
|
261
|
+
};
|
|
223
262
|
BBD78D7AC51CEA395F1C20DB /* Pods */ = {
|
|
224
263
|
isa = PBXGroup;
|
|
225
264
|
children = (
|
|
@@ -331,6 +370,7 @@
|
|
|
331
370
|
69C7044C2E13D35200ADBBDB /* xtBundles.plist in Resources */,
|
|
332
371
|
81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */,
|
|
333
372
|
13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */,
|
|
373
|
+
701440A31193EFD481073816 /* PrivacyInfo.xcprivacy in Resources */,
|
|
334
374
|
);
|
|
335
375
|
runOnlyForDeploymentPostprocessing = 0;
|
|
336
376
|
};
|
|
@@ -520,14 +560,18 @@
|
|
|
520
560
|
files = (
|
|
521
561
|
13B07FBC1A68108700A75B9A /* AppDelegate.mm in Sources */,
|
|
522
562
|
13B07FC11A68108700A75B9A /* main.m in Sources */,
|
|
523
|
-
69C704442E13D35200ADBBDB /* XTBundleViewController.
|
|
563
|
+
69C704442E13D35200ADBBDB /* XTBundleViewController.mm in Sources */,
|
|
524
564
|
69C704452E13D35200ADBBDB /* XTScanQRPlugin.swift in Sources */,
|
|
525
565
|
69C704462E13D35200ADBBDB /* XTSuspendBall.m in Sources */,
|
|
526
566
|
69E6DB042E4B1E35007F02A4 /* XTBundleProvider.m in Sources */,
|
|
527
|
-
69C704482E13D35200ADBBDB /* XTMainBundleViewController.
|
|
567
|
+
69C704482E13D35200ADBBDB /* XTMainBundleViewController.mm in Sources */,
|
|
528
568
|
69C704492E13D35200ADBBDB /* XTPluginManage.m in Sources */,
|
|
529
569
|
69C7044A2E13D35200ADBBDB /* XTLoadJSErrorTipPanel.swift in Sources */,
|
|
530
570
|
69C7044B2E13D35200ADBBDB /* XTBundleViewControllerFactory.m in Sources */,
|
|
571
|
+
3C1075882F7E69B600904006 /* XRNCustomKeyborad+XTHooks.mm in Sources */,
|
|
572
|
+
A1F2E3D42E84000300F16D60 /* XTIQKeyboardManagerBridge.m in Sources */,
|
|
573
|
+
A1F2E3D72E8A110100F16D60 /* XTReloadCommandHelper.mm in Sources */,
|
|
574
|
+
A1F2E3DB2E8A220100F16D60 /* XTMetroAutoConnector.m in Sources */,
|
|
531
575
|
);
|
|
532
576
|
runOnlyForDeploymentPostprocessing = 0;
|
|
533
577
|
};
|
|
@@ -599,12 +643,12 @@
|
|
|
599
643
|
buildSettings = {
|
|
600
644
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
601
645
|
CLANG_ENABLE_MODULES = YES;
|
|
602
|
-
CURRENT_PROJECT_VERSION =
|
|
646
|
+
CURRENT_PROJECT_VERSION = 202609151640;
|
|
603
647
|
DEVELOPMENT_TEAM = 227UGFU7Z8;
|
|
604
648
|
DISPLAY_NAME = XRNTemplate;
|
|
605
649
|
ENABLE_BITCODE = NO;
|
|
606
650
|
INFOPLIST_FILE = XRNTemplate/Info.plist;
|
|
607
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
651
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
608
652
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
609
653
|
"$(inherited)",
|
|
610
654
|
"@executable_path/Frameworks",
|
|
@@ -631,11 +675,11 @@
|
|
|
631
675
|
buildSettings = {
|
|
632
676
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
633
677
|
CLANG_ENABLE_MODULES = YES;
|
|
634
|
-
CURRENT_PROJECT_VERSION =
|
|
678
|
+
CURRENT_PROJECT_VERSION = 202609151640;
|
|
635
679
|
DEVELOPMENT_TEAM = 227UGFU7Z8;
|
|
636
680
|
DISPLAY_NAME = XRNTemplate;
|
|
637
681
|
INFOPLIST_FILE = XRNTemplate/Info.plist;
|
|
638
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
682
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
639
683
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
640
684
|
"$(inherited)",
|
|
641
685
|
"@executable_path/Frameworks",
|
|
@@ -660,7 +704,7 @@
|
|
|
660
704
|
buildSettings = {
|
|
661
705
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
662
706
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
663
|
-
CLANG_CXX_LANGUAGE_STANDARD = "c++
|
|
707
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
664
708
|
CLANG_CXX_LIBRARY = "libc++";
|
|
665
709
|
CLANG_ENABLE_MODULES = YES;
|
|
666
710
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
@@ -719,28 +763,10 @@
|
|
|
719
763
|
"-DFOLLY_MOBILE=1",
|
|
720
764
|
"-DFOLLY_USE_LIBCPP=1",
|
|
721
765
|
);
|
|
722
|
-
OTHER_LDFLAGS = (
|
|
723
|
-
"$(inherited)",
|
|
724
|
-
"-Wl",
|
|
725
|
-
"-ld_classic",
|
|
726
|
-
"-Wl",
|
|
727
|
-
"-ld_classic",
|
|
728
|
-
"-Wl",
|
|
729
|
-
"-ld_classic",
|
|
730
|
-
"-Wl",
|
|
731
|
-
"-ld_classic",
|
|
732
|
-
"-Wl",
|
|
733
|
-
"-ld_classic",
|
|
734
|
-
"-Wl",
|
|
735
|
-
"-ld_classic",
|
|
736
|
-
"-Wl",
|
|
737
|
-
"-ld_classic",
|
|
738
|
-
"-Wl",
|
|
739
|
-
"-ld_classic",
|
|
740
|
-
"-Wl -ld_classic ",
|
|
741
|
-
);
|
|
766
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
742
767
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
743
768
|
SDKROOT = iphoneos;
|
|
769
|
+
USE_HERMES = true;
|
|
744
770
|
VALIDATE_PRODUCT = YES;
|
|
745
771
|
};
|
|
746
772
|
name = Staging;
|
|
@@ -751,11 +777,11 @@
|
|
|
751
777
|
buildSettings = {
|
|
752
778
|
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
|
753
779
|
CLANG_ENABLE_MODULES = YES;
|
|
754
|
-
CURRENT_PROJECT_VERSION =
|
|
780
|
+
CURRENT_PROJECT_VERSION = 202609151640;
|
|
755
781
|
DEVELOPMENT_TEAM = 227UGFU7Z8;
|
|
756
782
|
DISPLAY_NAME = XRNTemplate;
|
|
757
783
|
INFOPLIST_FILE = XRNTemplate/Info.plist;
|
|
758
|
-
IPHONEOS_DEPLOYMENT_TARGET =
|
|
784
|
+
IPHONEOS_DEPLOYMENT_TARGET = 15.1;
|
|
759
785
|
LD_RUNPATH_SEARCH_PATHS = (
|
|
760
786
|
"$(inherited)",
|
|
761
787
|
"@executable_path/Frameworks",
|
|
@@ -804,7 +830,7 @@
|
|
|
804
830
|
buildSettings = {
|
|
805
831
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
806
832
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
807
|
-
CLANG_CXX_LANGUAGE_STANDARD = "c++
|
|
833
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
808
834
|
CLANG_CXX_LIBRARY = "libc++";
|
|
809
835
|
CLANG_ENABLE_MODULES = YES;
|
|
810
836
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
@@ -868,28 +894,11 @@
|
|
|
868
894
|
"-DFOLLY_MOBILE=1",
|
|
869
895
|
"-DFOLLY_USE_LIBCPP=1",
|
|
870
896
|
);
|
|
871
|
-
OTHER_LDFLAGS = (
|
|
872
|
-
"$(inherited)",
|
|
873
|
-
"-Wl",
|
|
874
|
-
"-ld_classic",
|
|
875
|
-
"-Wl",
|
|
876
|
-
"-ld_classic",
|
|
877
|
-
"-Wl",
|
|
878
|
-
"-ld_classic",
|
|
879
|
-
"-Wl",
|
|
880
|
-
"-ld_classic",
|
|
881
|
-
"-Wl",
|
|
882
|
-
"-ld_classic",
|
|
883
|
-
"-Wl",
|
|
884
|
-
"-ld_classic",
|
|
885
|
-
"-Wl",
|
|
886
|
-
"-ld_classic",
|
|
887
|
-
"-Wl",
|
|
888
|
-
"-ld_classic",
|
|
889
|
-
"-Wl -ld_classic ",
|
|
890
|
-
);
|
|
897
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
891
898
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
892
899
|
SDKROOT = iphoneos;
|
|
900
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) DEBUG";
|
|
901
|
+
USE_HERMES = true;
|
|
893
902
|
};
|
|
894
903
|
name = Debug;
|
|
895
904
|
};
|
|
@@ -898,7 +907,7 @@
|
|
|
898
907
|
buildSettings = {
|
|
899
908
|
ALWAYS_SEARCH_USER_PATHS = NO;
|
|
900
909
|
CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
|
|
901
|
-
CLANG_CXX_LANGUAGE_STANDARD = "c++
|
|
910
|
+
CLANG_CXX_LANGUAGE_STANDARD = "c++20";
|
|
902
911
|
CLANG_CXX_LIBRARY = "libc++";
|
|
903
912
|
CLANG_ENABLE_MODULES = YES;
|
|
904
913
|
CLANG_ENABLE_OBJC_ARC = YES;
|
|
@@ -957,28 +966,10 @@
|
|
|
957
966
|
"-DFOLLY_MOBILE=1",
|
|
958
967
|
"-DFOLLY_USE_LIBCPP=1",
|
|
959
968
|
);
|
|
960
|
-
OTHER_LDFLAGS = (
|
|
961
|
-
"$(inherited)",
|
|
962
|
-
"-Wl",
|
|
963
|
-
"-ld_classic",
|
|
964
|
-
"-Wl",
|
|
965
|
-
"-ld_classic",
|
|
966
|
-
"-Wl",
|
|
967
|
-
"-ld_classic",
|
|
968
|
-
"-Wl",
|
|
969
|
-
"-ld_classic",
|
|
970
|
-
"-Wl",
|
|
971
|
-
"-ld_classic",
|
|
972
|
-
"-Wl",
|
|
973
|
-
"-ld_classic",
|
|
974
|
-
"-Wl",
|
|
975
|
-
"-ld_classic",
|
|
976
|
-
"-Wl",
|
|
977
|
-
"-ld_classic",
|
|
978
|
-
"-Wl -ld_classic ",
|
|
979
|
-
);
|
|
969
|
+
OTHER_LDFLAGS = "$(inherited)";
|
|
980
970
|
REACT_NATIVE_PATH = "${PODS_ROOT}/../../node_modules/react-native";
|
|
981
971
|
SDKROOT = iphoneos;
|
|
972
|
+
USE_HERMES = true;
|
|
982
973
|
VALIDATE_PRODUCT = YES;
|
|
983
974
|
};
|
|
984
975
|
name = Release;
|
|
@@ -0,0 +1,195 @@
|
|
|
1
|
+
/* src/config.h. Generated from config.h.in by configure. */
|
|
2
|
+
/* src/config.h.in. Generated from configure.ac by autoheader. */
|
|
3
|
+
|
|
4
|
+
/* define if glog doesn't use RTTI */
|
|
5
|
+
/* #undef DISABLE_RTTI */
|
|
6
|
+
|
|
7
|
+
/* Namespace for Google classes */
|
|
8
|
+
#define GOOGLE_NAMESPACE google
|
|
9
|
+
|
|
10
|
+
/* Define if you have the `dladdr' function */
|
|
11
|
+
#define HAVE_DLADDR 1
|
|
12
|
+
|
|
13
|
+
/* Define to 1 if you have the <dlfcn.h> header file. */
|
|
14
|
+
#define HAVE_DLFCN_H 1
|
|
15
|
+
|
|
16
|
+
/* Define to 1 if you have the <execinfo.h> header file. */
|
|
17
|
+
#define HAVE_EXECINFO_H 1
|
|
18
|
+
|
|
19
|
+
/* Define if you have the `fcntl' function */
|
|
20
|
+
#define HAVE_FCNTL 1
|
|
21
|
+
|
|
22
|
+
/* Define to 1 if you have the <glob.h> header file. */
|
|
23
|
+
#define HAVE_GLOB_H 1
|
|
24
|
+
|
|
25
|
+
/* Define to 1 if you have the <inttypes.h> header file. */
|
|
26
|
+
#define HAVE_INTTYPES_H 1
|
|
27
|
+
|
|
28
|
+
/* Define to 1 if you have the `pthread' library (-lpthread). */
|
|
29
|
+
#define HAVE_LIBPTHREAD 1
|
|
30
|
+
|
|
31
|
+
/* Define to 1 if you have the <libunwind.h> header file. */
|
|
32
|
+
#define HAVE_LIBUNWIND_H 1
|
|
33
|
+
|
|
34
|
+
/* define if you have google gflags library */
|
|
35
|
+
/* #undef HAVE_LIB_GFLAGS_DISABLED */
|
|
36
|
+
|
|
37
|
+
/* define if you have google gmock library */
|
|
38
|
+
/* #undef HAVE_LIB_GMOCK */
|
|
39
|
+
|
|
40
|
+
/* define if you have google gtest library */
|
|
41
|
+
/* #undef HAVE_LIB_GTEST */
|
|
42
|
+
|
|
43
|
+
/* define if you have libunwind */
|
|
44
|
+
/* #undef HAVE_LIB_UNWIND */
|
|
45
|
+
|
|
46
|
+
/* Define to 1 if you have the <memory.h> header file. */
|
|
47
|
+
#define HAVE_MEMORY_H 1
|
|
48
|
+
|
|
49
|
+
/* define if the compiler implements namespaces */
|
|
50
|
+
#define HAVE_NAMESPACES 1
|
|
51
|
+
|
|
52
|
+
/* Define if you have the 'pread' function */
|
|
53
|
+
#define HAVE_PREAD 1
|
|
54
|
+
|
|
55
|
+
/* Define if you have POSIX threads libraries and header files. */
|
|
56
|
+
#define HAVE_PTHREAD 1
|
|
57
|
+
|
|
58
|
+
/* Define to 1 if you have the <pwd.h> header file. */
|
|
59
|
+
#define HAVE_PWD_H 1
|
|
60
|
+
|
|
61
|
+
/* Define if you have the 'pwrite' function */
|
|
62
|
+
#define HAVE_PWRITE 1
|
|
63
|
+
|
|
64
|
+
/* define if the compiler implements pthread_rwlock_* */
|
|
65
|
+
#define HAVE_RWLOCK 1
|
|
66
|
+
|
|
67
|
+
/* Define if you have the 'sigaction' function */
|
|
68
|
+
#define HAVE_SIGACTION 1
|
|
69
|
+
|
|
70
|
+
/* Define if you have the `sigaltstack' function */
|
|
71
|
+
#define HAVE_SIGALTSTACK 1
|
|
72
|
+
|
|
73
|
+
/* Define to 1 if you have the <stdint.h> header file. */
|
|
74
|
+
#define HAVE_STDINT_H 1
|
|
75
|
+
|
|
76
|
+
/* Define to 1 if you have the <stdlib.h> header file. */
|
|
77
|
+
#define HAVE_STDLIB_H 1
|
|
78
|
+
|
|
79
|
+
/* Define to 1 if you have the <strings.h> header file. */
|
|
80
|
+
#define HAVE_STRINGS_H 1
|
|
81
|
+
|
|
82
|
+
/* Define to 1 if you have the <string.h> header file. */
|
|
83
|
+
#define HAVE_STRING_H 1
|
|
84
|
+
|
|
85
|
+
/* Define to 1 if you have the <syscall.h> header file. */
|
|
86
|
+
/* #undef HAVE_SYSCALL_H */
|
|
87
|
+
|
|
88
|
+
/* Define to 1 if you have the <syslog.h> header file. */
|
|
89
|
+
#define HAVE_SYSLOG_H 1
|
|
90
|
+
|
|
91
|
+
/* Define to 1 if you have the <sys/stat.h> header file. */
|
|
92
|
+
#define HAVE_SYS_STAT_H 1
|
|
93
|
+
|
|
94
|
+
/* Define to 1 if you have the <sys/syscall.h> header file. */
|
|
95
|
+
#define HAVE_SYS_SYSCALL_H 1
|
|
96
|
+
|
|
97
|
+
/* Define to 1 if you have the <sys/time.h> header file. */
|
|
98
|
+
#define HAVE_SYS_TIME_H 1
|
|
99
|
+
|
|
100
|
+
/* Define to 1 if you have the <sys/types.h> header file. */
|
|
101
|
+
#define HAVE_SYS_TYPES_H 1
|
|
102
|
+
|
|
103
|
+
/* Define to 1 if you have the <sys/ucontext.h> header file. */
|
|
104
|
+
#define HAVE_SYS_UCONTEXT_H 1
|
|
105
|
+
|
|
106
|
+
/* Define to 1 if you have the <sys/utsname.h> header file. */
|
|
107
|
+
#define HAVE_SYS_UTSNAME_H 1
|
|
108
|
+
|
|
109
|
+
/* Define to 1 if you have the <ucontext.h> header file. */
|
|
110
|
+
/* #undef HAVE_UCONTEXT_H */
|
|
111
|
+
|
|
112
|
+
/* Define to 1 if you have the <unistd.h> header file. */
|
|
113
|
+
#define HAVE_UNISTD_H 1
|
|
114
|
+
|
|
115
|
+
/* Define to 1 if you have the <unwind.h> header file. */
|
|
116
|
+
#define HAVE_UNWIND_H 1
|
|
117
|
+
|
|
118
|
+
/* define if the compiler supports using expression for operator */
|
|
119
|
+
#define HAVE_USING_OPERATOR 1
|
|
120
|
+
|
|
121
|
+
/* define if your compiler has __attribute__ */
|
|
122
|
+
#define HAVE___ATTRIBUTE__ 1
|
|
123
|
+
|
|
124
|
+
/* define if your compiler has __builtin_expect */
|
|
125
|
+
#define HAVE___BUILTIN_EXPECT 1
|
|
126
|
+
|
|
127
|
+
/* define if your compiler has __sync_val_compare_and_swap */
|
|
128
|
+
#define HAVE___SYNC_VAL_COMPARE_AND_SWAP 1
|
|
129
|
+
|
|
130
|
+
/* Define to the sub-directory in which libtool stores uninstalled libraries.
|
|
131
|
+
*/
|
|
132
|
+
#define LT_OBJDIR ".libs/"
|
|
133
|
+
|
|
134
|
+
/* Name of package */
|
|
135
|
+
#define PACKAGE "glog"
|
|
136
|
+
|
|
137
|
+
/* Define to the address where bug reports for this package should be sent. */
|
|
138
|
+
#define PACKAGE_BUGREPORT "opensource@google.com"
|
|
139
|
+
|
|
140
|
+
/* Define to the full name of this package. */
|
|
141
|
+
#define PACKAGE_NAME "glog"
|
|
142
|
+
|
|
143
|
+
/* Define to the full name and version of this package. */
|
|
144
|
+
#define PACKAGE_STRING "glog 0.3.5"
|
|
145
|
+
|
|
146
|
+
/* Define to the one symbol short name of this package. */
|
|
147
|
+
#define PACKAGE_TARNAME "glog"
|
|
148
|
+
|
|
149
|
+
/* Define to the home page for this package. */
|
|
150
|
+
#define PACKAGE_URL ""
|
|
151
|
+
|
|
152
|
+
/* Define to the version of this package. */
|
|
153
|
+
#define PACKAGE_VERSION "0.3.5"
|
|
154
|
+
|
|
155
|
+
/* How to access the PC from a struct ucontext */
|
|
156
|
+
/* #undef PC_FROM_UCONTEXT */
|
|
157
|
+
|
|
158
|
+
/* Define to necessary symbol if this constant uses a non-standard name on
|
|
159
|
+
your system. */
|
|
160
|
+
/* #undef PTHREAD_CREATE_JOINABLE */
|
|
161
|
+
|
|
162
|
+
/* The size of `void *', as computed by sizeof. */
|
|
163
|
+
#define SIZEOF_VOID_P 8
|
|
164
|
+
|
|
165
|
+
/* Define to 1 if you have the ANSI C header files. */
|
|
166
|
+
/* #undef STDC_HEADERS */
|
|
167
|
+
|
|
168
|
+
/* the namespace where STL code like vector<> is defined */
|
|
169
|
+
#define STL_NAMESPACE std
|
|
170
|
+
|
|
171
|
+
/* location of source code */
|
|
172
|
+
#define TEST_SRC_DIR "."
|
|
173
|
+
|
|
174
|
+
/* Version number of package */
|
|
175
|
+
#define VERSION "0.3.5"
|
|
176
|
+
|
|
177
|
+
/* Stops putting the code inside the Google namespace */
|
|
178
|
+
#define _END_GOOGLE_NAMESPACE_ }
|
|
179
|
+
|
|
180
|
+
/* Puts following code inside the Google namespace */
|
|
181
|
+
#define _START_GOOGLE_NAMESPACE_ namespace google {
|
|
182
|
+
/* Add in so we have Apple Target Conditionals */
|
|
183
|
+
#ifdef __APPLE__
|
|
184
|
+
#include <TargetConditionals.h>
|
|
185
|
+
#include <Availability.h>
|
|
186
|
+
#endif
|
|
187
|
+
|
|
188
|
+
/* Special configuration for ucontext */
|
|
189
|
+
#undef HAVE_UCONTEXT_H
|
|
190
|
+
#undef PC_FROM_UCONTEXT
|
|
191
|
+
#if defined(__x86_64__)
|
|
192
|
+
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__rip
|
|
193
|
+
#elif defined(__i386__)
|
|
194
|
+
#define PC_FROM_UCONTEXT uc_mcontext->__ss.__eip
|
|
195
|
+
#endif
|