-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbuild.gradle
30 lines (25 loc) · 948 Bytes
/
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
apply plugin: 'com.android.library'
def androidRoot = rootProject.ext.android
android {
compileSdkVersion androidRoot.compileSdkVersion
defaultConfig {
minSdkVersion androidRoot.minSdkVersion
targetSdkVersion androidRoot.targetSdkVersion
versionCode androidRoot.versionCode
versionName androidRoot.versionName
testInstrumentationRunner androidRoot.testInstrumentationRunner
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation project(':baselib')
implementation 'com.wajahatkarim3.easyflipviewpager:easyflipviewpager:1.0.0'
}