reactnative-plugin-appice 1.7.26 → 1.7.28
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/README.md +37 -37
- package/android/README.md +14 -14
- package/android/build.gradle +158 -158
- package/android/gitignore +47 -47
- package/android/gradle/wrapper/gradle-wrapper.properties +5 -5
- package/android/gradlew +234 -234
- package/android/local.properties +8 -8
- package/android/src/main/AndroidManifest.xml +164 -128
- package/android/src/main/java/com/reactlibrary/AppICEUtils.java +274 -274
- package/android/src/main/java/com/reactlibrary/AppIceReactPluginModule.java +778 -778
- package/android/src/main/java/com/reactlibrary/AppIceReactPluginPackage.java +28 -28
- package/android/src/main/java/com/reactlibrary/CampaignCampsReceiver.java +56 -56
- package/android/src/main/java/com/reactlibrary/EnumConstants.java +282 -282
- package/android/src/main/java/com/reactlibrary/NotificationEventService.java +59 -59
- package/android/src/main/java/com/reactlibrary/StringConstants.java +24 -24
- package/campaign.js +25 -25
- package/example/App.js +332 -332
- package/example/Gemfile +6 -6
- package/example/PageA.tsx +15 -15
- package/example/__tests__/App-test.js +14 -14
- package/example/ancilliary.js +486 -486
- package/example/android/.gradle/7.3.3/checksums/checksums.lock +0 -0
- package/example/android/.gradle/7.3.3/fileChanges/last-build.bin +0 -0
- package/example/android/.gradle/7.3.3/fileHashes/fileHashes.lock +0 -0
- package/example/android/.gradle/7.3.3/gc.properties +0 -0
- package/example/android/.gradle/vcs-1/gc.properties +0 -0
- package/example/android/app/_BUCK +55 -55
- package/example/android/app/build.gradle +320 -320
- package/example/android/app/build_defs.bzl +19 -19
- package/example/android/app/proguard-rules.pro +10 -10
- package/example/android/app/src/debug/AndroidManifest.xml +13 -13
- package/example/android/app/src/debug/java/com/example/ReactNativeFlipper.java +73 -73
- package/example/android/app/src/main/AndroidManifest.xml +72 -72
- package/example/android/app/src/main/java/com/example/MainActivity.java +48 -48
- package/example/android/app/src/main/java/com/example/MainApplication.java +91 -91
- package/example/android/app/src/main/java/com/example/newarchitecture/MainApplicationReactNativeHost.java +116 -116
- package/example/android/app/src/main/java/com/example/newarchitecture/components/MainComponentsRegistry.java +36 -36
- package/example/android/app/src/main/java/com/example/newarchitecture/modules/MainApplicationTurboModuleManagerDelegate.java +48 -48
- package/example/android/app/src/main/jni/Android.mk +48 -48
- package/example/android/app/src/main/jni/MainApplicationModuleProvider.cpp +24 -24
- package/example/android/app/src/main/jni/MainApplicationModuleProvider.h +16 -16
- package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.cpp +45 -45
- package/example/android/app/src/main/jni/MainApplicationTurboModuleManagerDelegate.h +38 -38
- package/example/android/app/src/main/jni/MainComponentsRegistry.cpp +61 -61
- package/example/android/app/src/main/jni/MainComponentsRegistry.h +32 -32
- package/example/android/app/src/main/jni/OnLoad.cpp +11 -11
- package/example/android/app/src/main/res/drawable/rn_edit_text_material.xml +36 -36
- package/example/android/app/src/main/res/values/strings.xml +3 -3
- package/example/android/app/src/main/res/values/styles.xml +9 -9
- package/example/android/build.gradle +73 -73
- package/example/android/gradle/wrapper/gradle-wrapper.properties +5 -5
- package/example/android/gradle.properties +40 -40
- package/example/android/gradlew +234 -234
- package/example/android/settings.gradle +11 -11
- package/example/app.json +3 -3
- package/example/babel.config.js +3 -3
- package/example/index.js +9 -9
- package/example/ios/Podfile +44 -44
- package/example/ios/Podfile.lock +561 -561
- package/example/ios/_xcode.env +11 -11
- package/example/ios/example/AppDelegate.h +8 -8
- package/example/ios/example/AppDelegate.mm +174 -174
- package/example/ios/example/Images.xcassets/AppIcon.appiconset/Contents.json +53 -53
- package/example/ios/example/Images.xcassets/Contents.json +6 -6
- package/example/ios/example/Info.plist +62 -62
- package/example/ios/example/LaunchScreen.storyboard +47 -47
- package/example/ios/example/example.entitlements +8 -8
- package/example/ios/example/main.m +10 -10
- package/example/ios/example.xcodeproj/project.pbxproj +712 -712
- package/example/ios/example.xcodeproj/xcshareddata/xcschemes/example.xcscheme +88 -88
- package/example/ios/example.xcworkspace/contents.xcworkspacedata +10 -10
- package/example/ios/example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
- package/example/ios/exampleTests/Info.plist +24 -24
- package/example/ios/exampleTests/exampleTests.m +66 -66
- package/example/metro.config.js +17 -17
- package/example/package.json +36 -36
- package/example/yarn.lock +7176 -7176
- package/index.js +590 -590
- package/ios/AppICEReactEvent.h +23 -23
- package/ios/AppICEReactEvent.m +86 -86
- package/ios/AppIceReactPlugin.h +65 -65
- package/ios/AppIceReactPlugin.m +683 -683
- package/ios/AppIceReactPlugin.xcodeproj/project.pbxproj +364 -364
- package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -4
- package/ios/AppIceReactPlugin.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
- package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
- package/ios/AppIceReactPlugin.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
- package/ios/AppIceReactPlugin.xcworkspace/contents.xcworkspacedata +10 -10
- package/ios/AppIceReactPlugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -8
- package/ios/Podfile +10 -10
- package/ios/Podfile.lock +3 -3
- package/ios/Pods/Manifest.lock +3 -3
- package/ios/Pods/Pods.xcodeproj/project.pbxproj +395 -395
- package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/Pods-AppIceReactPlugin.xcscheme +58 -58
- package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist +18 -18
- package/ios/Pods/Pods.xcodeproj/xcuserdata/artherajesh.xcuserdatad/xcschemes/xcschememanagement.plist +14 -14
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-Info.plist +26 -26
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.markdown +3 -3
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-acknowledgements.plist +29 -29
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-dummy.m +5 -5
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-umbrella.h +16 -16
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig +6 -6
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.modulemap +6 -6
- package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig +6 -6
- package/package.json +9 -6
- package/reactnative-plugin-appice.podspec +30 -30
- package/android/.idea/workspace.xml +0 -103
package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/Pods-AppIceReactPlugin.xcscheme
CHANGED
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<Scheme
|
|
3
|
-
LastUpgradeVersion = "1100"
|
|
4
|
-
version = "1.3">
|
|
5
|
-
<BuildAction
|
|
6
|
-
parallelizeBuildables = "YES"
|
|
7
|
-
buildImplicitDependencies = "YES">
|
|
8
|
-
<BuildActionEntries>
|
|
9
|
-
<BuildActionEntry
|
|
10
|
-
buildForTesting = "YES"
|
|
11
|
-
buildForRunning = "YES"
|
|
12
|
-
buildForProfiling = "YES"
|
|
13
|
-
buildForArchiving = "YES"
|
|
14
|
-
buildForAnalyzing = "YES">
|
|
15
|
-
<BuildableReference
|
|
16
|
-
BuildableIdentifier = "primary"
|
|
17
|
-
BlueprintIdentifier = "AD0E24300ED9C21DC6164401125ABDCE"
|
|
18
|
-
BuildableName = "Pods_AppIceReactPlugin.framework"
|
|
19
|
-
BlueprintName = "Pods-AppIceReactPlugin"
|
|
20
|
-
ReferencedContainer = "container:Pods.xcodeproj">
|
|
21
|
-
</BuildableReference>
|
|
22
|
-
</BuildActionEntry>
|
|
23
|
-
</BuildActionEntries>
|
|
24
|
-
</BuildAction>
|
|
25
|
-
<TestAction
|
|
26
|
-
buildConfiguration = "Debug"
|
|
27
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
-
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
-
<Testables>
|
|
31
|
-
</Testables>
|
|
32
|
-
</TestAction>
|
|
33
|
-
<LaunchAction
|
|
34
|
-
buildConfiguration = "Debug"
|
|
35
|
-
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
36
|
-
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
37
|
-
launchStyle = "0"
|
|
38
|
-
useCustomWorkingDirectory = "NO"
|
|
39
|
-
ignoresPersistentStateOnLaunch = "NO"
|
|
40
|
-
debugDocumentVersioning = "YES"
|
|
41
|
-
debugServiceExtension = "internal"
|
|
42
|
-
allowLocationSimulation = "YES">
|
|
43
|
-
</LaunchAction>
|
|
44
|
-
<ProfileAction
|
|
45
|
-
buildConfiguration = "Release"
|
|
46
|
-
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
47
|
-
savedToolIdentifier = ""
|
|
48
|
-
useCustomWorkingDirectory = "NO"
|
|
49
|
-
debugDocumentVersioning = "YES">
|
|
50
|
-
</ProfileAction>
|
|
51
|
-
<AnalyzeAction
|
|
52
|
-
buildConfiguration = "Debug">
|
|
53
|
-
</AnalyzeAction>
|
|
54
|
-
<ArchiveAction
|
|
55
|
-
buildConfiguration = "Release"
|
|
56
|
-
revealArchiveInOrganizer = "YES">
|
|
57
|
-
</ArchiveAction>
|
|
58
|
-
</Scheme>
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<Scheme
|
|
3
|
+
LastUpgradeVersion = "1100"
|
|
4
|
+
version = "1.3">
|
|
5
|
+
<BuildAction
|
|
6
|
+
parallelizeBuildables = "YES"
|
|
7
|
+
buildImplicitDependencies = "YES">
|
|
8
|
+
<BuildActionEntries>
|
|
9
|
+
<BuildActionEntry
|
|
10
|
+
buildForTesting = "YES"
|
|
11
|
+
buildForRunning = "YES"
|
|
12
|
+
buildForProfiling = "YES"
|
|
13
|
+
buildForArchiving = "YES"
|
|
14
|
+
buildForAnalyzing = "YES">
|
|
15
|
+
<BuildableReference
|
|
16
|
+
BuildableIdentifier = "primary"
|
|
17
|
+
BlueprintIdentifier = "AD0E24300ED9C21DC6164401125ABDCE"
|
|
18
|
+
BuildableName = "Pods_AppIceReactPlugin.framework"
|
|
19
|
+
BlueprintName = "Pods-AppIceReactPlugin"
|
|
20
|
+
ReferencedContainer = "container:Pods.xcodeproj">
|
|
21
|
+
</BuildableReference>
|
|
22
|
+
</BuildActionEntry>
|
|
23
|
+
</BuildActionEntries>
|
|
24
|
+
</BuildAction>
|
|
25
|
+
<TestAction
|
|
26
|
+
buildConfiguration = "Debug"
|
|
27
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
28
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
29
|
+
shouldUseLaunchSchemeArgsEnv = "YES">
|
|
30
|
+
<Testables>
|
|
31
|
+
</Testables>
|
|
32
|
+
</TestAction>
|
|
33
|
+
<LaunchAction
|
|
34
|
+
buildConfiguration = "Debug"
|
|
35
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
|
36
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
|
37
|
+
launchStyle = "0"
|
|
38
|
+
useCustomWorkingDirectory = "NO"
|
|
39
|
+
ignoresPersistentStateOnLaunch = "NO"
|
|
40
|
+
debugDocumentVersioning = "YES"
|
|
41
|
+
debugServiceExtension = "internal"
|
|
42
|
+
allowLocationSimulation = "YES">
|
|
43
|
+
</LaunchAction>
|
|
44
|
+
<ProfileAction
|
|
45
|
+
buildConfiguration = "Release"
|
|
46
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
|
47
|
+
savedToolIdentifier = ""
|
|
48
|
+
useCustomWorkingDirectory = "NO"
|
|
49
|
+
debugDocumentVersioning = "YES">
|
|
50
|
+
</ProfileAction>
|
|
51
|
+
<AnalyzeAction
|
|
52
|
+
buildConfiguration = "Debug">
|
|
53
|
+
</AnalyzeAction>
|
|
54
|
+
<ArchiveAction
|
|
55
|
+
buildConfiguration = "Release"
|
|
56
|
+
revealArchiveInOrganizer = "YES">
|
|
57
|
+
</ArchiveAction>
|
|
58
|
+
</Scheme>
|
package/ios/Pods/Pods.xcodeproj/xcuserdata/Adi.xcuserdatad/xcschemes/xcschememanagement.plist
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
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>SchemeUserState</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Pods-AppIceReactPlugin.xcscheme</key>
|
|
8
|
-
<dict>
|
|
9
|
-
<key>isShown</key>
|
|
10
|
-
<false/>
|
|
11
|
-
<key>orderHint</key>
|
|
12
|
-
<integer>0</integer>
|
|
13
|
-
</dict>
|
|
14
|
-
</dict>
|
|
15
|
-
<key>SuppressBuildableAutocreation</key>
|
|
16
|
-
<dict/>
|
|
17
|
-
</dict>
|
|
18
|
-
</plist>
|
|
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>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Pods-AppIceReactPlugin.xcscheme</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>isShown</key>
|
|
10
|
+
<false/>
|
|
11
|
+
<key>orderHint</key>
|
|
12
|
+
<integer>0</integer>
|
|
13
|
+
</dict>
|
|
14
|
+
</dict>
|
|
15
|
+
<key>SuppressBuildableAutocreation</key>
|
|
16
|
+
<dict/>
|
|
17
|
+
</dict>
|
|
18
|
+
</plist>
|
|
@@ -1,14 +1,14 @@
|
|
|
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>SchemeUserState</key>
|
|
6
|
-
<dict>
|
|
7
|
-
<key>Pods-AppIceReactPlugin.xcscheme_^#shared#^_</key>
|
|
8
|
-
<dict>
|
|
9
|
-
<key>orderHint</key>
|
|
10
|
-
<integer>1</integer>
|
|
11
|
-
</dict>
|
|
12
|
-
</dict>
|
|
13
|
-
</dict>
|
|
14
|
-
</plist>
|
|
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>SchemeUserState</key>
|
|
6
|
+
<dict>
|
|
7
|
+
<key>Pods-AppIceReactPlugin.xcscheme_^#shared#^_</key>
|
|
8
|
+
<dict>
|
|
9
|
+
<key>orderHint</key>
|
|
10
|
+
<integer>1</integer>
|
|
11
|
+
</dict>
|
|
12
|
+
</dict>
|
|
13
|
+
</dict>
|
|
14
|
+
</plist>
|
package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-Info.plist
CHANGED
|
@@ -1,26 +1,26 @@
|
|
|
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>CFBundleDevelopmentRegion</key>
|
|
6
|
-
<string>en</string>
|
|
7
|
-
<key>CFBundleExecutable</key>
|
|
8
|
-
<string>${EXECUTABLE_NAME}</string>
|
|
9
|
-
<key>CFBundleIdentifier</key>
|
|
10
|
-
<string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
|
|
11
|
-
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
-
<string>6.0</string>
|
|
13
|
-
<key>CFBundleName</key>
|
|
14
|
-
<string>${PRODUCT_NAME}</string>
|
|
15
|
-
<key>CFBundlePackageType</key>
|
|
16
|
-
<string>FMWK</string>
|
|
17
|
-
<key>CFBundleShortVersionString</key>
|
|
18
|
-
<string>1.0.0</string>
|
|
19
|
-
<key>CFBundleSignature</key>
|
|
20
|
-
<string>????</string>
|
|
21
|
-
<key>CFBundleVersion</key>
|
|
22
|
-
<string>${CURRENT_PROJECT_VERSION}</string>
|
|
23
|
-
<key>NSPrincipalClass</key>
|
|
24
|
-
<string></string>
|
|
25
|
-
</dict>
|
|
26
|
-
</plist>
|
|
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>CFBundleDevelopmentRegion</key>
|
|
6
|
+
<string>en</string>
|
|
7
|
+
<key>CFBundleExecutable</key>
|
|
8
|
+
<string>${EXECUTABLE_NAME}</string>
|
|
9
|
+
<key>CFBundleIdentifier</key>
|
|
10
|
+
<string>${PRODUCT_BUNDLE_IDENTIFIER}</string>
|
|
11
|
+
<key>CFBundleInfoDictionaryVersion</key>
|
|
12
|
+
<string>6.0</string>
|
|
13
|
+
<key>CFBundleName</key>
|
|
14
|
+
<string>${PRODUCT_NAME}</string>
|
|
15
|
+
<key>CFBundlePackageType</key>
|
|
16
|
+
<string>FMWK</string>
|
|
17
|
+
<key>CFBundleShortVersionString</key>
|
|
18
|
+
<string>1.0.0</string>
|
|
19
|
+
<key>CFBundleSignature</key>
|
|
20
|
+
<string>????</string>
|
|
21
|
+
<key>CFBundleVersion</key>
|
|
22
|
+
<string>${CURRENT_PROJECT_VERSION}</string>
|
|
23
|
+
<key>NSPrincipalClass</key>
|
|
24
|
+
<string></string>
|
|
25
|
+
</dict>
|
|
26
|
+
</plist>
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
# Acknowledgements
|
|
2
|
-
This application makes use of the following third party libraries:
|
|
3
|
-
Generated by CocoaPods - https://cocoapods.org
|
|
1
|
+
# Acknowledgements
|
|
2
|
+
This application makes use of the following third party libraries:
|
|
3
|
+
Generated by CocoaPods - https://cocoapods.org
|
|
@@ -1,29 +1,29 @@
|
|
|
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>PreferenceSpecifiers</key>
|
|
6
|
-
<array>
|
|
7
|
-
<dict>
|
|
8
|
-
<key>FooterText</key>
|
|
9
|
-
<string>This application makes use of the following third party libraries:</string>
|
|
10
|
-
<key>Title</key>
|
|
11
|
-
<string>Acknowledgements</string>
|
|
12
|
-
<key>Type</key>
|
|
13
|
-
<string>PSGroupSpecifier</string>
|
|
14
|
-
</dict>
|
|
15
|
-
<dict>
|
|
16
|
-
<key>FooterText</key>
|
|
17
|
-
<string>Generated by CocoaPods - https://cocoapods.org</string>
|
|
18
|
-
<key>Title</key>
|
|
19
|
-
<string></string>
|
|
20
|
-
<key>Type</key>
|
|
21
|
-
<string>PSGroupSpecifier</string>
|
|
22
|
-
</dict>
|
|
23
|
-
</array>
|
|
24
|
-
<key>StringsTable</key>
|
|
25
|
-
<string>Acknowledgements</string>
|
|
26
|
-
<key>Title</key>
|
|
27
|
-
<string>Acknowledgements</string>
|
|
28
|
-
</dict>
|
|
29
|
-
</plist>
|
|
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>PreferenceSpecifiers</key>
|
|
6
|
+
<array>
|
|
7
|
+
<dict>
|
|
8
|
+
<key>FooterText</key>
|
|
9
|
+
<string>This application makes use of the following third party libraries:</string>
|
|
10
|
+
<key>Title</key>
|
|
11
|
+
<string>Acknowledgements</string>
|
|
12
|
+
<key>Type</key>
|
|
13
|
+
<string>PSGroupSpecifier</string>
|
|
14
|
+
</dict>
|
|
15
|
+
<dict>
|
|
16
|
+
<key>FooterText</key>
|
|
17
|
+
<string>Generated by CocoaPods - https://cocoapods.org</string>
|
|
18
|
+
<key>Title</key>
|
|
19
|
+
<string></string>
|
|
20
|
+
<key>Type</key>
|
|
21
|
+
<string>PSGroupSpecifier</string>
|
|
22
|
+
</dict>
|
|
23
|
+
</array>
|
|
24
|
+
<key>StringsTable</key>
|
|
25
|
+
<string>Acknowledgements</string>
|
|
26
|
+
<key>Title</key>
|
|
27
|
+
<string>Acknowledgements</string>
|
|
28
|
+
</dict>
|
|
29
|
+
</plist>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
#import <Foundation/Foundation.h>
|
|
2
|
-
@interface PodsDummy_Pods_AppIceReactPlugin : NSObject
|
|
3
|
-
@end
|
|
4
|
-
@implementation PodsDummy_Pods_AppIceReactPlugin
|
|
5
|
-
@end
|
|
1
|
+
#import <Foundation/Foundation.h>
|
|
2
|
+
@interface PodsDummy_Pods_AppIceReactPlugin : NSObject
|
|
3
|
+
@end
|
|
4
|
+
@implementation PodsDummy_Pods_AppIceReactPlugin
|
|
5
|
+
@end
|
package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin-umbrella.h
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
#ifdef __OBJC__
|
|
2
|
-
#import <UIKit/UIKit.h>
|
|
3
|
-
#else
|
|
4
|
-
#ifndef FOUNDATION_EXPORT
|
|
5
|
-
#if defined(__cplusplus)
|
|
6
|
-
#define FOUNDATION_EXPORT extern "C"
|
|
7
|
-
#else
|
|
8
|
-
#define FOUNDATION_EXPORT extern
|
|
9
|
-
#endif
|
|
10
|
-
#endif
|
|
11
|
-
#endif
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
FOUNDATION_EXPORT double Pods_AppIceReactPluginVersionNumber;
|
|
15
|
-
FOUNDATION_EXPORT const unsigned char Pods_AppIceReactPluginVersionString[];
|
|
16
|
-
|
|
1
|
+
#ifdef __OBJC__
|
|
2
|
+
#import <UIKit/UIKit.h>
|
|
3
|
+
#else
|
|
4
|
+
#ifndef FOUNDATION_EXPORT
|
|
5
|
+
#if defined(__cplusplus)
|
|
6
|
+
#define FOUNDATION_EXPORT extern "C"
|
|
7
|
+
#else
|
|
8
|
+
#define FOUNDATION_EXPORT extern
|
|
9
|
+
#endif
|
|
10
|
+
#endif
|
|
11
|
+
#endif
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
FOUNDATION_EXPORT double Pods_AppIceReactPluginVersionNumber;
|
|
15
|
+
FOUNDATION_EXPORT const unsigned char Pods_AppIceReactPluginVersionString[];
|
|
16
|
+
|
package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.debug.xcconfig
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
|
2
|
-
PODS_BUILD_DIR = ${BUILD_DIR}
|
|
3
|
-
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
|
4
|
-
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
|
5
|
-
PODS_ROOT = ${SRCROOT}/Pods
|
|
6
|
-
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
|
1
|
+
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
|
2
|
+
PODS_BUILD_DIR = ${BUILD_DIR}
|
|
3
|
+
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
|
4
|
+
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
|
5
|
+
PODS_ROOT = ${SRCROOT}/Pods
|
|
6
|
+
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.modulemap
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
framework module Pods_AppIceReactPlugin {
|
|
2
|
-
umbrella header "Pods-AppIceReactPlugin-umbrella.h"
|
|
3
|
-
|
|
4
|
-
export *
|
|
5
|
-
module * { export * }
|
|
6
|
-
}
|
|
1
|
+
framework module Pods_AppIceReactPlugin {
|
|
2
|
+
umbrella header "Pods-AppIceReactPlugin-umbrella.h"
|
|
3
|
+
|
|
4
|
+
export *
|
|
5
|
+
module * { export * }
|
|
6
|
+
}
|
package/ios/Pods/Target Support Files/Pods-AppIceReactPlugin/Pods-AppIceReactPlugin.release.xcconfig
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
|
2
|
-
PODS_BUILD_DIR = ${BUILD_DIR}
|
|
3
|
-
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
|
4
|
-
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
|
5
|
-
PODS_ROOT = ${SRCROOT}/Pods
|
|
6
|
-
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
|
1
|
+
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
|
|
2
|
+
PODS_BUILD_DIR = ${BUILD_DIR}
|
|
3
|
+
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
|
|
4
|
+
PODS_PODFILE_DIR_PATH = ${SRCROOT}/.
|
|
5
|
+
PODS_ROOT = ${SRCROOT}/Pods
|
|
6
|
+
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "reactnative-plugin-appice",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.28",
|
|
4
4
|
"description": "appICE React Native SDK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"files": [
|
|
@@ -23,13 +23,9 @@
|
|
|
23
23
|
"keywords": [
|
|
24
24
|
"react-native"
|
|
25
25
|
],
|
|
26
|
-
"author":
|
|
27
|
-
"name": "AppICE",
|
|
28
|
-
"email": "it@semusi.com"
|
|
29
|
-
},
|
|
26
|
+
"author": "AppICE <it@semusi.com>",
|
|
30
27
|
"license": "MIT",
|
|
31
28
|
"licenseFilename": "LICENSE",
|
|
32
|
-
"readmeFilename": "README.md",
|
|
33
29
|
"peerDependencies": {
|
|
34
30
|
"react": "^16.8.1",
|
|
35
31
|
"react-native": ">=0.60.0-rc.0 <1.0.x"
|
|
@@ -38,5 +34,12 @@
|
|
|
38
34
|
"react": "^16.9.0",
|
|
39
35
|
"react-native": "^0.61.5",
|
|
40
36
|
"@react-native-async-storage/async-storage": "1.21.0"
|
|
37
|
+
},
|
|
38
|
+
"bugs": {
|
|
39
|
+
"url": "https://github.com/github_account/AppICEReactLibrary/issues"
|
|
40
|
+
},
|
|
41
|
+
"homepage": "https://github.com/github_account/AppICEReactLibrary#readme",
|
|
42
|
+
"directories": {
|
|
43
|
+
"example": "example"
|
|
41
44
|
}
|
|
42
45
|
}
|
|
@@ -1,30 +1,30 @@
|
|
|
1
|
-
require "json"
|
|
2
|
-
|
|
3
|
-
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
|
-
|
|
5
|
-
Pod::Spec.new do |s|
|
|
6
|
-
s.name = "reactnative-plugin-appice"
|
|
7
|
-
s.version = package["version"]
|
|
8
|
-
s.summary = package["description"]
|
|
9
|
-
s.description = <<-DESC
|
|
10
|
-
reactnative-plugin-appice
|
|
11
|
-
DESC
|
|
12
|
-
s.homepage = "https://github.com/github_account/AppICEReactLibrary"
|
|
13
|
-
# brief license entry:
|
|
14
|
-
s.license = "MIT"
|
|
15
|
-
# optional - use expanded license entry instead:
|
|
16
|
-
# s.license = { :type => "MIT", :file => "LICENSE" }
|
|
17
|
-
s.authors = { "AppICE" => "it@semusi.com" }
|
|
18
|
-
|
|
19
|
-
s.platforms = { :ios => "8.0" }
|
|
20
|
-
s.source = { :git => "https://github.com/github_account/AppICEReactLibrary.git", :tag => "#{s.version}" }
|
|
21
|
-
|
|
22
|
-
s.source_files = "ios/**/*.{h,c,m,swift}"
|
|
23
|
-
s.requires_arc = true
|
|
24
|
-
|
|
25
|
-
s.dependency "React"
|
|
26
|
-
s.dependency "AppICE-IOS-SDK", "1.
|
|
27
|
-
# ...
|
|
28
|
-
# s.dependency "..."
|
|
29
|
-
end
|
|
30
|
-
|
|
1
|
+
require "json"
|
|
2
|
+
|
|
3
|
+
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
|
|
4
|
+
|
|
5
|
+
Pod::Spec.new do |s|
|
|
6
|
+
s.name = "reactnative-plugin-appice"
|
|
7
|
+
s.version = package["version"]
|
|
8
|
+
s.summary = package["description"]
|
|
9
|
+
s.description = <<-DESC
|
|
10
|
+
reactnative-plugin-appice
|
|
11
|
+
DESC
|
|
12
|
+
s.homepage = "https://github.com/github_account/AppICEReactLibrary"
|
|
13
|
+
# brief license entry:
|
|
14
|
+
s.license = "MIT"
|
|
15
|
+
# optional - use expanded license entry instead:
|
|
16
|
+
# s.license = { :type => "MIT", :file => "LICENSE" }
|
|
17
|
+
s.authors = { "AppICE" => "it@semusi.com" }
|
|
18
|
+
|
|
19
|
+
s.platforms = { :ios => "8.0" }
|
|
20
|
+
s.source = { :git => "https://github.com/github_account/AppICEReactLibrary.git", :tag => "#{s.version}" }
|
|
21
|
+
|
|
22
|
+
s.source_files = "ios/**/*.{h,c,m,swift}"
|
|
23
|
+
s.requires_arc = true
|
|
24
|
+
|
|
25
|
+
s.dependency "React"
|
|
26
|
+
s.dependency "AppICE-IOS-SDK", "1.8.02"
|
|
27
|
+
# ...
|
|
28
|
+
# s.dependency "..."
|
|
29
|
+
end
|
|
30
|
+
|
|
@@ -1,103 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="AutoImportSettings">
|
|
4
|
-
<option name="autoReloadType" value="NONE" />
|
|
5
|
-
</component>
|
|
6
|
-
<component name="ChangeListManager">
|
|
7
|
-
<list default="true" id="aee4312c-1901-4a6b-8b92-4d5a8d6d561e" name="Changes" comment="">
|
|
8
|
-
<change beforePath="$PROJECT_DIR$/src/main/AndroidManifest.xml" beforeDir="false" afterPath="$PROJECT_DIR$/src/main/AndroidManifest.xml" afterDir="false" />
|
|
9
|
-
<change beforePath="$PROJECT_DIR$/../example/android/.gradle/7.3.3/checksums/checksums.lock" beforeDir="false" />
|
|
10
|
-
<change beforePath="$PROJECT_DIR$/../example/android/.gradle/7.3.3/fileChanges/last-build.bin" beforeDir="false" />
|
|
11
|
-
<change beforePath="$PROJECT_DIR$/../example/android/.gradle/7.3.3/fileHashes/fileHashes.lock" beforeDir="false" />
|
|
12
|
-
<change beforePath="$PROJECT_DIR$/../example/android/.gradle/7.3.3/gc.properties" beforeDir="false" />
|
|
13
|
-
<change beforePath="$PROJECT_DIR$/../example/android/.gradle/vcs-1/gc.properties" beforeDir="false" />
|
|
14
|
-
<change beforePath="$PROJECT_DIR$/../example/package.json" beforeDir="false" afterPath="$PROJECT_DIR$/../example/package.json" afterDir="false" />
|
|
15
|
-
<change beforePath="$PROJECT_DIR$/../package.json" beforeDir="false" afterPath="$PROJECT_DIR$/../package.json" afterDir="false" />
|
|
16
|
-
</list>
|
|
17
|
-
<option name="SHOW_DIALOG" value="false" />
|
|
18
|
-
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
|
19
|
-
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
|
20
|
-
<option name="LAST_RESOLUTION" value="IGNORE" />
|
|
21
|
-
</component>
|
|
22
|
-
<component name="ClangdSettings">
|
|
23
|
-
<option name="formatViaClangd" value="false" />
|
|
24
|
-
</component>
|
|
25
|
-
<component name="ExternalProjectsData">
|
|
26
|
-
<projectState path="$PROJECT_DIR$">
|
|
27
|
-
<ProjectState />
|
|
28
|
-
</projectState>
|
|
29
|
-
</component>
|
|
30
|
-
<component name="Git.Settings">
|
|
31
|
-
<option name="RECENT_BRANCH_BY_REPOSITORY">
|
|
32
|
-
<map>
|
|
33
|
-
<entry key="$PROJECT_DIR$/.." value="dev" />
|
|
34
|
-
</map>
|
|
35
|
-
</option>
|
|
36
|
-
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$/.." />
|
|
37
|
-
</component>
|
|
38
|
-
<component name="GitLabMergeRequestFiltersHistory">{
|
|
39
|
-
"lastFilter": {
|
|
40
|
-
"state": "OPENED",
|
|
41
|
-
"assignee": {
|
|
42
|
-
"type": "org.jetbrains.plugins.gitlab.mergerequest.ui.filters.GitLabMergeRequestsFiltersValue.MergeRequestsMemberFilterValue.MergeRequestsAssigneeFilterValue",
|
|
43
|
-
"username": "amit.pandey.work",
|
|
44
|
-
"fullname": "Amit Pandey"
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
}</component>
|
|
48
|
-
<component name="GitLabMergeRequestsSettings">{
|
|
49
|
-
"selectedUrlAndAccountId": {
|
|
50
|
-
"first": "https://gitlab.com/grp_appice/src_reactnative_appice-sdk.git",
|
|
51
|
-
"second": "3049d1c2-c9c2-4ad3-90d8-501e6fe141e1"
|
|
52
|
-
}
|
|
53
|
-
}</component>
|
|
54
|
-
<component name="ProjectColorInfo">{
|
|
55
|
-
"associatedIndex": 6
|
|
56
|
-
}</component>
|
|
57
|
-
<component name="ProjectId" id="2xcttwNrwHU9Ne1lHjEiEC2bldp" />
|
|
58
|
-
<component name="ProjectViewState">
|
|
59
|
-
<option name="hideEmptyMiddlePackages" value="true" />
|
|
60
|
-
<option name="showLibraryContents" value="true" />
|
|
61
|
-
</component>
|
|
62
|
-
<component name="PropertiesComponent"><![CDATA[{
|
|
63
|
-
"keyToString": {
|
|
64
|
-
"RunOnceActivity.ShowReadmeOnStart": "true",
|
|
65
|
-
"RunOnceActivity.cidr.known.project.marker": "true",
|
|
66
|
-
"RunOnceActivity.git.unshallow": "true",
|
|
67
|
-
"RunOnceActivity.readMode.enableVisualFormatting": "true",
|
|
68
|
-
"cf.first.check.clang-format": "false",
|
|
69
|
-
"cidr.known.project.marker": "true",
|
|
70
|
-
"git-widget-placeholder": "release-hotfix-2.6.12",
|
|
71
|
-
"last_opened_file_path": "/Users/amitpandey/Desktop/AppICE/src_reactnative_appice-sdk/android",
|
|
72
|
-
"project.structure.last.edited": "Project",
|
|
73
|
-
"project.structure.proportion": "0.17",
|
|
74
|
-
"project.structure.side.proportion": "0.2",
|
|
75
|
-
"settings.editor.selected.configurable": "reference.settingsdialog.project.gradle"
|
|
76
|
-
}
|
|
77
|
-
}]]></component>
|
|
78
|
-
<component name="PsdUISettings">
|
|
79
|
-
<option name="LAST_EDITED_BUILD_TYPE" value="release" />
|
|
80
|
-
</component>
|
|
81
|
-
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
|
|
82
|
-
<component name="TaskManager">
|
|
83
|
-
<task active="true" id="Default" summary="Default task">
|
|
84
|
-
<changelist id="aee4312c-1901-4a6b-8b92-4d5a8d6d561e" name="Changes" comment="" />
|
|
85
|
-
<created>1748249407888</created>
|
|
86
|
-
<option name="number" value="Default" />
|
|
87
|
-
<option name="presentableId" value="Default" />
|
|
88
|
-
<updated>1748249407888</updated>
|
|
89
|
-
</task>
|
|
90
|
-
<servers />
|
|
91
|
-
</component>
|
|
92
|
-
<component name="play_dynamic_filters_status">
|
|
93
|
-
<option name="appIdToCheckInfo">
|
|
94
|
-
<map>
|
|
95
|
-
<entry key="com.reactlibrary.test">
|
|
96
|
-
<value>
|
|
97
|
-
<CheckInfo lastCheckTimestamp="1748426745571" />
|
|
98
|
-
</value>
|
|
99
|
-
</entry>
|
|
100
|
-
</map>
|
|
101
|
-
</option>
|
|
102
|
-
</component>
|
|
103
|
-
</project>
|