Skip to content

Commit

Permalink
Bump to 3.0.2.2
Browse files Browse the repository at this point in the history
Signed-off-by: enricocid <enrico2588@gmail.com>
  • Loading branch information
enricocid committed Sep 16, 2018
1 parent 22f077a commit a73667e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![API](https://img.shields.io/badge/API-21%2B-blue.svg?style=flat-square)](https://android-arsenal.com/api?level=21) [![Donate on PayPal](https://img.shields.io/badge/PayPal-Donate%20Now-brightgreen.svg)](https://paypal.me/enricocid)

###### Very slim music player with low memory footprint!
###### Current version: (77) 3.0.2.1
###### Current version: (78) 3.0.2.2
###### Material Design Icon by Julian Javier Gomez, Axinen Design (https://plus.google.com/u/0/+AxinenDesign)


Expand Down
4 changes: 2 additions & 2 deletions project/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.iven.musicplayergo"
minSdkVersion 21
targetSdkVersion 28
versionCode 77
versionName "3.0.2.1"
versionCode 78
versionName "3.0.2.2"
}
buildTypes {
release {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.text.Spanned;
import android.util.Log;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewAnimationUtils;
Expand Down Expand Up @@ -674,17 +673,13 @@ public void expandArtistDetails(View v) {
if (mPlayerAdapter != null && mPlayerAdapter.getCurrentSong() != null) {
if (!mPlayerAdapter.getCurrentSong().artistName.equals(mSelectedArtist)) {
onArtistSelected(mPlayerAdapter.getCurrentSong().artistName);
Log.d("1", "1");
} else if (sArtistDiscographyExpanded) {
revealView(mArtistDetails, mArtistsRecyclerView, false);
Log.d("2", "2");
} else {
revealView(mArtistDetails, mArtistsRecyclerView, true);
Log.d("3", "3");
}
} else {
revealView(mArtistDetails, mArtistsRecyclerView, !sArtistDiscographyExpanded);
Log.d("4", "4");
}
}

Expand Down
2 changes: 1 addition & 1 deletion project/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources>
<string name="app_name" translatable="false">Music Player GO</string>
<string name="version" translatable="false">v3.0.2.1</string>
<string name="version" translatable="false">v3.0.2.2</string>
<string name="albums">albums: %d</string>
<string name="unknown_year" translatable="false">N&#x2F;A</string>
<string name="no_eq">No equalizer found!</string>
Expand Down

0 comments on commit a73667e

Please sign in to comment.