forked from Sunzxyong/Tiny
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (38 loc) · 1.05 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
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
android {
compileSdkVersion 24
buildToolsVersion "24.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
lintOptions {
abortOnError false
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
}
ext {
upload_group_id = 'com.zxy.android'
upload_version = '0.0.1'
site_url = 'https://github.com/Sunzxyong/Tiny'
git_url = 'https://github.com/Sunzxyong/Tiny.git'
git_issue_url = 'https://github.com/Sunzxyong/Tiny/issues'
bintray_pkg_repo = 'maven'
bintray_pkg_name = 'Tiny'
bintray_pkg_desc = 'an image compression framework.'
developer_id = 'Sunzxyong'
developer_name = 'zhengxiaoyong'
developer_email = '[email protected]'
}
apply from: 'publish.gradle'