forked from oktayayr/advancedtextview
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
53 lines (40 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
40
41
42
43
44
45
46
47
48
49
50
51
apply plugin: 'com.android.library'
ext {
bintrayRepo = 'maven'
bintrayName = 'advancedtextview'
publishedGroupId = 'ayar.oktay.library'
libraryName = 'AdvancedTextView'
artifact = 'advancedtextview'
libraryDescription = 'AdvancedTextView provides advanced features that simplifies complicated UI processes.'
siteUrl = 'https://github.com/oktayayr/advancedtextview'
gitUrl = 'https://github.com/oktayayr/advancedtextview.git'
libraryVersion = '0.5.0'
developerId = 'ayar'
developerName = 'Oktay Ayar'
developerEmail = '[email protected]'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
defaultConfig {
minSdkVersion 16
targetSdkVersion 27
versionCode 48
versionName "0.5.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.12'
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'