forked from Cicinnus0407/CatEye
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.gradle
83 lines (77 loc) · 2.67 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
apply plugin: 'com.android.application'
apply plugin: 'org.greenrobot.greendao'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.cicinnus.cateye"
minSdkVersion rootProject.ext.android["minSdkVersion"]
targetSdkVersion rootProject.ext.android["targetSdkVersion"]
versionCode rootProject.ext.android["versionCode"]
versionName rootProject.ext.android["versionName"]
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
ndk { //设置支持的SO库架构(开发者可以根据需要,选择一个或多个平台的so)
abiFilters "armeabi" }
}
signingConfigs {
config {
storeFile file("mykey.jks")
storePassword 'cicinnus1'
keyAlias "cicinnus"
keyPassword 'cicinnus1'
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
signingConfig signingConfigs.config
}
debug {
minifyEnabled false
signingConfig signingConfigs.config
}
}
greendao {
schemaVersion 1
daoPackage 'com.cicinnus.greendao.gen'
targetGenDir 'src/main/java'
}
}
dependencies {
testCompile 'junit:junit:4.12'
compile fileTree(include: ['*.jar'], dir: 'libs')
compile project(':rrmlib')
//SupportDesign
compile rootProject.ext.dependencies["design"]
//AppCompat-v7
compile rootProject.ext.dependencies["appcompat-v7"]
//CardView
compile rootProject.ext.dependencies["cardview-v7"]
//RecyclerView
compile rootProject.ext.dependencies["recyclerview-v7"]
//GridLayout
compile rootProject.ext.dependencies["gridlayout-v7"]
//ButterKnife
annotationProcessor rootProject.ext.dependencies["butterknife-compiler"]
//BaseRecyclerViewAdapterHelper
compile rootProject.ext.dependencies["BRVAH"]
//Glide图片加载
compile rootProject.ext.dependencies["glide"]
//GreenDao3
compile rootProject.ext.dependencies["GreenDao"]
//日志
compile 'com.orhanobut:logger:1.15'
//内存泄漏检测
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.5'
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
testCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.5'
//流式布局
compile 'com.zhy:flowlayout-lib:1.0.3'
//jCPlayer
compile 'fm.jiecao:jiecaovideoplayer:5.4'
//RxBus
// compile 'com.hwangjr.rxbus:rxbus:1.0.5'
//高德定位
compile 'com.amap.api:location:3.4.0'
}