Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 888 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 888 Bytes

Android Animation Exercise

Instructions

  1. Clone this repository to create a local copy on your computer. In Android Studio, go to File -> New -> Project from Version Control -> GitHub and paste in https://github.com/IntrepidPursuits/animation-exercise-android.git

  2. Create a branch called <your-name>/add-animations

    git checkout -b <your-name>/add-animations
    
  3. Download the animation movie files from the animation_movies folder in this repository and watch them. Add those animations to the app while preserving all functionality. You'll probably want to start with modifying the three methods marked by the TODOs in DetailActivity and OverviewActivity.

  4. Commit and push your branch up to Github

    git add .
    git commit -m "Add animations"
    git push origin <your-name>/add-animations
    
  5. Create a pull request on GitHub