Skip to content

Commit

Permalink
update version to 6.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
FatihUtkuKara committed Jul 22, 2024
1 parent c003130 commit 9445f87
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# Latest Version

***July 22, 2024*** - [Visilabs v6.3.1](https://github.com/relateddigital/visilabs-android/releases)
***July 22, 2024*** - [Visilabs v6.3.2](https://github.com/relateddigital/visilabs-android/releases)

# Latest Version [![Build Status](https://travis-ci.com/relateddigital/visilabs-android.svg?branch=master)](https://travis-ci.com/relateddigital/visilabs-android)

Expand Down Expand Up @@ -40,7 +40,7 @@ Add maven jitpack repository to your project/build.gradle file
Add Visilabs to the ```dependencies``` in app/build.gradle.

```java
implementation 'com.github.relateddigital:visilabs-android:6.3.1'
implementation 'com.github.relateddigital:visilabs-android:6.3.2'
```
This version uses AndroidX

Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ android {
minSdkVersion 21
targetSdkVersion 33
versionCode 1
versionName "6.3.1"
versionName "6.3.2"
multiDexEnabled true
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
6 changes: 3 additions & 3 deletions visilabs-android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ project.afterEvaluate {

ext {
PUBLISH_GROUP_ID = 'com.github.relateddigital'
PUBLISH_VERSION = "6.3.1"
PUBLISH_VERSION = "6.3.2"
PUBLISH_VERSION_CODE = "50"
PUBLISH_ARTIFACT_ID = 'visilabs-android'
}
Expand All @@ -32,8 +32,8 @@ android {
minSdkVersion 16
targetSdkVersion 33
versionCode 4
versionName "6.3.1"
buildConfigField 'String', 'VERSION_NAME', "\"6.3.1\""
versionName "6.3.2"
buildConfigField 'String', 'VERSION_NAME', "\"6.3.2\""
buildConfigField 'String', 'SDK_TYPE', "\"native\""
}
buildTypes {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
boolean accessCoarseLocationPermission = ContextCompat.checkSelfPermission(this,
Manifest.permission.ACCESS_COARSE_LOCATION) == PackageManager.PERMISSION_GRANTED;

//in version 6.3.2 it should look like this : ((!accessFineLocationPermission) || (!accessCoarseLocationPermission))
if ((!accessFineLocationPermission) || (!accessCoarseLocationPermission)) {
if (isLocationPopUpValid) {
showLocationPermissionPopUp();
Expand Down

0 comments on commit 9445f87

Please sign in to comment.