Skip to content

Commit

Permalink
Merge pull request #139 from velocitycareerlabs/VL-8411-v2.6.3
Browse files Browse the repository at this point in the history
v2.6.3
  • Loading branch information
michaelavoyan authored Oct 15, 2024
2 parents 7edaa20 + af75879 commit 7654a60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions VCL/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
defaultConfig {
minSdk 24
targetSdk 34
versionName "2.6.0"
versionCode 148
versionName "2.6.3"
versionCode 149
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles "consumer-rules.pro"
}
Expand Down
5 changes: 3 additions & 2 deletions VCL/src/main/java/io/velocitycareerlabs/impl/VCLImpl.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
package io.velocitycareerlabs.impl

import android.content.Context
import android.util.Log
import io.velocitycareerlabs.api.VCL
import io.velocitycareerlabs.api.entities.*
import io.velocitycareerlabs.api.entities.error.VCLError
Expand Down Expand Up @@ -555,6 +556,6 @@ internal fun VCLImpl.logError(message: String = "", error: VCLError) {
}

internal fun VCLImpl.printVersion() {
VCLLog.d("VCL", "Version: ${GlobalConfig.VersionName}")
VCLLog.d("VCL", "Build: ${GlobalConfig.VersionCode}")
Log.i("VCL", "Version: ${GlobalConfig.VersionName}")
Log.i("VCL", "Build: ${GlobalConfig.VersionCode}")
}

0 comments on commit 7654a60

Please sign in to comment.