-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathbuild.gradle
39 lines (36 loc) · 1.32 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
apply plugin: 'com.android.application'
android {
compileSdkVersion androidCompileSdkVersion
buildToolsVersion androidBuildToolVersion
defaultConfig {
applicationId "com.xiaofeng.androidlibs"
minSdkVersion androidMinSdkVersion
targetSdkVersion androidTargetSdkVersion
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
incremental true
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile(group: 'com.android.support', name: 'design', version: supportLibVersion)
compile(group: 'com.android.support', name: 'appcompat-v7', version: supportLibVersion)
compile(group: 'com.android.support', name: 'recyclerview-v7', version: supportLibVersion)
compile(group: 'com.android.support', name: 'recyclerview-v7', version: supportLibVersion)
compile 'com.xiaofeng.android:flowlayoutmanager:1.2.3.2'
compile 'us.feras.mdv:markdownview:1.1.0'
compile 'com.android.support:support-v4:23.3.0'
}