plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id "de.mannodermaus.android-junit5" } android { namespace 'eu.ztsh.garmin' compileSdk 34 ndkVersion "23.2.8568313" defaultConfig { applicationId "eu.ztsh.garmin" minSdk 29 targetSdk 34 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" buildConfigField "String", "MAPBOX_DOWNLOADS_TOKEN", "\"$MAPBOX_DOWNLOADS_TOKEN\"" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } kotlinOptions { jvmTarget = '1.8' } buildFeatures { viewBinding true buildConfig = true } } ext { mapboxVersion = '3.2.0' } dependencies { implementation "com.mapbox.navigationcore:navigation:$mapboxVersion" implementation "com.mapbox.navigationcore:ui-maps:$mapboxVersion" implementation "com.mapbox.navigationcore:voice:$mapboxVersion" implementation "com.mapbox.navigationcore:tripdata:$mapboxVersion" implementation "com.mapbox.navigationcore:ui-components:$mapboxVersion" implementation 'androidx.core:core-ktx:1.13.1' implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.4' testImplementation 'org.junit.jupiter:junit-jupiter:5.8.1' androidTestImplementation 'androidx.test.ext:junit:1.2.1' androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1' }