| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- plugins {
- id 'com.android.library'
- }
- android {
- // namespace 'redant.usai.com.apexmap'
- compileSdkVersion 33
- defaultConfig {
- minSdk 28
- targetSdkVersion 33
- 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
- }
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile) {
- // options.compilerArgs << "-Xlint:deprecation"
- // options.compilerArgs << "-Xlint:unchecked"
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.5.1'
- // testImplementation 'junit:junit:4.12'
- // androidTestImplementation 'com.android.support.test:runner:1.0.2'
- // androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- api 'org.osmdroid:osmdroid-android:6.1.14'
- }
|