Version bumped

This commit is contained in:
Sylvain Berfini 2018-11-30 10:49:02 +01:00
parent f0f9e1302b
commit fc8082a427
2 changed files with 3 additions and 2 deletions

View file

@ -48,7 +48,7 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 28 targetSdkVersion 28
versionCode 4106 versionCode 4107
versionName "4.1" versionName "4.1"
applicationId getPackageName() applicationId getPackageName()
multiDexEnabled true multiDexEnabled true

View file

@ -63,7 +63,8 @@ public class Recording implements PlayerListener, Comparable<Recording> {
new Runnable() { new Runnable() {
@Override @Override
public void run() { public void run() {
if (mListener != null) mListener.currentPositionChanged(getCurrentPosition()); if (mListener != null)
mListener.currentPositionChanged(getCurrentPosition());
if (isPlaying()) mHandler.postDelayed(mUpdateCurrentPositionTimer, 20); if (isPlaying()) mHandler.postDelayed(mUpdateCurrentPositionTimer, 20);
} }
}; };