omikit-plugin 3.2.30 → 3.2.32

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.
@@ -99,17 +99,14 @@ allprojects {
99
99
  def kotlin_version = getExtOrDefault("kotlinVersion")
100
100
 
101
101
  dependencies {
102
- // For < 0.71, this will be from the local maven repo
103
- // For > 0.71, this will be replaced by `com.facebook.react:react-android:$version` by react gradle plugin
104
- // noinspection GradleDynamicVersion
105
- // implementation "com.facebook.react:react-native"
106
- api "vn.vihat.omicall:omi-sdk:2.2.41"
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.42'
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "omikit-plugin",
3
- "version": "3.2.30",
3
+ "version": "3.2.32",
4
4
  "description": "Omikit Plugin by ViHAT",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",