forked from yanzhenjie/NoFragment
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.gradle
31 lines (27 loc) · 977 Bytes
/
config.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
ext {
plugins = [
library : 'com.android.library',
application: 'com.android.application',
maven : 'com.github.dcendents.android-maven',
bintray : 'com.jfrog.bintray'
]
android = [
// build.
compileSdkVersion: 25,
buildToolsVersion: "25.0.2",
// defaultConfig.
applicationId : "com.yanzhenjie.fragment.sample",
minSdkVersion : 14,
targetSdkVersion : 25,
versionCode : 10,
versionName : "1.0",
]
dependencies = [
// android-support
design : 'com.android.support:design:25.1.0',
appcompat : 'com.android.support:appcompat-v7:25.1.0',
permission : 'com.yanzhenjie:permission:1.0.4',
fragment : 'com.yanzhenjie:fragment:1.0.0',
alertdialog: 'com.yanzhenjie.alertdialog:alertdialog:1.0.0'
]
}