12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- plugins {
- id 'com.android.library'
- }
- android {
- compileSdkVersion rootProject.ext.android["compileSdkVersion"]
- buildToolsVersion rootProject.ext.android["buildToolsVersion"]
- defaultConfig {
- minSdkVersion rootProject.ext.android["minSdkVersion"]
- targetSdkVersion rootProject.ext.android["targetSdkVersion"]
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation rootProject.ext.dependencies["appcompat"]
- implementation rootProject.ext.dependencies["material"]
- implementation rootProject.ext.dependencies["gson"]
- implementation rootProject.ext.dependencies["eventbus"]
- implementation rootProject.ext.dependencies["glide"]
- // 添加base依赖
- implementation project(path: ':lib_base')
- implementation project(path: ':lib_common')
- // 支付宝刷脸
- api project(path: ':lib_face:LocalRepo')
- //AMPE
- implementation project(path: ':lib_ampe')
- implementation project(path: ':lib_common')
- implementation 'com.alibaba:fastjson:1.2.76'
- //国密ma4加解密及签名
- implementation 'com.blankj:utilcodex:1.31.1'
- implementation 'cn.hutool:hutool-all:5.4.5'
- implementation 'org.bouncycastle:bcprov-jdk15to18:1.69'
- }
|