-
Notifications
You must be signed in to change notification settings - Fork 212
Expand file tree
/
Copy pathbuild.gradle
More file actions
63 lines (48 loc) · 2.02 KB
/
Copy pathbuild.gradle
File metadata and controls
63 lines (48 loc) · 2.02 KB
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
apply plugin: 'com.android.library'
android {
compileSdkVersion rootProject.ext.compileSdkVersion
defaultConfig {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 8
versionName "1.0.7"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "com.android.support:appcompat-v7:$supportLibraryVersion"
implementation "com.android.support.constraint:constraint-layout:$constraintLayoutVersion"
testImplementation "junit:junit:$jUnitVersion"
androidTestImplementation "com.android.support.test:runner:$testRunnerVersion"
androidTestImplementation "com.android.support.test.espresso:espresso-core:$espressoVersion"
}
repositories {
mavenCentral()
}
ext {
bintrayRepo = 'maven-repo'
bintrayName = 'bubblenavigation'
publishedGroupId = 'com.gauravk.bubblenavigation'
libraryName = 'bubblenavigation'
artifact = 'bubblenavigation'
libraryDescription = 'A light-weight library to easily make beautiful Navigation Bar with ton of customization option.'
siteUrl = 'https://github.com/gauravk95/bubble-navigation'
gitUrl = 'https://github.com/gauravk95/bubble-navigation.git'
libraryVersion = '1.0.7'
developerId = 'gauravk95'
developerName = 'Gaurav Kumar'
developerEmail = 'gauravkcs50@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}
// add it to the bottom of the file
apply from: 'https://raw.githubusercontent.com/numetriclabz/jcenter/master/installv.gradle'
apply from: 'https://raw.githubusercontent.com/numetriclabz/jcenter/master/bintrayv.gradle'