File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed
src/main/java/com/liskovsoft/smartyoutubetv2/tv/ui/common Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ android {
5757 applicationId " app.smarttube"
5858 minSdkVersion project. properties. minSdkVersion
5959 targetSdkVersion project. properties. targetSdkVersion
60- versionCode 2329
61- versionName " 31.39 "
60+ versionCode 2330
61+ versionName " 31.40 "
6262 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
6363 buildConfigField " long" , " TIMESTAMP" , System . currentTimeMillis() + " L"
6464
Original file line number Diff line number Diff line change @@ -129,7 +129,11 @@ public void finish() {
129129 public void finishReally () {
130130 // Mandatory line. Fix un-proper view order (especially for playback view).
131131 getViewManager ().startParentView (this );
132- super .finishReally ();
132+ // NOTE: temporal player memory leaking fix (Activities num grow with every player start)!
133+ // The command to check: adb shell dumpsys meminfo org.smarttube.stable
134+ if (!(this instanceof PlaybackActivity )) {
135+ super .finishReally ();
136+ }
133137 }
134138
135139 private void finishTheApp () {
You can’t perform that action at this time.
0 commit comments