| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: 'com.android.library'
- android {
- compileSdk= 36
- defaultConfig {
- minSdk = 28
- targetSdk = 36
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- // proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- namespace = 'com.usai.redant.ralocationlib'
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_11
- targetCompatibility JavaVersion.VERSION_11
- }
- 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.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- api project(':RAUtilsLibrary')
- api 'com.google.android.gms:play-services-location:21.0.1'
- }
|