Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# IconButton for Android
[ ![Download](https://api.bintray.com/packages/pnc/maven/iconbutton/images/download.svg) ](https://bintray.com/pnc/maven/iconbutton/_latestVersion)

IconButton is an Android button widget that allows you to center both the button's text and an icon.

Expand All @@ -19,7 +20,7 @@ Make sure you declare the JCenter repository in your project's `build.gradle`:
Then add a compile-time dependency on this library, adding the `dependencies` section to `build.gradle` if it doesn't already exist:

dependencies {
compile 'com.githang:com-phillipcalvin-iconbutton:1.0.1@aar'
compile 'com.githang:com-phillipcalvin-iconbutton:1.1.0@aar'
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Very cool, thanks!

}

### For Old Version
Expand Down
101 changes: 0 additions & 101 deletions library/bintray.gradle

This file was deleted.

2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ dependencies {
}

// this script was used to upload files to bintray.
apply from: 'bintray.gradle'
apply from: 'https://raw.githubusercontent.com/msdx/gradle-publish/master/bintray.gradle'
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'd rather not have this apply from a remote URL. Why not keep the checked-in version or use an officially published Gradle plugin?