omikit-plugin 3.2.30 → 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 +4 -11
- package/android/settings.gradle +27 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -99,17 +99,14 @@ allprojects {
|
|
|
99
99
|
def kotlin_version = getExtOrDefault("kotlinVersion")
|
|
100
100
|
|
|
101
101
|
dependencies {
|
|
102
|
-
|
|
103
|
-
//
|
|
104
|
-
|
|
105
|
-
|
|
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
106
|
api "vn.vihat.omicall:omi-sdk:2.2.41"
|
|
107
107
|
|
|
108
108
|
implementation "com.facebook.react:react-native:+" // From node_modules
|
|
109
109
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
110
|
-
// implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
|
111
|
-
// implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
112
|
-
// implementation files('OmiSDK.aar')
|
|
113
110
|
implementation "com.google.android.flexbox:flexbox:3.0.0"
|
|
114
111
|
implementation "androidx.appcompat:appcompat:1.6.1"
|
|
115
112
|
implementation "androidx.lifecycle:lifecycle-process:2.6.1"
|
|
@@ -124,11 +121,7 @@ dependencies {
|
|
|
124
121
|
implementation "com.squareup.okhttp3:logging-interceptor:4.9.1"
|
|
125
122
|
implementation "com.google.code.gson:gson:2.8.9"
|
|
126
123
|
|
|
127
|
-
implementation "androidx.security:security-crypto:1.1.0-alpha06"
|
|
128
|
-
|
|
129
|
-
|
|
130
124
|
implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.0"))
|
|
131
|
-
implementation("androidx.work:work-runtime:2.8.1")
|
|
132
125
|
implementation "com.squareup.picasso:picasso:2.8"
|
|
133
126
|
|
|
134
127
|
def coroutines_version = '1.7.2'
|
|
@@ -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
|
+
}
|