plugins { id 'com.android.application' id 'kotlin-android' } android { compileSdk 32 lintOptions { disable 'CoarseFineLocation' } defaultConfig { applicationId "com.amazon.location.android.quickstart" minSdk 21 targetSdk 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } 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' } } dependencies { implementation 'androidx.core:core-ktx:1.3.2' implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'com.google.android.material:material:1.3.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'org.maplibre.gl:android-sdk:9.5.2' implementation 'com.amplifyframework:aws-auth-cognito:1.31.3' implementation 'com.amplifyframework:aws-geo-location:0.3.1' implementation 'com.amplifyframework:maplibre-adapter:0.3.1' }