Skip to content

Commit

Permalink
bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
drulabs committed May 14, 2018
1 parent 1c1c0cc commit 2410cc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ android {
applicationId "com.developervishalsehgal.udacityscholarsapp"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 2
versionName "1.1.2"
versionCode 3
versionName "1.1.3"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ private void initializeUI() {
ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(getDrawable(R.mipmap.ic_launcher_12));
actionBar.setHomeAsUpIndicator(getDrawable(R.mipmap.ic_launcher));
}

mQuizRecyclerView = findViewById(R.id.recyclerview_quizzes);
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/layout/activity_splash_screen.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
android:layout_centerHorizontal="true"
android:adjustViewBounds="true"
android:contentDescription="@string/app_name"
android:src="@mipmap/ic_launcher_12" />
android:src="@mipmap/ic_launcher" />

<TextView
android:id="@+id/app_title"
Expand Down

0 comments on commit 2410cc5

Please sign in to comment.