@rownd/react-native 3.0.0 → 3.0.1
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 +15 -8
- package/android/build.gradle +1 -1
- package/package.json +1 -1
- package/rownd-react-native.podspec +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,7 @@ npx expo install expo-build-properties
|
|
|
38
38
|
{
|
|
39
39
|
"expo": {
|
|
40
40
|
"plugins": [
|
|
41
|
+
"@rownd/react-native",
|
|
41
42
|
[
|
|
42
43
|
"expo-build-properties",
|
|
43
44
|
{
|
|
@@ -58,8 +59,10 @@ npx expo install expo-build-properties
|
|
|
58
59
|
|
|
59
60
|
```json
|
|
60
61
|
{
|
|
61
|
-
"
|
|
62
|
-
"
|
|
62
|
+
"expo": {
|
|
63
|
+
"ios": {
|
|
64
|
+
"usesAppleSignIn": true
|
|
65
|
+
}
|
|
63
66
|
}
|
|
64
67
|
}
|
|
65
68
|
```
|
|
@@ -68,14 +71,18 @@ npx expo install expo-build-properties
|
|
|
68
71
|
|
|
69
72
|
```json
|
|
70
73
|
{
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
{
|
|
74
|
-
"
|
|
75
|
-
|
|
74
|
+
"expo": {
|
|
75
|
+
"ios": {
|
|
76
|
+
"infoPlist": {
|
|
77
|
+
"CFBundleURLTypes": [
|
|
78
|
+
{
|
|
79
|
+
"CFBundleURLSchemes": [
|
|
80
|
+
"com.googleusercontent.apps.xxxxxxxxxx-xxxxxxxxxxxxxxxxxxxxxx"
|
|
81
|
+
]
|
|
82
|
+
}
|
|
76
83
|
]
|
|
77
84
|
}
|
|
78
|
-
|
|
85
|
+
}
|
|
79
86
|
}
|
|
80
87
|
}
|
|
81
88
|
```
|
package/android/build.gradle
CHANGED
|
@@ -136,7 +136,7 @@ dependencies {
|
|
|
136
136
|
//noinspection GradleDynamicVersion
|
|
137
137
|
implementation "com.facebook.react:react-native:+"
|
|
138
138
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
139
|
-
implementation 'io.rownd:android:2.6.
|
|
139
|
+
implementation 'io.rownd:android:2.6.6'
|
|
140
140
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2"
|
|
141
141
|
implementation 'androidx.compose.ui:ui-unit:1.3.0'
|
|
142
142
|
implementation 'androidx.compose.ui:ui-graphics:1.3.0'
|
package/package.json
CHANGED
|
@@ -17,7 +17,7 @@ Pod::Spec.new do |s|
|
|
|
17
17
|
s.source_files = "ios/**/*.{h,m,mm,swift}"
|
|
18
18
|
|
|
19
19
|
s.dependency "React-Core"
|
|
20
|
-
s.dependency "Rownd", "~> 3.0.
|
|
20
|
+
s.dependency "Rownd", "~> 3.0.1"
|
|
21
21
|
|
|
22
22
|
# Don't install the dependencies when we run `pod install` in the old architecture.
|
|
23
23
|
if ENV['RCT_NEW_ARCH_ENABLED'] == '1' then
|