| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- plugins {
- id 'com.android.library'
- }
- android {
- // namespace 'redant.usai.com.apexmap'
- compileSdk = 36
- defaultConfig {
- minSdk = 28
- targetSdk = 36
- // testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- // proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_11
- targetCompatibility JavaVersion.VERSION_11
- }
- buildFeatures {
- viewBinding = true
- }
- namespace = 'redant.usai.com.apexmap'
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile).tap {
- configureEach {
- options.compilerArgs << "-Xlint:deprecation"
- options.compilerArgs << "-Xlint:unchecked"
- }
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- // implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'androidx.appcompat:appcompat:1.7.0'
- // api 'org.osmdroid:osmdroid-android:6.1.17'
- api 'org.osmdroid:osmdroid-android:6.1.20'
- }
|