@norcy/react-native-toolkit 0.1.146 → 0.1.147
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/android/build.gradle +5 -2
- package/android/settings.gradle +2 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
@@ -128,7 +128,10 @@ dependencies {
|
|
128
128
|
api 'com.facebook.react:react-native:+'
|
129
129
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
130
130
|
|
131
|
+
// react-native-splash-screen 强制依赖 - 宿主 App 必须安装
|
132
|
+
implementation project(':react-native-splash-screen')
|
133
|
+
|
131
134
|
// 友盟统计
|
132
|
-
|
133
|
-
|
135
|
+
implementation 'com.umeng.umsdk:common:9.6.3'
|
136
|
+
implementation 'com.umeng.umsdk:asms:1.8.0'
|
134
137
|
}
|