Skip to content

94bryanr/PartypushAndroid

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5114a94 · Oct 23, 2015
Oct 23, 2015
Mar 5, 2015
Jun 4, 2015
Jun 4, 2015
Jun 4, 2015
Jun 4, 2015
Mar 4, 2015
Mar 13, 2015

Repository files navigation

PartypushAndroid

Android version of Partypush

Project Sub-Modules and Libraries:

  • Assets: Custom images.

  • LegacyCode: Old verson of the app that might contain useful code snippets. Not in development.

  • Plan: Documents showing the high level structure of the program.

  • Project: Source code, this is what ships.

INSTALL:

AUTHORS:

GROUP:

  • Wunderlist:
    • Text Bryan Reilly at 970-492-5292 for list invite.
  • GroupMe:
    • Text Bryan Reilly at 970-492-5292 for group invite.

ANDROID BASICS:

Activity

Fragment

View

  • A single UI element.
  • Textbox, image, button, etc.

USING GIT:

Try to use Git out of a terminal, it makes everything easier.

Should understand these terms:

  • Commit
  • Repository
  • Branch
  • Merge
  • Merge Conflict
  • Pull

Should understand these commands:

  • git clone [URL]
  • git remote
  • git remote add [URL]
  • git status
  • git add [FILE]
  • git add -A
  • git rm [FILE]
  • git commit -m 'COMMIT MESSAGE'
  • git branch
  • git branch [NEW BRANCH]
  • git checkout [BRANCH]
  • git merge [BRANCH]
  • git pull [REMOTE] [BRANCH]

We will use branches for EVERYTHING.

Recap:

  • Getting the repository
  • Adding repository to remotes list
  • Starting a branch and moving to it
    • git branch coolNewFeature
    • git checkout coolNewFeature
  • Commiting a change to your current branch
    • git add -A
    • git commit -m 'added chululu sounds'
    • git push project coolNewFeature
  • Merging your branch (once it is finished!!)
    • git checkout master
    • git merge coolNewFeature
  • Deleting your branch (after merging)
    • git branch -d coolNewFeature

INFO:

  • Project started in 2015.
  • Read LICENSE for copyright and licensing information.