plugins { id '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' } } compileOptions { sourceCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_11 } namespace = 'com.usai.commoneditorlib' gradle.projectsEvaluated { tasks.withType(JavaCompile).tap { configureEach { 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' implementation 'androidx.appcompat:appcompat:1.7.0' implementation 'com.google.android.material:material:1.12.0' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'androidx.constraintlayout:constraintlayout:2.2.1' // 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') }