forked from Beyka/Android-TiffBitmapFactory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
executable file
·59 lines (49 loc) · 1.36 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
apply plugin: 'com.android.library'
apply plugin: 'com.novoda.bintray-release'
android {
compileSdkVersion 27
buildToolsVersion '27.0.3'
def softwareName
defaultConfig {
minSdkVersion 8
targetSdkVersion 27
versionCode 987
versionName "0.9.8.7"
softwareName = "\"" + project.name + "-" + versionName + "\""
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField("String", "softwarename", softwareName)
}
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
buildConfigField("String", "softwarename", softwareName)
}
}
sourceSets.main {
jni.srcDirs = []
jniLibs.srcDir 'src/main/libs'
}
}
android {
lintOptions {
abortOnError false
}
}
dependencies {
}
publish {
bintrayUser = user
bintrayKey = key
userOrg = user
dryRun = false
groupId = 'com.github.beyka'
artifactId = 'androidtiffbitmapfactory'
publishVersion = '0.9.8.7'
desc = 'Library for opening and saving TIFF image files on android devices'
licences = ['MIT']
website = 'https://github.com/Beyka/Android-TiffBitmapFactory'
}