-
Notifications
You must be signed in to change notification settings - Fork 565
/
Copy pathbuild.gradle
64 lines (51 loc) · 1.75 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
apply plugin: 'com.android.library'
ext {
bintrayRepo = 'maven'
bintrayName = 'pageindicatorview'
publishedGroupId = 'com.romandanylyk'
libraryName = 'PageIndicatorView'
artifact = 'pageindicatorview'
libraryDescription = 'Page indicator for android ViewPager'
siteUrl = 'https://github.com/romandanylyk/PageIndicatorView'
gitUrl = 'https://github.com/romandanylyk/PageIndicatorView.git'
libraryVersion = '1.0.3'
developerId = 'romandanylyk'
developerName = 'Roman Danylyk'
developerEmail = 'romandanylyk96@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 14
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
repositories {
maven { url "https://maven.google.com" }
}
implementation 'androidx.annotation:annotation:1.1.0'
implementation 'androidx.core:core:1.1.0'
implementation 'androidx.viewpager:viewpager:1.0.0'
}
allprojects {
tasks.withType(Javadoc) {
options.addStringOption('Xdoclint:none', '-quiet')
options.addStringOption('encoding', 'UTF-8')
}
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'
}