@digiotech/react-native 2.0.0 → 2.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 +20 -0
- package/android/build.gradle +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -160,6 +160,26 @@ A fintech Android app can't access the following permission
|
|
|
160
160
|
- Read_phone_numbers
|
|
161
161
|
- Read_media_videos
|
|
162
162
|
|
|
163
|
+
## You get a build error due to a theme issue.
|
|
164
|
+
- Please add tools:replace="android:theme" under your android manifest.
|
|
165
|
+
```
|
|
166
|
+
<application
|
|
167
|
+
....
|
|
168
|
+
tools:replace="android:theme"
|
|
169
|
+
...
|
|
170
|
+
>
|
|
171
|
+
.....
|
|
172
|
+
</application>
|
|
173
|
+
|
|
174
|
+
```
|
|
175
|
+
## You get a build error due to a duplicate class android.support.v4
|
|
176
|
+
- Check your gradle.properties below should be added.
|
|
177
|
+
```
|
|
178
|
+
android.enableJetifier=true
|
|
179
|
+
reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
|
|
180
|
+
|
|
181
|
+
```
|
|
182
|
+
|
|
163
183
|
### IOS Permission
|
|
164
184
|
|
|
165
185
|
Permissions need to add in your info.plist
|
package/android/build.gradle
CHANGED
|
@@ -89,7 +89,7 @@ dependencies {
|
|
|
89
89
|
//noinspection GradleDynamicVersion
|
|
90
90
|
implementation "com.facebook.react:react-native:+"
|
|
91
91
|
// core dependencies
|
|
92
|
-
implementation(platform("com.github.digio-tech:digio-bom:v1.0.
|
|
92
|
+
implementation(platform("com.github.digio-tech:digio-bom:v1.0.10"))
|
|
93
93
|
implementation("androidx.appcompat:appcompat")
|
|
94
94
|
implementation("com.google.android.material:material")
|
|
95
95
|
implementation("androidx.navigation:navigation-fragment-ktx")
|