omikit-plugin 3.2.29 → 3.2.31
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 +7 -17
- package/android/settings.gradle +27 -0
- 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
|
|
|
@@ -100,22 +99,19 @@ allprojects {
|
|
|
100
99
|
def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
101
100
|
|
|
102
101
|
dependencies {
|
|
103
|
-
|
|
104
|
-
//
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
api
|
|
102
|
+
|
|
103
|
+
// use for OMISDK
|
|
104
|
+
implementation("androidx.work:work-runtime:2.8.1")
|
|
105
|
+
implementation "androidx.security:security-crypto:1.1.0-alpha06"
|
|
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"
|
|
111
|
-
// implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
|
112
|
-
// implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
113
|
-
// implementation files('OmiSDK.aar')
|
|
114
110
|
implementation "com.google.android.flexbox:flexbox:3.0.0"
|
|
115
111
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
116
112
|
implementation "androidx.lifecycle:lifecycle-process:2.6.1"
|
|
117
113
|
implementation "com.google.android.material:material:1.9.0"
|
|
118
|
-
implementation
|
|
114
|
+
implementation "com.google.firebase:firebase-messaging-ktx:23.1.2"
|
|
119
115
|
implementation("com.squareup.retrofit2:retrofit:2.9.0") {
|
|
120
116
|
exclude module: 'okhttp'
|
|
121
117
|
}
|
|
@@ -125,14 +121,8 @@ dependencies {
|
|
|
125
121
|
implementation "com.squareup.okhttp3:logging-interceptor:4.9.1"
|
|
126
122
|
implementation "com.google.code.gson:gson:2.8.9"
|
|
127
123
|
|
|
128
|
-
implementation "androidx.security:security-crypto:1.1.0-alpha06"
|
|
129
|
-
|
|
130
|
-
|
|
131
124
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
|
|
132
|
-
implementation "com.
|
|
133
|
-
annotationProcessor "com.github.bumptech.glide:compiler:4.15.1"
|
|
134
|
-
implementation("androidx.work:work-runtime:2.8.1")
|
|
135
|
-
implementation 'com.squareup.picasso:picasso:2.8'
|
|
125
|
+
implementation "com.squareup.picasso:picasso:2.8"
|
|
136
126
|
|
|
137
127
|
def coroutines_version = '1.7.2'
|
|
138
128
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
pluginManagement {
|
|
2
|
+
repositories {
|
|
3
|
+
google()
|
|
4
|
+
mavenCentral()
|
|
5
|
+
gradlePluginPortal()
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
dependencyResolutionManagement {
|
|
9
|
+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
10
|
+
repositories {
|
|
11
|
+
google()
|
|
12
|
+
mavenCentral()
|
|
13
|
+
maven {
|
|
14
|
+
url "https://jitpack.io"
|
|
15
|
+
}
|
|
16
|
+
maven {
|
|
17
|
+
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
|
|
18
|
+
credentials(HttpHeaderCredentials) {
|
|
19
|
+
name = "Private-Token"
|
|
20
|
+
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
|
|
21
|
+
}
|
|
22
|
+
authentication {
|
|
23
|
+
header(HttpHeaderAuthentication)
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
}
|