| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- plugins {
- id 'com.android.library'
- }
- android {
- compileSdk 35
- defaultConfig {
- minSdkVersion 28
- targetSdkVersion 35
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- consumerProguardFiles "consumer-rules.pro"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_11
- targetCompatibility JavaVersion.VERSION_11
- }
- namespace 'com.usai.commoneditorlib'
- gradle.projectsEvaluated {
- tasks.withType(JavaCompile) {
- // options.compilerArgs << "-Xlint:deprecation"
- // options.compilerArgs << "-Xlint:unchecked"
- }
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.6.1'
- implementation 'com.google.android.material:material:1.8.0'
- implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
- // testImplementation 'junit:junit:4.+'
- // androidTestImplementation 'androidx.test.ext:junit:1.1.3'
- // androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
- implementation project(path: ':RAUtilsLibrary')
- }
|