Skip to content

Commit 30da220

Browse files
committed
Added bintray plugin and uploaded v0.1.0 to bintray
1 parent 51825fa commit 30da220

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

File Share/build.gradle

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
apply plugin: 'com.android.library'
2+
apply plugin: 'com.novoda.bintray-release'
23

34
android {
45
compileSdkVersion 25
@@ -21,6 +22,16 @@ android {
2122
}
2223
}
2324

25+
publish {
26+
groupId = 'io.github.karuppiah7890'
27+
artifactId = 'fileshare'
28+
publishVersion = '0.1.0'
29+
desc = 'An Android library to send and receive files among Android devices in a WiFi LAN.'
30+
licences = ['MIT']
31+
uploadName='FileShare'
32+
website = 'https://github.com/Android-File-Share/FileShare'
33+
}
34+
2435
dependencies {
2536
compile fileTree(dir: 'libs', include: ['*.jar'])
2637
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ buildscript {
66
}
77
dependencies {
88
classpath 'com.android.tools.build:gradle:2.2.2'
9+
classpath 'com.novoda:bintray-release:0.3.4'
910

1011
// NOTE: Do not place your application dependencies here; they belong
1112
// in the individual module build.gradle files

0 commit comments

Comments
 (0)