Skip to content

Commit

Permalink
Merge branch 'release/v3.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mikepenz committed Dec 2, 2015
2 parents 77921bc + e04e1c0 commit b58f48b
Show file tree
Hide file tree
Showing 10 changed files with 23 additions and 23 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The ActionItemBadge Library is pushed to [Maven Central], so you just need to ad

```javascript
dependencies {
compile('com.mikepenz:actionitembadge:3.1.9@aar') {
compile('com.mikepenz:actionitembadge:3.2.0@aar') {
transitive = true
}
}
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.mikepenz.actionitembadge.sample"
minSdkVersion 14
targetSdkVersion 23
versionCode 319
versionName "3.1.9"
versionCode 320
versionName "3.2.0"
}
buildTypes {
release {
Expand All @@ -22,7 +22,7 @@ android {

dependencies {
compile project(':library')
compile('com.mikepenz:materialdrawer:4.4.7@aar') {
compile('com.mikepenz:materialdrawer:4.5.4@aar') {
transitive = true
exclude module: "iconics-core"
}
Expand Down
8 changes: 4 additions & 4 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
android:layout_width="match_parent"
android:layout_height="match_parent">

<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
android:layout_height="match_parent"></FrameLayout>
</FrameLayout>
9 changes: 5 additions & 4 deletions app/src/main/res/menu/main.xml
Original file line number Diff line number Diff line change
@@ -1,17 +1,18 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".MainActivity">

<item
android:id="@+id/item_samplebadge"
app:actionLayout="@layout/menu_badge"
app:showAsAction="always"
android:title="@string/sample_1"/>
android:title="@string/sample_1" />

<item
android:id="@+id/item_sampleBadge_drawable"
android:title="@string/sample_1"
app:actionLayout="@layout/menu_badge"
app:showAsAction="always"/>
app:showAsAction="always" />

</menu>
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ allprojects {


task wrapper(type: Wrapper) {
gradleVersion = '2.8'
gradleVersion = '2.9'
}
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true

VERSION_NAME=3.1.9
VERSION_CODE=319
VERSION_NAME=3.2.0
VERSION_CODE=320
GROUP=com.mikepenz

POM_DESCRIPTION=Android-ActionItemBadge Library
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Tue Nov 03 22:42:03 CET 2015
#Wed Dec 02 22:13:31 CET 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-all.zip
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 23
versionCode 319
versionName "3.1.9"
versionCode 320
versionName "3.2.0"
}
buildTypes {
release {
Expand All @@ -20,5 +20,5 @@ android {
apply from: 'gradle-mvn-push.gradle'

dependencies {
compile 'com.mikepenz:iconics-core:2.2.0@aar'
compile 'com.mikepenz:iconics-core:2.5.0@aar'
}
3 changes: 1 addition & 2 deletions library/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<manifest
package="com.mikepenz.actionitembadge.library">
<manifest package="com.mikepenz.actionitembadge.library">

</manifest>
2 changes: 1 addition & 1 deletion library/src/main/res/values/aboutlibraries.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
Android-<b>ActionItemBadge</b> is a library which offers a simple and easy to use method to add a badge to your action item!!
]]>
</string>
<string name="library_AndroidActionItemBadge_libraryVersion">3.1.9</string>
<string name="library_AndroidActionItemBadge_libraryVersion">3.2.0</string>
<string name="library_AndroidActionItemBadge_libraryWebsite">https://github.com/mikepenz/Android-ActionItemBadge</string>
<string name="library_AndroidActionItemBadge_licenseId">apache_2_0</string>
<string name="library_AndroidActionItemBadge_isOpenSource">true</string>
Expand Down

0 comments on commit b58f48b

Please sign in to comment.