| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- plugins {
- id 'com.android.library'
- id 'maven-publish'
- }
- ext {
- GROUP_ID = 'com.wenext.android'
- ARTIFACT_ID = 'drawee'
- VERSION = '6.0.0'
- }
- if (project.FRAME_DEBUG != "true") {
- apply from: "../../publish.gradle"
- }
- android {
- namespace 'com.facebook.drawee'
- compileSdk libs.versions.compileSdk.get().toInteger()
- defaultConfig {
- minSdk libs.versions.minSdk.get().toInteger()
- targetSdk libs.versions.targetSdk.get().toInteger()
- }
- sourceSets {
- test {
- java {
- exclude '**/DebugControllerOverlayDrawableInternalTest.java'
- }
- }
- }
- packagingOptions {
- exclude 'NOTICE'
- exclude 'LICENSE'
- exclude 'LICENSE.txt'
- exclude 'META-INF/LICENSE'
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/NOTICE'
- exclude 'META-INF/NOTICE.txt'
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_17
- targetCompatibility JavaVersion.VERSION_17
- }
- lintOptions {
- abortOnError false
- }
- }
- dependencies {
- //androidx
- implementation libs.androidx.annotation
- implementation libs.infer.annotation
- //fresco
- implementation libs.fresco.imagepipeline
- implementation libs.fresco.imagepipeline.native
- implementation libs.fresco.memory.type.ashmem
- implementation libs.fresco.memory.type.native
- implementation libs.fresco.memory.type.java
- implementation libs.fresco.fbcore
- implementation libs.fresco.ui.common
- implementation libs.fresco.middleware
- }
|