| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- apply plugin: 'com.android.library'
- android {
- compileSdk 36
- defaultConfig {
- minSdkVersion 28
- targetSdkVersion 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.redant.usai.rapdflib'
- 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'
- implementation 'androidx.constraintlayout:constraintlayout:2.2.1'
- testImplementation 'junit:junit:4.13.2'
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
- // implementation 'com.github.barteksc:android-pdf-viewer:3.2.0-beta.1'
- implementation 'com.github.mhiew:android-pdf-viewer:3.2.0-beta.3'
- api project(path: ':RAUtilsLibrary')
- }
|