forked from bcmapp/bcm-android
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
50 lines (39 loc) · 1.12 KB
/
build.gradle
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
48
49
50
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
apply from: '../proguard/proguardconfig.gradle'
android {
compileSdkVersion compile_sdk_version as int
defaultConfig {
minSdkVersion min_sdk_version as int
targetSdkVersion target_sdk_version as int
versionCode 1
versionName "1.0"
resourcePrefix 'wallet_'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
// javaCompileOptions {
// annotationProcessorOptions {
// arguments = [MODULE_NAME: 'wallet']
// }
// }
}
sourceSets {
main {
jniLibs.srcDirs = ['libs']
assets.srcDirs = ['assets']
}
}
}
kapt {
generateStubs = true
arguments {
arg("MODULE_NAME", project.getName())
}
}
dependencies {
api project(':login')
api 'com.bcm.messenger.wallet:wallet-support:1.0.0'
kapt 'com.bcm.router:processor:1.0.0'
kapt "androidx.lifecycle:lifecycle-compiler:$lifecycle_compiler_version"
}