Skip to content

Commit

Permalink
release v2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Doikki committed Apr 18, 2018
1 parent 816ed23 commit 2133fb1
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ android {
applicationId "com.dueeeke.dkplayer"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 16
versionName "2.2.3"
versionCode 17
versionName "2.3"
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public void skipToCustomPlayer(View view) {
startActivity(new Intent(this, CustomMediaEngineActivity.class));
}

public void skipToMultiRatePlayer(View view) {
public void skipToDefinitionPlayer(View view) {
startActivity(new Intent(this, DefinitionPlayerActivity.class));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class DefinitionPlayerActivity extends AppCompatActivity {
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_multi_rate_player);
setContentView(R.layout.activity_definition_player);
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setTitle("Multi-rate");
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/layout/activity_api.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:onClick="skipToMultiRatePlayer"
android:text="Multi-Rate" />
android:onClick="skipToDefinitionPlayer"
android:text="DEFINITION" />
</LinearLayout>

0 comments on commit 2133fb1

Please sign in to comment.