Skip to content

Commit

Permalink
release to stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
Arief Nur Putranto committed Jul 28, 2023
1 parent 869a907 commit 8719e3c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Second, you need to add SDK dependencies inside your app .gradle. Then, you need
```
dependencies {
...
implementation 'com.qiscus.sdk:chat-core:1.6.10'
implementation 'com.qiscus.sdk:chat-core:1.7.0'
}
```

Expand Down
6 changes: 3 additions & 3 deletions chat-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ android {
it.buildConfigField("String", "BASE_URL_SERVER", BASE_URL_SERVER)
it.buildConfigField("String", "BASE_URL_MQTT_BROKER", BASE_URL_MQTT_BROKER)
it.buildConfigField("String", "BASE_URL_MQTT_LB", BASE_URL_MQTT_LB)
// it.buildConfigField("Integer", "CHAT_CORE_VERSION_MAJOR", chatCoreVersionMajor)
// it.buildConfigField("Integer", "CHAT_CORE_VERSION_MINOR", chatCoreVersionMinor)
// it.buildConfigField("Integer", "CHAT_CORE_VERSION_PATCH", chatCoreVersionPatch)
it.buildConfigField("Integer", "CHAT_CORE_VERSION_MAJOR", chatCoreVersionMajor)
it.buildConfigField("Integer", "CHAT_CORE_VERSION_MINOR", chatCoreVersionMinor)
it.buildConfigField("Integer", "CHAT_CORE_VERSION_PATCH", chatCoreVersionPatch)
it.buildConfigField("Integer", "CHAT_BUILT_IN_VERSION_MAJOR", chatVersionMajor)
it.buildConfigField("Integer", "CHAT_BUILT_IN_VERSION_MINOR", chatVersionMinor)
it.buildConfigField("Integer", "CHAT_BUILT_IN_VERSION_PATCH", chatVersionPatch)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,10 @@ private static Request.Builder createNewBuilder(Interceptor.Chain chain) {
BuildConfig.CHAT_BUILT_IN_VERSION_MINOR + "." +
BuildConfig.CHAT_BUILT_IN_VERSION_PATCH);
} else {
// builder.addHeader(VERSION, ANDROID_PARAM + "_" +
// BuildConfig.CHAT_CORE_VERSION_MAJOR + "." +
// BuildConfig.CHAT_CORE_VERSION_MINOR + "." +
// BuildConfig.CHAT_CORE_VERSION_PATCH);
builder.addHeader(VERSION, ANDROID_PARAM + "_" +
"1.7.0-beta.4");
BuildConfig.CHAT_CORE_VERSION_MAJOR + "." +
BuildConfig.CHAT_CORE_VERSION_MINOR + "." +
BuildConfig.CHAT_CORE_VERSION_PATCH);
}
builder.addHeader(PLATFORM, ANDROID_PARAM);
builder.addHeader(DEVICE_BRAND, Build.MANUFACTURER);
Expand Down
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ Secondly, you need to add SDK dependencies inside your app .gradle. Then, you ne
```
dependencies {
...
implementation 'com.qiscus.sdk:chat-core:1.6.10'
implementation 'com.qiscus.sdk:chat-core:1.7.0'
}
```

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ chatVersionPatch=0
# === qiscus chat-core library version ===
chatCoreVersionMajor=1
chatCoreVersionMinor=7
chatCoreVersionPatch=0-beta.4
chatCoreVersionPatch=0

# === qiscus default base url
BASE_URL_SERVER="https://api.qiscus.com/"
Expand All @@ -59,7 +59,7 @@ android.enableJetifier=true

libraryGroupId=com.qiscus.sdk
libraryArtifactId=chat-core
libraryVersion=1.7.0-beta.4
libraryVersion=1.7.0

libraryGroupIdChat=com.qiscus.sdk
libraryArtifactIdChat=chat
Expand Down

0 comments on commit 8719e3c

Please sign in to comment.