52 lines
1.5 KiB
Groovy
52 lines
1.5 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'com.google.android.libraries.mapsplatform.secrets-gradle-plugin'
|
|
|
|
android {
|
|
compileSdkVersion 31
|
|
buildToolsVersion "31.0.0"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 21
|
|
targetSdkVersion 31
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
|
|
}
|
|
}
|
|
buildFeatures {
|
|
viewBinding false
|
|
}
|
|
|
|
lintOptions {
|
|
checkReleaseBuilds false
|
|
// Or, if you prefer, you can continue to check for errors in release builds,
|
|
// but continue the build even when errors are found:
|
|
//abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation files('libs/Citizen_Android_1063.jar')
|
|
|
|
// support libraries
|
|
implementation 'androidx.appcompat:appcompat:1.4.1'
|
|
implementation 'com.google.android.material:material:1.5.0'
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.2.1'
|
|
implementation 'androidx.media:media:1.5.0'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
|
|
implementation 'com.google.android.gms:play-services-auth:20.1.0'
|
|
|
|
// Fused location provider with and without google services
|
|
implementation 'com.google.android.gms:play-services-location:19.0.1'
|
|
|
|
// Google maps library
|
|
implementation 'com.google.android.gms:play-services-maps:18.0.2'
|
|
|
|
// add Gson
|
|
implementation 'com.google.code.gson:gson:2.8.6'
|
|
}
|