build.gradle
1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
// com.android.library 标识这是一个库模块,是依附别的应用程序运行
apply plugin: 'com.android.library'
android {
// compileSdkVersion 29
// buildToolsVersion "29.0.2"
//
//
// defaultConfig {
// minSdkVersion 16
// targetSdkVersion 29
// versionCode 1
// versionName "1.0"
//
// testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
// consumerProguardFiles 'consumer-rules.pro'
// }
//
// buildTypes {
// release {
// minifyEnabled false
// proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
// }
// }
dataBinding {
enabled true
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation project(path: ':core:network')
// loading动画
implementation "com.wang.avi:library:$rootProject.avi"
// 蓝牙相关
implementation "com.clj.fastble:FastBleLib:$rootProject.BleLib"
// loading动画
implementation "com.wang.avi:library:$rootProject.avi"
}