-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
73 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,11 @@ The ActionItemBadge Library is pushed to [Maven Central], so you just need to ad | |
|
||
```javascript | ||
dependencies { | ||
compile('com.mikepenz:actionitembadge:3.2.0@aar') { | ||
transitive = true | ||
} | ||
compile 'com.mikepenz:actionitembadge:3.2.1@aar' | ||
|
||
//SUB-DEPENDENCIES | ||
//Android-Iconics - used to provide an easy API for icons | ||
compile 'com.mikepenz:iconics-core:2.5.4@aar' | ||
} | ||
``` | ||
|
||
|
@@ -88,12 +90,13 @@ call invalidateOptionsMenu() afterwards. | |
|
||
#Developed By | ||
|
||
* Mike Penz - http://mikepenz.com - <[email protected]> | ||
|
||
* Mike Penz | ||
* [mikepenz.com](http://mikepenz.com) - <[email protected]> | ||
* [paypal.me/mikepenz](http://paypal.me/mikepenz) | ||
|
||
#License | ||
|
||
Copyright 2015 Mike Penz | ||
Copyright 2016 Mike Penz | ||
|
||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,27 @@ | ||
// Top-level build file where you can add configuration options common to all sub-projects/modules. | ||
|
||
buildscript { | ||
repositories { | ||
jcenter() | ||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } | ||
} | ||
dependencies { | ||
classpath 'com.android.tools.build:gradle:1.5.0' | ||
|
||
// NOTE: Do not place your application dependencies here; they belong | ||
// in the individual module build.gradle files | ||
classpath 'com.novoda:bintray-release:0.3.4' | ||
} | ||
} | ||
|
||
ext { | ||
compileSdkVersion = 23 | ||
buildToolsVersion = "23.0.2" | ||
supportLibVersion = "23.1.1" | ||
} | ||
|
||
allprojects { | ||
repositories { | ||
jcenter() | ||
maven { url 'https://oss.sonatype.org/content/repositories/snapshots/' } | ||
} | ||
} | ||
|
||
|
||
task wrapper(type: Wrapper) { | ||
gradleVersion = '2.9' | ||
gradleVersion = '2.10' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#Wed Dec 02 22:13:31 CET 2015 | ||
#Mon Jan 11 23:48:03 CET 2016 | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-all.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
publish { | ||
dryRun = false | ||
bintrayUser = project.hasProperty('bintray.user') ? project.property('bintray.user') : System.getenv('BINTRAY_USER') | ||
bintrayKey = project.hasProperty('bintray.apikey') ? project.property('bintray.apikey') : System.getenv('BINTRAY_API_KEY') | ||
userOrg = project.property("POM_DEVELOPER_ID") | ||
groupId = project.property("GROUP") | ||
artifactId = project.property("GROUP") + ":" + project.property("POM_ARTIFACT_ID") | ||
publishVersion = project.property("VERSION_NAME") | ||
desc = project.property("POM_DESCRIPTION") | ||
website = project.property("POM_URL") | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters