Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 1fbb7e39 authored by Dylan Phan's avatar Dylan Phan
Browse files

Fix the build breakage caused by pulling in support v14

Change-Id: I4d038ed3f4e4e36b072523b90a24ce76de621ac2
parent ecc4f7e9
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -41,5 +41,6 @@ android {
        compile project(":support-v7-gridlayout")
        compile project(":support-v7-recyclerview")
        compile project(":support-v13")
        compile project(":support-v14-preference")
    }
}
+2 −1
Original line number Diff line number Diff line
@@ -24,6 +24,7 @@ import android.os.PowerManager;
import android.os.SystemClock;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.SimpleItemAnimator;
import android.transition.AutoTransition;
import android.transition.Transition;
import android.transition.TransitionManager;
@@ -95,7 +96,7 @@ public final class StopwatchFragment extends DeskClockFragment {
        final View v = inflater.inflate(R.layout.stopwatch_fragment, container, false);
        mTime = (StopwatchTimer) v.findViewById(R.id.stopwatch_time);
        mLapsList = (RecyclerView) v.findViewById(R.id.laps_list);
        mLapsList.getItemAnimator().setSupportsChangeAnimations(false);
        ((SimpleItemAnimator) mLapsList.getItemAnimator()).setSupportsChangeAnimations(false);
        mLapsList.setLayoutManager(mLapsLayoutManager);
        mLapsList.setAdapter(mLapsAdapter);