omikit-plugin 3.2.29 → 3.2.30
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 +3 -6
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -30,7 +30,6 @@ def isNewArchitectureEnabled() {
|
|
|
30
30
|
|
|
31
31
|
apply plugin: 'com.android.library'
|
|
32
32
|
apply plugin: 'kotlin-android'
|
|
33
|
-
apply plugin: 'kotlin-kapt'
|
|
34
33
|
apply plugin: 'kotlin-parcelize'
|
|
35
34
|
|
|
36
35
|
|
|
@@ -104,7 +103,7 @@ dependencies {
|
|
|
104
103
|
// For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
|
|
105
104
|
// noinspection GradleDynamicVersion
|
|
106
105
|
// implementation "com.facebook.react:react-native"
|
|
107
|
-
api
|
|
106
|
+
api "vn.vihat.omicall:omi-sdk:2.2.41"
|
|
108
107
|
|
|
109
108
|
implementation "com.facebook.react:react-native:+" // From node_modules
|
|
110
109
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
@@ -115,7 +114,7 @@ dependencies {
|
|
|
115
114
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
116
115
|
implementation "androidx.lifecycle:lifecycle-process:2.6.1"
|
|
117
116
|
implementation "com.google.android.material:material:1.9.0"
|
|
118
|
-
implementation
|
|
117
|
+
implementation "com.google.firebase:firebase-messaging-ktx:23.1.2"
|
|
119
118
|
implementation("com.squareup.retrofit2:retrofit:2.9.0") {
|
|
120
119
|
exclude module: 'okhttp'
|
|
121
120
|
}
|
|
@@ -129,10 +128,8 @@ dependencies {
|
|
|
129
128
|
|
|
130
129
|
|
|
131
130
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
|
|
132
|
-
implementation "com.github.bumptech.glide:glide:4.15.1"
|
|
133
|
-
annotationProcessor "com.github.bumptech.glide:compiler:4.15.1"
|
|
134
131
|
implementation("androidx.work:work-runtime:2.8.1")
|
|
135
|
-
implementation
|
|
132
|
+
implementation "com.squareup.picasso:picasso:2.8"
|
|
136
133
|
|
|
137
134
|
def coroutines_version = '1.7.2'
|
|
138
135
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|