36 lines
No EOL
835 B
Groovy
36 lines
No EOL
835 B
Groovy
plugins {
|
|
id 'com.android.application'
|
|
}
|
|
|
|
android {
|
|
namespace 'app.organicmaps.api.sample.pick_point'
|
|
compileSdk project.targetSdkVersion
|
|
|
|
defaultConfig {
|
|
applicationId "app.organicmaps.api.sample.pick_point"
|
|
minSdk project.minSdkVersion
|
|
targetSdk project.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility project.javaVersion
|
|
targetCompatibility project.javaVersion
|
|
}
|
|
}
|
|
|
|
tasks.withType(JavaCompile) {
|
|
options.compilerArgs << '-Xlint:unchecked' << '-Xlint:deprecation'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.android.material:material:1.12.0'
|
|
implementation project(path: ':lib')
|
|
} |