| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- plugins {
- id 'com.android.library'
- }
- android {
- // namespace 'redant.usai.com.apexmap'
- compileSdk 34
- defaultConfig {
- minSdk 28
- targetSdkVersion 34
- 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) {
- // options.compilerArgs << "-Xlint:deprecation"
- // options.compilerArgs << "-Xlint:unchecked"
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.6.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.17'
- }
|