build.gradle 1.23 KB
apply plugin: 'com.android.library'

android {
    compileSdkVersion 28
    defaultConfig {
        minSdkVersion 16
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

    lintOptions {
        abortOnError false
    }
}

dependencies {
    api fileTree(dir: 'libs', include: ['*.jar','*.aar'])
    implementation "com.android.support:appcompat-v7:${SUPPORT_VERSION}"
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    implementation files('libs\\bcprov-jdk15on-1.60.jar')
    implementation files('libs\\commons-codec-1.3.jar')
    implementation files('libs\\commons-httpclient-3.1.jar')
    implementation files('libs\\commons-io-1.4.jar')
    implementation files('libs\\commons-lang-2.6.jar')
    implementation files('libs\\commons-logging-1.1.1.jar')
    implementation files('libs\\dom4j-1.6.1.jar')
    implementation files('libs\\fastjson-1.1.36.jar')
    implementation files('libs\\junit.jar')
    implementation files('libs\\log4j-1.2.15.jar')
    implementation 'com.github.bumptech.glide:glide:4.6.1'
}