Skip to content

Commit

Permalink
release: release version 3.1.39
Browse files Browse the repository at this point in the history
  • Loading branch information
TranHoaiHung committed Jul 19, 2024
1 parent 1e8b9e7 commit d034056
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 41 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.


## 3.1.39
- Change repo maven


## 3.1.38
- Pump OMI core IOS to version 1.7.25
- Fix missed omi_id off incoming call ios
Expand Down
36 changes: 18 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ omicall_flutter_plugin: ^latest_version
```
jcenter()
maven {
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
credentials(HttpHeaderCredentials) {
name = "Private-Token"
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
}
authentication {
header(HttpHeaderAuthentication)
}
}
url "https://maven.pkg.github.com/omicall/OMICall-SDK"
credentials {
username = OMI_USER
password = OMI_TOKEN
}
authentication {
basic(BasicAuthentication)
}
}
```

```
Expand All @@ -51,15 +51,15 @@ allprojects {
google()
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven {
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
credentials(HttpHeaderCredentials) {
name = "Private-Token"
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
}
authentication {
header(HttpHeaderAuthentication)
}
maven {
url "https://maven.pkg.github.com/omicall/OMICall-SDK"
credentials {
username = OMI_USER
password = OMI_TOKEN
}
authentication {
basic(BasicAuthentication)
}
}
}
}
Expand Down
22 changes: 11 additions & 11 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ buildscript {
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven {
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
credentials(HttpHeaderCredentials) {
name = "Private-Token"
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
url "https://maven.pkg.github.com/omicall/OMICall-SDK"
credentials {
username = "${omicallUsername}"
password = "${omicallPassword}"
}
authentication {
header(HttpHeaderAuthentication)
basic(BasicAuthentication)
}
}
}
Expand All @@ -35,13 +35,13 @@ allprojects {
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven {
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
credentials(HttpHeaderCredentials) {
name = "Private-Token"
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
url "https://maven.pkg.github.com/omicall/OMICall-SDK"
credentials {
username = "${omicallUsername}"
password = "${omicallPassword}"
}
authentication {
header(HttpHeaderAuthentication)
basic(BasicAuthentication)
}
}
}
Expand Down Expand Up @@ -80,7 +80,7 @@ android {

dependencies {

api 'vn.vihat.omicall:omi-sdk:2.2.83'
api 'vn.vihat.omicall:omi-sdk:2.2.85'
implementation "androidx.security:security-crypto:1.1.0-alpha06"

implementation("androidx.work:work-runtime:2.8.1")
Expand Down
2 changes: 1 addition & 1 deletion example/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ android {

defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "com.omikitpluginexample"
applicationId "vn.vihat.omicall"
minSdkVersion 24
targetSdkVersion 33
versionCode flutterVersionCode.toInteger()
Expand Down
20 changes: 10 additions & 10 deletions example/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ buildscript {
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven {
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
credentials(HttpHeaderCredentials) {
name = "Private-Token"
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
url "https://maven.pkg.github.com/omicall/OMICall-SDK"
credentials {
username = "${omicallUsername}"
password = "${omicallPassword}"
}
authentication {
header(HttpHeaderAuthentication)
basic(BasicAuthentication)
}
}
}
Expand All @@ -30,13 +30,13 @@ allprojects {
mavenCentral()
jcenter() // Warning: this repository is going to shut down soon
maven {
url "https://gitlab.com/api/v4/projects/47675059/packages/maven"
credentials(HttpHeaderCredentials) {
name = "Private-Token"
value = "glpat-AzyyrvKz9_pjsgGW4xfp"
url "https://maven.pkg.github.com/omicall/OMICall-SDK"
credentials {
username = "${omicallUsername}"
password = "${omicallPassword}"
}
authentication {
header(HttpHeaderAuthentication)
basic(BasicAuthentication)
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: omicall_flutter_plugin
description: OmiKit Flutter is wrapper SDK for OmiCall for Application easy integrate features of Omicall Like Call App2App/App2Phone, Video Call.
version: 3.1.38
version: 3.1.39
homepage: https://github.com/VIHATTeam/OMICALL-Flutter-SDK

environment:
Expand Down

0 comments on commit d034056

Please sign in to comment.