Skip to content

Commit

Permalink
Update design libraries to 23.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
paolorotolo committed Sep 4, 2015
1 parent c9f6f88 commit 1c10b8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ repositories {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.0'
compile 'com.android.support:design:23.0.0'
compile 'com.android.support:cardview-v7:23.0.0'
compile 'com.android.support:recyclerview-v7:23.0.0'
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
compile 'com.android.support:cardview-v7:23.0.1'
compile 'com.android.support:recyclerview-v7:23.0.1'
compile 'com.wdullaer:materialdatetimepicker:1.5.1'
compile 'com.android.support:percent:23.0.0'
compile 'com.android.support:percent:23.0.1'
compile 'com.github.PhilJay:MPAndroidChart:v2.1.3'
compile 'uk.co.chrisjenx:calligraphy:2.1.0'
}
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,6 @@ protected void onCreate(Bundle savedInstanceState) {
@Override
public void onTabSelected(TabLayout.Tab tab) {
super.onTabSelected(tab);
int position = tab.getPosition();

}
});

Expand Down Expand Up @@ -420,7 +418,7 @@ public void onAnimationEnd(Animator animation) {
}

private void showFabAnimation(){
final View fab = (View) getFabView();
final View fab = (View) findViewById(R.id.main_fab);
if (fab.getVisibility() == View.INVISIBLE) {
// Prepare the View for the animation
fab.setVisibility(View.VISIBLE);
Expand Down

0 comments on commit 1c10b8f

Please sign in to comment.