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 {
|
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
|
||||||
|
|
|
@ -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);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue