Skip to content

Commit 0f09af1

Browse files
committed
chore : bintray upload change artifact id
1 parent 282d357 commit 0f09af1

File tree

7 files changed

+6
-10
lines changed

7 files changed

+6
-10
lines changed

.idea/gradle.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

oauthLibGithub/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
apply plugin: 'com.android.library'
22
ext {
33
bintrayRepo = 'github_oauth'
4-
bintrayName = 'github_oauth'
4+
bintrayName = 'oauthLibGithub'
55

66
publishedGroupId = 'com.github.geniushkg'
77
libraryName = 'oauthLibGithub'
8-
artifact = 'github_oauth'
8+
artifact = 'oauthLibGithub'
99

1010
libraryDescription = 'A wrapper for Github authentication on Android'
1111

1212
siteUrl = 'https://github.com/geniushkg/github-oauth/'
1313
gitUrl = 'https://github.com/geniushkg/github-oauth.git'
1414

15-
libraryVersion = '1.0.0'
15+
libraryVersion = '1.0.1'
1616
developerId = 'geniushkg'
1717
developerName = 'Hardik Goswami'
1818
developerEmail = '[email protected]'

sample/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,6 @@ dependencies {
2929
exclude group: 'com.android.support', module: 'support-annotations'
3030
})
3131
compile 'com.android.support:appcompat-v7:23.4.0'
32+
compile 'com.github.geniushkg:oauthLibGithub:1.0.0'
3233
testCompile 'junit:junit:4.12'
3334
}

sample/src/main/java/com/hardikgoswami/github_oauth_lib/MainActivity.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
package com.hardikgoswami.github_oauth_lib;
22

33
import android.content.Context;
4-
import android.os.Build;
54
import android.os.Bundle;
65
import android.support.v7.app.AppCompatActivity;
76
import android.view.View;
87
import android.widget.Button;
98

10-
import com.hardikgoswami.oauthLibGithub.*;
11-
129
public class MainActivity extends AppCompatActivity {
1310

1411
public static final String GITHUB_ID = BuildConfig.GITHUB_ID;

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':sample', ':oauthLibGithub'
1+
include ':oauthLibGithub'

0 commit comments

Comments
 (0)