agora-appbuilder-core 3.0.2 → 3.0.3-beta.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
CHANGED
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"react": "16.13.1",
|
|
30
30
|
"react-dom": "16.13.1",
|
|
31
31
|
"react-is": "18.0.0",
|
|
32
|
-
"react-native": "0.63.
|
|
32
|
+
"react-native": "0.63.5",
|
|
33
33
|
"react-native-agora": "3.7.1",
|
|
34
34
|
"react-native-hyperlink": "0.0.19",
|
|
35
35
|
"react-native-inappbrowser-reborn": "3.5.1",
|
|
@@ -23295,9 +23295,9 @@
|
|
|
23295
23295
|
"integrity": "sha512-yUcBYdBBbo3QiPsgYDcfQcIkGZHfxOaoE6HLSnr1sPzMhdyxusbfKOSUbSd/ocGi32dxcj366PsTj+5oggeKKw=="
|
|
23296
23296
|
},
|
|
23297
23297
|
"node_modules/react-native": {
|
|
23298
|
-
"version": "0.63.
|
|
23299
|
-
"resolved": "https://registry.npmjs.org/react-native/-/react-native-0.63.
|
|
23300
|
-
"integrity": "sha512-
|
|
23298
|
+
"version": "0.63.5",
|
|
23299
|
+
"resolved": "https://registry.npmjs.org/react-native/-/react-native-0.63.5.tgz",
|
|
23300
|
+
"integrity": "sha512-unjHZOcHek2xxPkBbyqGO//2Z/AriKTwtDzGTT/ujGMRE3odDJk8wKtZregurQ9cpTUtu1Bj5R5bJv3gQIG5zw==",
|
|
23301
23301
|
"dependencies": {
|
|
23302
23302
|
"@babel/runtime": "^7.0.0",
|
|
23303
23303
|
"@react-native-community/cli": "^4.10.0",
|
|
@@ -47082,9 +47082,9 @@
|
|
|
47082
47082
|
"integrity": "sha512-yUcBYdBBbo3QiPsgYDcfQcIkGZHfxOaoE6HLSnr1sPzMhdyxusbfKOSUbSd/ocGi32dxcj366PsTj+5oggeKKw=="
|
|
47083
47083
|
},
|
|
47084
47084
|
"react-native": {
|
|
47085
|
-
"version": "0.63.
|
|
47086
|
-
"resolved": "https://registry.npmjs.org/react-native/-/react-native-0.63.
|
|
47087
|
-
"integrity": "sha512-
|
|
47085
|
+
"version": "0.63.5",
|
|
47086
|
+
"resolved": "https://registry.npmjs.org/react-native/-/react-native-0.63.5.tgz",
|
|
47087
|
+
"integrity": "sha512-unjHZOcHek2xxPkBbyqGO//2Z/AriKTwtDzGTT/ujGMRE3odDJk8wKtZregurQ9cpTUtu1Bj5R5bJv3gQIG5zw==",
|
|
47088
47088
|
"requires": {
|
|
47089
47089
|
"@babel/runtime": "^7.0.0",
|
|
47090
47090
|
"@react-native-community/cli": "^4.10.0",
|
|
@@ -19,6 +19,14 @@ buildscript {
|
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
allprojects {
|
|
22
|
+
//Fix: error: resource android:attr/lStar not found for agora-react-native-rtm
|
|
23
|
+
//https://issuetracker.google.com/issues/199180389
|
|
24
|
+
configurations.all {
|
|
25
|
+
resolutionStrategy {
|
|
26
|
+
force 'androidx.core:core:1.6.0'
|
|
27
|
+
force 'androidx.core:core-ktx:1.6.0'
|
|
28
|
+
}
|
|
29
|
+
}
|
|
22
30
|
repositories {
|
|
23
31
|
mavenLocal()
|
|
24
32
|
maven {
|
package/template/package.json
CHANGED