react-native-mparticle 2.7.13 → 2.8.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/SECURITY.md +9 -0
- package/android/build.gradle +65 -10
- package/android/src/main/AndroidManifestNew.xml +3 -0
- package/android/src/main/java/com/mparticle/react/MParticleModule.kt +976 -0
- package/android/src/main/java/com/mparticle/react/MParticlePackage.kt +68 -0
- package/android/src/main/java/com/mparticle/react/rokt/MPRoktModuleImpl.kt +251 -0
- package/android/src/main/java/com/mparticle/react/rokt/RoktLayoutViewManagerImpl.kt +79 -0
- package/android/src/newarch/java/com/mparticle/react/rokt/MPRoktModule.kt +130 -0
- package/android/src/newarch/java/com/mparticle/react/rokt/RoktLayoutViewManager.kt +22 -0
- package/android/src/oldarch/java/com/mparticle/react/NativeMPRoktSpec.kt +29 -0
- package/android/src/oldarch/java/com/mparticle/react/NativeMParticleSpec.kt +153 -0
- package/android/src/oldarch/java/com/mparticle/react/rokt/MPRoktModule.kt +79 -0
- package/android/src/oldarch/java/com/mparticle/react/rokt/RoktLayoutViewManager.kt +34 -0
- package/ios/RNMParticle/RNMPRokt.h +15 -0
- package/ios/RNMParticle/RNMPRokt.mm +247 -0
- package/ios/RNMParticle/RNMParticle.h +6 -1
- package/ios/RNMParticle/RNMParticle.mm +1199 -0
- package/ios/RNMParticle/RoktEventManager.h +16 -0
- package/ios/RNMParticle/RoktEventManager.m +174 -0
- package/ios/RNMParticle/RoktLayoutManager.m +22 -0
- package/ios/RNMParticle/RoktNativeLayoutComponentView.h +18 -0
- package/ios/RNMParticle/RoktNativeLayoutComponentView.mm +50 -0
- package/ios/RNMParticle.xcodeproj/project.pbxproj +29 -6
- package/js/codegenSpecs/NativeMParticle.ts +214 -0
- package/js/codegenSpecs/rokt/NativeMPRokt.ts +32 -0
- package/js/codegenSpecs/rokt/RoktLayoutNativeComponent.ts +29 -0
- package/js/index.tsx +940 -0
- package/js/rokt/rokt-layout-view.android.tsx +133 -0
- package/js/rokt/rokt-layout-view.ios.tsx +121 -0
- package/js/rokt/rokt-layout-view.tsx +15 -0
- package/js/rokt/rokt.ts +87 -0
- package/js/utils/architecture.ts +22 -0
- package/lib/codegenSpecs/NativeMParticle.d.ts +148 -0
- package/lib/codegenSpecs/NativeMParticle.js +5 -0
- package/lib/codegenSpecs/NativeMParticle.js.map +1 -0
- package/lib/codegenSpecs/rokt/NativeMPRokt.d.ts +24 -0
- package/lib/codegenSpecs/rokt/NativeMPRokt.js +5 -0
- package/lib/codegenSpecs/rokt/NativeMPRokt.js.map +1 -0
- package/lib/codegenSpecs/rokt/RoktLayoutNativeComponent.d.ts +18 -0
- package/lib/codegenSpecs/rokt/RoktLayoutNativeComponent.js +8 -0
- package/lib/codegenSpecs/rokt/RoktLayoutNativeComponent.js.map +1 -0
- package/lib/index.d.ts +410 -0
- package/lib/index.js +645 -0
- package/lib/index.js.map +1 -0
- package/lib/rokt/rokt-layout-view.android.d.ts +39 -0
- package/lib/rokt/rokt-layout-view.android.js +109 -0
- package/lib/rokt/rokt-layout-view.android.js.map +1 -0
- package/lib/rokt/rokt-layout-view.d.ts +5 -0
- package/lib/rokt/rokt-layout-view.ios.d.ts +32 -0
- package/lib/rokt/rokt-layout-view.ios.js +84 -0
- package/lib/rokt/rokt-layout-view.ios.js.map +1 -0
- package/lib/rokt/rokt-layout-view.js +12 -0
- package/lib/rokt/rokt-layout-view.js.map +1 -0
- package/lib/rokt/rokt.d.ts +40 -0
- package/lib/rokt/rokt.js +54 -0
- package/lib/rokt/rokt.js.map +1 -0
- package/lib/utils/architecture.d.ts +9 -0
- package/lib/utils/architecture.js +19 -0
- package/lib/utils/architecture.js.map +1 -0
- package/package.json +32 -10
- package/react-native-mparticle.podspec +7 -6
- package/.github/PULL_REQUEST_TEMPLATE.md +0 -8
- package/.github/dependabot.yml +0 -12
- package/.github/workflows/daily.yml +0 -19
- package/.github/workflows/dependabot-automerge.yml +0 -12
- package/.github/workflows/pull-request.yml +0 -60
- package/.github/workflows/release.yml +0 -60
- package/.github/workflows/sonarcloud.yml +0 -16
- package/android/.gradle/7.5.1/checksums/checksums.lock +0 -0
- package/android/.gradle/7.5.1/checksums/md5-checksums.bin +0 -0
- package/android/.gradle/7.5.1/checksums/sha1-checksums.bin +0 -0
- package/android/.gradle/7.5.1/dependencies-accessors/dependencies-accessors.lock +0 -0
- package/android/.gradle/7.5.1/dependencies-accessors/gc.properties +0 -0
- package/android/.gradle/7.5.1/executionHistory/executionHistory.lock +0 -0
- package/android/.gradle/7.5.1/fileChanges/last-build.bin +0 -0
- package/android/.gradle/7.5.1/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/7.5.1/gc.properties +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
- package/android/.gradle/vcs-1/gc.properties +0 -0
- package/android/gradle/wrapper/gradle-wrapper.jar +0 -0
- package/android/gradle/wrapper/gradle-wrapper.properties +0 -6
- package/android/gradle.properties +0 -53
- package/android/gradlew +0 -160
- package/android/gradlew.bat +0 -90
- package/android/libs/java-json.jar +0 -0
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug-sources.jar +0 -0
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug-sources.jar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug-sources.jar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug-sources.jar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug-sources.jar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug.aar +0 -0
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug.aar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug.aar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug.aar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-debug.aar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release-sources.jar +0 -0
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release-sources.jar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release-sources.jar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release-sources.jar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release-sources.jar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release.aar +0 -0
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release.aar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release.aar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release.aar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5-release.aar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.module +0 -204
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.module.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.module.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.module.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.module.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.pom +0 -44
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.pom.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.pom.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.pom.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/0.70.5/hermes-engine-0.70.5.pom.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/maven-metadata.xml +0 -13
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/maven-metadata.xml.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/maven-metadata.xml.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/maven-metadata.xml.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/hermes-engine/maven-metadata.xml.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug-sources.jar +0 -0
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug-sources.jar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug-sources.jar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug-sources.jar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug-sources.jar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug.aar +0 -0
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug.aar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug.aar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug.aar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-debug.aar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release-sources.jar +0 -0
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release-sources.jar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release-sources.jar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release-sources.jar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release-sources.jar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release.aar +0 -0
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release.aar.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release.aar.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release.aar.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5-release.aar.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.module +0 -628
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.module.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.module.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.module.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.module.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.pom +0 -156
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.pom.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.pom.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.pom.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/0.70.5/react-native-0.70.5.pom.sha512 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/maven-metadata.xml +0 -13
- package/android/libs/react-native-android/com/facebook/react/react-native/maven-metadata.xml.md5 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/maven-metadata.xml.sha1 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/maven-metadata.xml.sha256 +0 -1
- package/android/libs/react-native-android/com/facebook/react/react-native/maven-metadata.xml.sha512 +0 -1
- package/android/src/main/java/com/mparticle/react/MParticleModule.java +0 -987
- package/android/src/main/java/com/mparticle/react/MParticlePackage.java +0 -34
- package/android/src/test/java/com/mparticle/react/IdentityApiTest.java +0 -230
- package/android/src/test/java/com/mparticle/react/MParticleUserTest.java +0 -233
- package/android/src/test/java/com/mparticle/react/testutils/MockMParticleUser.java +0 -103
- package/android/src/test/java/com/mparticle/react/testutils/MockMap.java +0 -169
- package/android/src/test/java/com/mparticle/react/testutils/MockReadableArray.java +0 -53
- package/android/src/test/java/com/mparticle/react/testutils/MockWritableMap.java +0 -4
- package/android/src/test/java/com/mparticle/react/testutils/Mutable.java +0 -13
- package/ios/RNMParticle/RNMParticle.m +0 -678
- package/ios/RNMParticle.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
- package/ios/RNMParticle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +0 -8
- package/ios/RNMParticle.xcodeproj/project.xcworkspace/xcuserdata/bstalnaker.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/ios/RNMParticle.xcodeproj/xcuserdata/bstalnaker.xcuserdatad/xcschemes/xcschememanagement.plist +0 -14
- package/js/index.js +0 -697
- package/release.sh +0 -6
|
@@ -1,628 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"formatVersion": "1.1",
|
|
3
|
-
"component": {
|
|
4
|
-
"group": "com.facebook.react",
|
|
5
|
-
"module": "react-native",
|
|
6
|
-
"version": "0.70.5",
|
|
7
|
-
"attributes": {
|
|
8
|
-
"org.gradle.status": "release"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
"createdBy": {
|
|
12
|
-
"gradle": {
|
|
13
|
-
"version": "7.5.1"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"variants": [
|
|
17
|
-
{
|
|
18
|
-
"name": "debugVariantDefaultApiPublication",
|
|
19
|
-
"attributes": {
|
|
20
|
-
"com.android.build.api.attributes.BuildTypeAttr": "debug",
|
|
21
|
-
"org.gradle.category": "library",
|
|
22
|
-
"org.gradle.dependency.bundling": "external",
|
|
23
|
-
"org.gradle.libraryelements": "aar",
|
|
24
|
-
"org.gradle.usage": "java-api"
|
|
25
|
-
},
|
|
26
|
-
"dependencies": [
|
|
27
|
-
{
|
|
28
|
-
"group": "androidx.appcompat",
|
|
29
|
-
"module": "appcompat-resources",
|
|
30
|
-
"version": {
|
|
31
|
-
"requires": "1.4.1"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"group": "androidx.appcompat",
|
|
36
|
-
"module": "appcompat",
|
|
37
|
-
"version": {
|
|
38
|
-
"requires": "1.4.1"
|
|
39
|
-
}
|
|
40
|
-
},
|
|
41
|
-
{
|
|
42
|
-
"group": "androidx.autofill",
|
|
43
|
-
"module": "autofill",
|
|
44
|
-
"version": {
|
|
45
|
-
"requires": "1.1.0"
|
|
46
|
-
}
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"group": "androidx.swiperefreshlayout",
|
|
50
|
-
"module": "swiperefreshlayout",
|
|
51
|
-
"version": {
|
|
52
|
-
"requires": "1.0.0"
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
{
|
|
56
|
-
"group": "com.facebook.fbjni",
|
|
57
|
-
"module": "fbjni-java-only",
|
|
58
|
-
"version": {
|
|
59
|
-
"requires": "0.2.2"
|
|
60
|
-
}
|
|
61
|
-
},
|
|
62
|
-
{
|
|
63
|
-
"group": "com.facebook.fresco",
|
|
64
|
-
"module": "fresco",
|
|
65
|
-
"version": {
|
|
66
|
-
"requires": "2.5.0"
|
|
67
|
-
}
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
"group": "com.facebook.fresco",
|
|
71
|
-
"module": "imagepipeline-okhttp3",
|
|
72
|
-
"version": {
|
|
73
|
-
"requires": "2.5.0"
|
|
74
|
-
}
|
|
75
|
-
},
|
|
76
|
-
{
|
|
77
|
-
"group": "com.facebook.fresco",
|
|
78
|
-
"module": "ui-common",
|
|
79
|
-
"version": {
|
|
80
|
-
"requires": "2.5.0"
|
|
81
|
-
}
|
|
82
|
-
},
|
|
83
|
-
{
|
|
84
|
-
"group": "com.facebook.infer.annotation",
|
|
85
|
-
"module": "infer-annotation",
|
|
86
|
-
"version": {
|
|
87
|
-
"requires": "0.18.0"
|
|
88
|
-
}
|
|
89
|
-
},
|
|
90
|
-
{
|
|
91
|
-
"group": "com.facebook.soloader",
|
|
92
|
-
"module": "soloader",
|
|
93
|
-
"version": {
|
|
94
|
-
"requires": "0.10.4"
|
|
95
|
-
}
|
|
96
|
-
},
|
|
97
|
-
{
|
|
98
|
-
"group": "com.facebook.yoga",
|
|
99
|
-
"module": "proguard-annotations",
|
|
100
|
-
"version": {
|
|
101
|
-
"requires": "1.19.0"
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
{
|
|
105
|
-
"group": "com.google.code.findbugs",
|
|
106
|
-
"module": "jsr305",
|
|
107
|
-
"version": {
|
|
108
|
-
"requires": "3.0.2"
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
{
|
|
112
|
-
"group": "com.squareup.okhttp3",
|
|
113
|
-
"module": "okhttp-urlconnection",
|
|
114
|
-
"version": {
|
|
115
|
-
"requires": "4.9.2"
|
|
116
|
-
}
|
|
117
|
-
},
|
|
118
|
-
{
|
|
119
|
-
"group": "com.squareup.okhttp3",
|
|
120
|
-
"module": "okhttp",
|
|
121
|
-
"version": {
|
|
122
|
-
"requires": "4.9.2"
|
|
123
|
-
}
|
|
124
|
-
},
|
|
125
|
-
{
|
|
126
|
-
"group": "com.squareup.okio",
|
|
127
|
-
"module": "okio",
|
|
128
|
-
"version": {
|
|
129
|
-
"requires": "2.9.0"
|
|
130
|
-
}
|
|
131
|
-
},
|
|
132
|
-
{
|
|
133
|
-
"group": "javax.inject",
|
|
134
|
-
"module": "javax.inject",
|
|
135
|
-
"version": {
|
|
136
|
-
"requires": "1"
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
{
|
|
140
|
-
"group": "org.jetbrains.kotlin",
|
|
141
|
-
"module": "kotlin-stdlib-jdk8",
|
|
142
|
-
"version": {
|
|
143
|
-
"requires": "1.6.10"
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
],
|
|
147
|
-
"files": [
|
|
148
|
-
{
|
|
149
|
-
"name": "react-native-0.70.5-debug.aar",
|
|
150
|
-
"url": "react-native-0.70.5-debug.aar",
|
|
151
|
-
"size": 32896271,
|
|
152
|
-
"sha512": "a75e86a070303e119cc4875d194740bc99a70dc4c538e994fe68fd7320a47d91c1c7094bccb923e36c51231e8ce6b8d0b2665a3e9aad246a63ca073decce4a68",
|
|
153
|
-
"sha256": "e9f11e2e7c0e95bdc8443566d9ba6cec9b9613ee09426832f38050edcf65b828",
|
|
154
|
-
"sha1": "650825ef196f2045dfe93cf7eff46ed6a9cb851e",
|
|
155
|
-
"md5": "8b6106b2cab596fdcdf1de5b495419dd"
|
|
156
|
-
}
|
|
157
|
-
]
|
|
158
|
-
},
|
|
159
|
-
{
|
|
160
|
-
"name": "debugVariantDefaultRuntimePublication",
|
|
161
|
-
"attributes": {
|
|
162
|
-
"com.android.build.api.attributes.BuildTypeAttr": "debug",
|
|
163
|
-
"org.gradle.category": "library",
|
|
164
|
-
"org.gradle.dependency.bundling": "external",
|
|
165
|
-
"org.gradle.libraryelements": "aar",
|
|
166
|
-
"org.gradle.usage": "java-runtime"
|
|
167
|
-
},
|
|
168
|
-
"dependencies": [
|
|
169
|
-
{
|
|
170
|
-
"group": "androidx.appcompat",
|
|
171
|
-
"module": "appcompat-resources",
|
|
172
|
-
"version": {
|
|
173
|
-
"requires": "1.4.1"
|
|
174
|
-
}
|
|
175
|
-
},
|
|
176
|
-
{
|
|
177
|
-
"group": "androidx.appcompat",
|
|
178
|
-
"module": "appcompat",
|
|
179
|
-
"version": {
|
|
180
|
-
"requires": "1.4.1"
|
|
181
|
-
}
|
|
182
|
-
},
|
|
183
|
-
{
|
|
184
|
-
"group": "androidx.autofill",
|
|
185
|
-
"module": "autofill",
|
|
186
|
-
"version": {
|
|
187
|
-
"requires": "1.1.0"
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
|
-
{
|
|
191
|
-
"group": "androidx.swiperefreshlayout",
|
|
192
|
-
"module": "swiperefreshlayout",
|
|
193
|
-
"version": {
|
|
194
|
-
"requires": "1.0.0"
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
{
|
|
198
|
-
"group": "com.facebook.fbjni",
|
|
199
|
-
"module": "fbjni-java-only",
|
|
200
|
-
"version": {
|
|
201
|
-
"requires": "0.2.2"
|
|
202
|
-
}
|
|
203
|
-
},
|
|
204
|
-
{
|
|
205
|
-
"group": "com.facebook.fresco",
|
|
206
|
-
"module": "fresco",
|
|
207
|
-
"version": {
|
|
208
|
-
"requires": "2.5.0"
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
{
|
|
212
|
-
"group": "com.facebook.fresco",
|
|
213
|
-
"module": "imagepipeline-okhttp3",
|
|
214
|
-
"version": {
|
|
215
|
-
"requires": "2.5.0"
|
|
216
|
-
}
|
|
217
|
-
},
|
|
218
|
-
{
|
|
219
|
-
"group": "com.facebook.fresco",
|
|
220
|
-
"module": "ui-common",
|
|
221
|
-
"version": {
|
|
222
|
-
"requires": "2.5.0"
|
|
223
|
-
}
|
|
224
|
-
},
|
|
225
|
-
{
|
|
226
|
-
"group": "com.facebook.infer.annotation",
|
|
227
|
-
"module": "infer-annotation",
|
|
228
|
-
"version": {
|
|
229
|
-
"requires": "0.18.0"
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
{
|
|
233
|
-
"group": "com.facebook.soloader",
|
|
234
|
-
"module": "soloader",
|
|
235
|
-
"version": {
|
|
236
|
-
"requires": "0.10.4"
|
|
237
|
-
}
|
|
238
|
-
},
|
|
239
|
-
{
|
|
240
|
-
"group": "com.facebook.yoga",
|
|
241
|
-
"module": "proguard-annotations",
|
|
242
|
-
"version": {
|
|
243
|
-
"requires": "1.19.0"
|
|
244
|
-
}
|
|
245
|
-
},
|
|
246
|
-
{
|
|
247
|
-
"group": "com.google.code.findbugs",
|
|
248
|
-
"module": "jsr305",
|
|
249
|
-
"version": {
|
|
250
|
-
"requires": "3.0.2"
|
|
251
|
-
}
|
|
252
|
-
},
|
|
253
|
-
{
|
|
254
|
-
"group": "com.squareup.okhttp3",
|
|
255
|
-
"module": "okhttp-urlconnection",
|
|
256
|
-
"version": {
|
|
257
|
-
"requires": "4.9.2"
|
|
258
|
-
}
|
|
259
|
-
},
|
|
260
|
-
{
|
|
261
|
-
"group": "com.squareup.okhttp3",
|
|
262
|
-
"module": "okhttp",
|
|
263
|
-
"version": {
|
|
264
|
-
"requires": "4.9.2"
|
|
265
|
-
}
|
|
266
|
-
},
|
|
267
|
-
{
|
|
268
|
-
"group": "com.squareup.okio",
|
|
269
|
-
"module": "okio",
|
|
270
|
-
"version": {
|
|
271
|
-
"requires": "2.9.0"
|
|
272
|
-
}
|
|
273
|
-
},
|
|
274
|
-
{
|
|
275
|
-
"group": "javax.inject",
|
|
276
|
-
"module": "javax.inject",
|
|
277
|
-
"version": {
|
|
278
|
-
"requires": "1"
|
|
279
|
-
}
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"group": "org.jetbrains.kotlin",
|
|
283
|
-
"module": "kotlin-stdlib-jdk8",
|
|
284
|
-
"version": {
|
|
285
|
-
"requires": "1.6.10"
|
|
286
|
-
}
|
|
287
|
-
}
|
|
288
|
-
],
|
|
289
|
-
"files": [
|
|
290
|
-
{
|
|
291
|
-
"name": "react-native-0.70.5-debug.aar",
|
|
292
|
-
"url": "react-native-0.70.5-debug.aar",
|
|
293
|
-
"size": 32896271,
|
|
294
|
-
"sha512": "a75e86a070303e119cc4875d194740bc99a70dc4c538e994fe68fd7320a47d91c1c7094bccb923e36c51231e8ce6b8d0b2665a3e9aad246a63ca073decce4a68",
|
|
295
|
-
"sha256": "e9f11e2e7c0e95bdc8443566d9ba6cec9b9613ee09426832f38050edcf65b828",
|
|
296
|
-
"sha1": "650825ef196f2045dfe93cf7eff46ed6a9cb851e",
|
|
297
|
-
"md5": "8b6106b2cab596fdcdf1de5b495419dd"
|
|
298
|
-
}
|
|
299
|
-
]
|
|
300
|
-
},
|
|
301
|
-
{
|
|
302
|
-
"name": "debugVariantDefaultSourcePublication",
|
|
303
|
-
"attributes": {
|
|
304
|
-
"com.android.build.api.attributes.BuildTypeAttr": "debug",
|
|
305
|
-
"org.gradle.category": "documentation",
|
|
306
|
-
"org.gradle.dependency.bundling": "external",
|
|
307
|
-
"org.gradle.docstype": "sources",
|
|
308
|
-
"org.gradle.usage": "java-runtime"
|
|
309
|
-
},
|
|
310
|
-
"files": [
|
|
311
|
-
{
|
|
312
|
-
"name": "react-native-0.70.5-debug-sources.jar",
|
|
313
|
-
"url": "react-native-0.70.5-debug-sources.jar",
|
|
314
|
-
"size": 1044828,
|
|
315
|
-
"sha512": "1cabc724dd44d1266c637d9db0a41e1d0d03d7b333770b173c7724bd56a318e43947bf1bd5f83734c4afdf5f695749bbb8e77c4df2268974cc23d8a7b399d179",
|
|
316
|
-
"sha256": "947f3bb8fe00e0d72d10eb3fe1bd00c181ee366fdf28fcd6e35794575faa1fb1",
|
|
317
|
-
"sha1": "c64ee18787feb457f9a4f3ffc888b0f312afe16c",
|
|
318
|
-
"md5": "74d86431fd9bc24b8769b1dcff698814"
|
|
319
|
-
}
|
|
320
|
-
]
|
|
321
|
-
},
|
|
322
|
-
{
|
|
323
|
-
"name": "releaseVariantDefaultApiPublication",
|
|
324
|
-
"attributes": {
|
|
325
|
-
"com.android.build.api.attributes.BuildTypeAttr": "release",
|
|
326
|
-
"org.gradle.category": "library",
|
|
327
|
-
"org.gradle.dependency.bundling": "external",
|
|
328
|
-
"org.gradle.libraryelements": "aar",
|
|
329
|
-
"org.gradle.usage": "java-api"
|
|
330
|
-
},
|
|
331
|
-
"dependencies": [
|
|
332
|
-
{
|
|
333
|
-
"group": "androidx.appcompat",
|
|
334
|
-
"module": "appcompat-resources",
|
|
335
|
-
"version": {
|
|
336
|
-
"requires": "1.4.1"
|
|
337
|
-
}
|
|
338
|
-
},
|
|
339
|
-
{
|
|
340
|
-
"group": "androidx.appcompat",
|
|
341
|
-
"module": "appcompat",
|
|
342
|
-
"version": {
|
|
343
|
-
"requires": "1.4.1"
|
|
344
|
-
}
|
|
345
|
-
},
|
|
346
|
-
{
|
|
347
|
-
"group": "androidx.autofill",
|
|
348
|
-
"module": "autofill",
|
|
349
|
-
"version": {
|
|
350
|
-
"requires": "1.1.0"
|
|
351
|
-
}
|
|
352
|
-
},
|
|
353
|
-
{
|
|
354
|
-
"group": "androidx.swiperefreshlayout",
|
|
355
|
-
"module": "swiperefreshlayout",
|
|
356
|
-
"version": {
|
|
357
|
-
"requires": "1.0.0"
|
|
358
|
-
}
|
|
359
|
-
},
|
|
360
|
-
{
|
|
361
|
-
"group": "com.facebook.fbjni",
|
|
362
|
-
"module": "fbjni-java-only",
|
|
363
|
-
"version": {
|
|
364
|
-
"requires": "0.2.2"
|
|
365
|
-
}
|
|
366
|
-
},
|
|
367
|
-
{
|
|
368
|
-
"group": "com.facebook.fresco",
|
|
369
|
-
"module": "fresco",
|
|
370
|
-
"version": {
|
|
371
|
-
"requires": "2.5.0"
|
|
372
|
-
}
|
|
373
|
-
},
|
|
374
|
-
{
|
|
375
|
-
"group": "com.facebook.fresco",
|
|
376
|
-
"module": "imagepipeline-okhttp3",
|
|
377
|
-
"version": {
|
|
378
|
-
"requires": "2.5.0"
|
|
379
|
-
}
|
|
380
|
-
},
|
|
381
|
-
{
|
|
382
|
-
"group": "com.facebook.fresco",
|
|
383
|
-
"module": "ui-common",
|
|
384
|
-
"version": {
|
|
385
|
-
"requires": "2.5.0"
|
|
386
|
-
}
|
|
387
|
-
},
|
|
388
|
-
{
|
|
389
|
-
"group": "com.facebook.infer.annotation",
|
|
390
|
-
"module": "infer-annotation",
|
|
391
|
-
"version": {
|
|
392
|
-
"requires": "0.18.0"
|
|
393
|
-
}
|
|
394
|
-
},
|
|
395
|
-
{
|
|
396
|
-
"group": "com.facebook.soloader",
|
|
397
|
-
"module": "soloader",
|
|
398
|
-
"version": {
|
|
399
|
-
"requires": "0.10.4"
|
|
400
|
-
}
|
|
401
|
-
},
|
|
402
|
-
{
|
|
403
|
-
"group": "com.facebook.yoga",
|
|
404
|
-
"module": "proguard-annotations",
|
|
405
|
-
"version": {
|
|
406
|
-
"requires": "1.19.0"
|
|
407
|
-
}
|
|
408
|
-
},
|
|
409
|
-
{
|
|
410
|
-
"group": "com.google.code.findbugs",
|
|
411
|
-
"module": "jsr305",
|
|
412
|
-
"version": {
|
|
413
|
-
"requires": "3.0.2"
|
|
414
|
-
}
|
|
415
|
-
},
|
|
416
|
-
{
|
|
417
|
-
"group": "com.squareup.okhttp3",
|
|
418
|
-
"module": "okhttp-urlconnection",
|
|
419
|
-
"version": {
|
|
420
|
-
"requires": "4.9.2"
|
|
421
|
-
}
|
|
422
|
-
},
|
|
423
|
-
{
|
|
424
|
-
"group": "com.squareup.okhttp3",
|
|
425
|
-
"module": "okhttp",
|
|
426
|
-
"version": {
|
|
427
|
-
"requires": "4.9.2"
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
|
-
{
|
|
431
|
-
"group": "com.squareup.okio",
|
|
432
|
-
"module": "okio",
|
|
433
|
-
"version": {
|
|
434
|
-
"requires": "2.9.0"
|
|
435
|
-
}
|
|
436
|
-
},
|
|
437
|
-
{
|
|
438
|
-
"group": "javax.inject",
|
|
439
|
-
"module": "javax.inject",
|
|
440
|
-
"version": {
|
|
441
|
-
"requires": "1"
|
|
442
|
-
}
|
|
443
|
-
},
|
|
444
|
-
{
|
|
445
|
-
"group": "org.jetbrains.kotlin",
|
|
446
|
-
"module": "kotlin-stdlib-jdk8",
|
|
447
|
-
"version": {
|
|
448
|
-
"requires": "1.6.10"
|
|
449
|
-
}
|
|
450
|
-
}
|
|
451
|
-
],
|
|
452
|
-
"files": [
|
|
453
|
-
{
|
|
454
|
-
"name": "react-native-0.70.5-release.aar",
|
|
455
|
-
"url": "react-native-0.70.5-release.aar",
|
|
456
|
-
"size": 12614227,
|
|
457
|
-
"sha512": "28f0e88dcd49bd32c355f11822fe299b81d88c69f9eb2f650ee933c09aa4a88364024b44e0237821a429dc1d7af4db46d4205a86755343bef91aa163b3e5c385",
|
|
458
|
-
"sha256": "591fab93fa3ff09b66748007dd4bcd4ae5f9da14bbf5ab5d6109cb1a29f9c918",
|
|
459
|
-
"sha1": "00c9f58ad16f8e6f11bc75ad826bf4e805f6ac69",
|
|
460
|
-
"md5": "50b3e7bf5bfc3acab1e9f498f988d3f0"
|
|
461
|
-
}
|
|
462
|
-
]
|
|
463
|
-
},
|
|
464
|
-
{
|
|
465
|
-
"name": "releaseVariantDefaultRuntimePublication",
|
|
466
|
-
"attributes": {
|
|
467
|
-
"com.android.build.api.attributes.BuildTypeAttr": "release",
|
|
468
|
-
"org.gradle.category": "library",
|
|
469
|
-
"org.gradle.dependency.bundling": "external",
|
|
470
|
-
"org.gradle.libraryelements": "aar",
|
|
471
|
-
"org.gradle.usage": "java-runtime"
|
|
472
|
-
},
|
|
473
|
-
"dependencies": [
|
|
474
|
-
{
|
|
475
|
-
"group": "androidx.appcompat",
|
|
476
|
-
"module": "appcompat-resources",
|
|
477
|
-
"version": {
|
|
478
|
-
"requires": "1.4.1"
|
|
479
|
-
}
|
|
480
|
-
},
|
|
481
|
-
{
|
|
482
|
-
"group": "androidx.appcompat",
|
|
483
|
-
"module": "appcompat",
|
|
484
|
-
"version": {
|
|
485
|
-
"requires": "1.4.1"
|
|
486
|
-
}
|
|
487
|
-
},
|
|
488
|
-
{
|
|
489
|
-
"group": "androidx.autofill",
|
|
490
|
-
"module": "autofill",
|
|
491
|
-
"version": {
|
|
492
|
-
"requires": "1.1.0"
|
|
493
|
-
}
|
|
494
|
-
},
|
|
495
|
-
{
|
|
496
|
-
"group": "androidx.swiperefreshlayout",
|
|
497
|
-
"module": "swiperefreshlayout",
|
|
498
|
-
"version": {
|
|
499
|
-
"requires": "1.0.0"
|
|
500
|
-
}
|
|
501
|
-
},
|
|
502
|
-
{
|
|
503
|
-
"group": "com.facebook.fbjni",
|
|
504
|
-
"module": "fbjni-java-only",
|
|
505
|
-
"version": {
|
|
506
|
-
"requires": "0.2.2"
|
|
507
|
-
}
|
|
508
|
-
},
|
|
509
|
-
{
|
|
510
|
-
"group": "com.facebook.fresco",
|
|
511
|
-
"module": "fresco",
|
|
512
|
-
"version": {
|
|
513
|
-
"requires": "2.5.0"
|
|
514
|
-
}
|
|
515
|
-
},
|
|
516
|
-
{
|
|
517
|
-
"group": "com.facebook.fresco",
|
|
518
|
-
"module": "imagepipeline-okhttp3",
|
|
519
|
-
"version": {
|
|
520
|
-
"requires": "2.5.0"
|
|
521
|
-
}
|
|
522
|
-
},
|
|
523
|
-
{
|
|
524
|
-
"group": "com.facebook.fresco",
|
|
525
|
-
"module": "ui-common",
|
|
526
|
-
"version": {
|
|
527
|
-
"requires": "2.5.0"
|
|
528
|
-
}
|
|
529
|
-
},
|
|
530
|
-
{
|
|
531
|
-
"group": "com.facebook.infer.annotation",
|
|
532
|
-
"module": "infer-annotation",
|
|
533
|
-
"version": {
|
|
534
|
-
"requires": "0.18.0"
|
|
535
|
-
}
|
|
536
|
-
},
|
|
537
|
-
{
|
|
538
|
-
"group": "com.facebook.soloader",
|
|
539
|
-
"module": "soloader",
|
|
540
|
-
"version": {
|
|
541
|
-
"requires": "0.10.4"
|
|
542
|
-
}
|
|
543
|
-
},
|
|
544
|
-
{
|
|
545
|
-
"group": "com.facebook.yoga",
|
|
546
|
-
"module": "proguard-annotations",
|
|
547
|
-
"version": {
|
|
548
|
-
"requires": "1.19.0"
|
|
549
|
-
}
|
|
550
|
-
},
|
|
551
|
-
{
|
|
552
|
-
"group": "com.google.code.findbugs",
|
|
553
|
-
"module": "jsr305",
|
|
554
|
-
"version": {
|
|
555
|
-
"requires": "3.0.2"
|
|
556
|
-
}
|
|
557
|
-
},
|
|
558
|
-
{
|
|
559
|
-
"group": "com.squareup.okhttp3",
|
|
560
|
-
"module": "okhttp-urlconnection",
|
|
561
|
-
"version": {
|
|
562
|
-
"requires": "4.9.2"
|
|
563
|
-
}
|
|
564
|
-
},
|
|
565
|
-
{
|
|
566
|
-
"group": "com.squareup.okhttp3",
|
|
567
|
-
"module": "okhttp",
|
|
568
|
-
"version": {
|
|
569
|
-
"requires": "4.9.2"
|
|
570
|
-
}
|
|
571
|
-
},
|
|
572
|
-
{
|
|
573
|
-
"group": "com.squareup.okio",
|
|
574
|
-
"module": "okio",
|
|
575
|
-
"version": {
|
|
576
|
-
"requires": "2.9.0"
|
|
577
|
-
}
|
|
578
|
-
},
|
|
579
|
-
{
|
|
580
|
-
"group": "javax.inject",
|
|
581
|
-
"module": "javax.inject",
|
|
582
|
-
"version": {
|
|
583
|
-
"requires": "1"
|
|
584
|
-
}
|
|
585
|
-
},
|
|
586
|
-
{
|
|
587
|
-
"group": "org.jetbrains.kotlin",
|
|
588
|
-
"module": "kotlin-stdlib-jdk8",
|
|
589
|
-
"version": {
|
|
590
|
-
"requires": "1.6.10"
|
|
591
|
-
}
|
|
592
|
-
}
|
|
593
|
-
],
|
|
594
|
-
"files": [
|
|
595
|
-
{
|
|
596
|
-
"name": "react-native-0.70.5-release.aar",
|
|
597
|
-
"url": "react-native-0.70.5-release.aar",
|
|
598
|
-
"size": 12614227,
|
|
599
|
-
"sha512": "28f0e88dcd49bd32c355f11822fe299b81d88c69f9eb2f650ee933c09aa4a88364024b44e0237821a429dc1d7af4db46d4205a86755343bef91aa163b3e5c385",
|
|
600
|
-
"sha256": "591fab93fa3ff09b66748007dd4bcd4ae5f9da14bbf5ab5d6109cb1a29f9c918",
|
|
601
|
-
"sha1": "00c9f58ad16f8e6f11bc75ad826bf4e805f6ac69",
|
|
602
|
-
"md5": "50b3e7bf5bfc3acab1e9f498f988d3f0"
|
|
603
|
-
}
|
|
604
|
-
]
|
|
605
|
-
},
|
|
606
|
-
{
|
|
607
|
-
"name": "releaseVariantDefaultSourcePublication",
|
|
608
|
-
"attributes": {
|
|
609
|
-
"com.android.build.api.attributes.BuildTypeAttr": "release",
|
|
610
|
-
"org.gradle.category": "documentation",
|
|
611
|
-
"org.gradle.dependency.bundling": "external",
|
|
612
|
-
"org.gradle.docstype": "sources",
|
|
613
|
-
"org.gradle.usage": "java-runtime"
|
|
614
|
-
},
|
|
615
|
-
"files": [
|
|
616
|
-
{
|
|
617
|
-
"name": "react-native-0.70.5-release-sources.jar",
|
|
618
|
-
"url": "react-native-0.70.5-release-sources.jar",
|
|
619
|
-
"size": 1044810,
|
|
620
|
-
"sha512": "253ca7b3b2b6953681ce77d43c2c75bbb6f4f6699e5fba3f2fdb657fd6e12ff578bc7ba8fa27945a017354daf2ef28f6bfaf22e87d68d34625b05c57d1999368",
|
|
621
|
-
"sha256": "19a94e1af4190b32e8ed0a463a7deeccfb4785a03cde91b88efafee0931f9c80",
|
|
622
|
-
"sha1": "3fe922c099cf22070fb5131914012269c68337e6",
|
|
623
|
-
"md5": "b4c3cdc59566abc5ea37bd6311ce818c"
|
|
624
|
-
}
|
|
625
|
-
]
|
|
626
|
-
}
|
|
627
|
-
]
|
|
628
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
c0dfc07b0961a25ba9ceb2b494f46bb6
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
80f317430557db0de3088903d62818e3e3f9b90c
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
a99732a86b4bc51cd3e2c1d87a16bec11f45ee151c264b2873b803a571caef1e
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
cd3ab73cec4f59e339a1f3f08a35a89e7a28bfee744e53b8eefbef873dbf96a075d46bb0de4142a0ffddfdaf4d1f139afd5108d39521fe28cd95e21068bbaf10
|