123456789101112131415161718192021222324252627282930313233343536373839 |
- 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"]
- // 添加base依赖
- implementation project(path: ':lib_base')
- //AMPE
- implementation project(path: ':lib_ampe')
- //aar文件
- implementation project(path: ':lib_asr:localrepo')
- }
|