Version bumped
This commit is contained in:
parent
f0f9e1302b
commit
fc8082a427
2 changed files with 3 additions and 2 deletions
|
@ -48,7 +48,7 @@ android {
|
|||
defaultConfig {
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 28
|
||||
versionCode 4106
|
||||
versionCode 4107
|
||||
versionName "4.1"
|
||||
applicationId getPackageName()
|
||||
multiDexEnabled true
|
||||
|
|
|
@ -63,7 +63,8 @@ public class Recording implements PlayerListener, Comparable<Recording> {
|
|||
new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
if (mListener != null) mListener.currentPositionChanged(getCurrentPosition());
|
||||
if (mListener != null)
|
||||
mListener.currentPositionChanged(getCurrentPosition());
|
||||
if (isPlaying()) mHandler.postDelayed(mUpdateCurrentPositionTimer, 20);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue