Skip to content

Commit 73d9889

Browse files
committed
Added necessary changes for library upload on bintray
1 parent fdc8f8b commit 73d9889

File tree

4 files changed

+30
-3
lines changed

4 files changed

+30
-3
lines changed

.idea/caches/build_file_checksums.ser

0 Bytes
Binary file not shown.

app/build.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,13 @@ android {
2020
sourceCompatibility JavaVersion.VERSION_1_8
2121
targetCompatibility JavaVersion.VERSION_1_8
2222
}
23+
defaultPublishConfig "debug"
2324
}
2425

2526
dependencies {
2627
implementation fileTree(dir: 'libs', include: ['*.jar'])
2728
implementation 'com.android.support:appcompat-v7:27.1.1'
28-
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
29+
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
2930
implementation 'com.android.support:design:27.1.1'
3031
testImplementation 'junit:junit:4.12'
3132
implementation 'com.android.support:support-dynamic-animation:27.1.1'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ buildscript {
88
}
99
dependencies {
1010
classpath 'com.android.tools.build:gradle:3.1.1'
11-
12-
11+
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.7.3'
12+
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
1515
}

hiddenlinearlayoutview/build.gradle

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
apply plugin: 'com.android.library'
22

3+
ext {
4+
bintrayRepo = 'HiddenLayoutView'
5+
bintrayName = 'HiddenLayoutView'
6+
7+
publishedGroupId = 'com.psx95.hiddenlayoutview'
8+
libraryName = 'HiddenLayoutView'
9+
artifact = 'hidden-layout-view'
10+
11+
libraryDescription = 'A library to show hidden layouts with built-in animations'
12+
13+
siteUrl = 'https://github.com/psx95/HiddenLayout'
14+
gitUrl = 'https://github.com/psx95/HiddenLayout.git'
15+
16+
libraryVersion = '0.1.0'
17+
18+
developerId = 'psx95'
19+
developerName = 'Pranav Sharma'
20+
developerEmail = 'pranav.ps95@hotmail.com'
21+
22+
licenseName = 'MIT License'
23+
licenseUrl = 'https://opensource.org/licenses/MIT'
24+
allLicenses = ["MIT"]
25+
}
26+
327
android {
428
compileSdkVersion 27
529

@@ -36,3 +60,5 @@ dependencies {
3660
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
3761
implementation 'com.android.support:support-dynamic-animation:27.1.1'
3862
}
63+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/installv1.gradle'
64+
apply from: 'https://raw.githubusercontent.com/nuuneoi/JCenter/master/bintrayv1.gradle'

0 commit comments

Comments
 (0)