Skip to content

Commit

Permalink
Update HyperTrack SDK to 6.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-kuznetsov-hypertrack committed Feb 16, 2023
1 parent f6254a7 commit 579c754
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 24 deletions.
12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

16 changes: 10 additions & 6 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,22 @@ configurations.all {
}

android {
compileSdkVersion 30
buildToolsVersion "30.0.2"
compileSdkVersion 33
defaultConfig {
applicationId "com.hypertrack.live"
minSdkVersion 19
targetSdkVersion 30
minSdkVersion 23
targetSdkVersion 33
versionCode project.ext.versionNumber
versionName project.ext.versionName
testInstrumentationRunner
multiDexEnabled true
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

signingConfigs {

if (project.ext.keystorePath != null) {
Expand Down Expand Up @@ -91,7 +95,7 @@ dependencies {

implementation 'com.amazonaws:aws-android-sdk-mobile-client:2.16.7'

implementation 'com.hypertrack:hypertrack:4.9.0'
implementation 'com.hypertrack:hypertrack:6.4.0'
implementation 'com.hypertrack:hypertrack-views:0.8.6'
implementation 'com.hypertrack:maps-google:0.1.8'
implementation project(':hypertrack-backend')
Expand Down Expand Up @@ -122,4 +126,4 @@ def computeVersionNumber() {
return versionMajor * 1000000 + versionMinor * 10000 + versionPatch
}
throw new Exception("Could not read version.properties!")
}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/hypertrack/live/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public void onCreate() {

HyperTrack.enableDebugLogging();
if (!Places.isInitialized()) {
Places.initialize(getApplicationContext(), "AIzaSyBKZejrZNZpLlemrH28Nc46XzHsRSVRxKI");
Places.initialize(getApplicationContext(), "AIzaSyDlJnfZX9OsayqA3EtVtUI-yGa-OBRoseU");
}

SharedHelper sharedHelper = SharedHelper.getInstance(this);
Expand Down
13 changes: 8 additions & 5 deletions hypertrack-backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,23 @@ apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 29
buildToolsVersion "29.0.3"

compileSdkVersion 33

defaultConfig {
minSdkVersion 19
targetSdkVersion 29
minSdkVersion 23
targetSdkVersion 33
versionCode 1
versionName rootProject.version

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
consumerProguardFiles 'consumer-rules.pro'
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}

buildTypes {
release {
minifyEnabled false
Expand Down

0 comments on commit 579c754

Please sign in to comment.