Skip to content

Commit

Permalink
bump to 9.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yuliskov committed Nov 10, 2020
1 parent f792d68 commit a99f238
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
*/
public class CustomOverridesRenderersFactory extends DefaultRenderersFactory {
private static final String TAG = CustomOverridesRenderersFactory.class.getSimpleName();
private static final String[] FRAME_DROP_OVERRIDE_LIST = {"T95ZPLUS (q201_3GB)"};
private static final String[] FRAME_DROP_FIX_LIST = {"T95ZPLUS (q201_3GB)"};

public CustomOverridesRenderersFactory(FragmentActivity activity) {
super(activity);
Expand Down Expand Up @@ -110,7 +110,7 @@ protected void buildVideoRenderers(Context context,
allowedVideoJoiningTimeMs,
out);

if (!Helpers.contains(FRAME_DROP_OVERRIDE_LIST, Helpers.getDeviceName())) {
if (!Helpers.contains(FRAME_DROP_FIX_LIST, Helpers.getDeviceName())) {
return;
}

Expand Down
4 changes: 2 additions & 2 deletions smarttubetv/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ android {
applicationId "com.liskovsoft.smarttubetv"
minSdkVersion project.properties.minSdkVersion
targetSdkVersion project.properties.targetSdkVersion
versionCode 132
versionName "9.2"
versionCode 133
versionName "9.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
buildConfigField "long", "TIMESTAMP", System.currentTimeMillis() + "L"

Expand Down

0 comments on commit a99f238

Please sign in to comment.