Android Dev
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee

      This note has no invitees

    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Note Insights New
    • Engagement control
    • Make a copy
    • Transfer ownership
    • Delete this note
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Note Insights Versions and GitHub Sync Sharing URL Help
Menu
Options
Engagement control Make a copy Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee

    This note has no invitees

  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       Owned this note    Owned this note      
    Published Linked with GitHub
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Group Project - README Template === # BARK - Social Media App ## Table of Contents 1. [Overview](#Overview) 1. [Product Spec](#Product-Spec) 1. [Wireframes](#Wireframes) 2. [Schema](#Schema) ## Overview ### Description Meet up with other dogs by creating a post of an event happening and matching them with a possible owner. Could be potentially used as a way to find lost dogs, used for other pets, and for helping a pet in need of an emergency by possibly donating. ### App Evaluation - **Category:** Photo & Video / Social - **Mobile:** Website is view only, uses camera, mobile first experience. - **Story:** Allows users to share their dogs with pictures and create events. - **Market:** Anyone with a pet dog could enjoy this app. Ability to view posts on other dogs of the app. - **Habit:** Users can post throughout the day many times. Users can explore endless pictures of dogs from other members of bark. Very habbit forming! - **Scope:** Bark will start with just posting pics, creating events and viewing feeds. ## Product Spec ### 1. User Stories (Required and Optional) **Required Must-have Stories** * Allow users to sign up for a new account or login to an existing account * Allow users to edit their profile (things such as: name, pets, location) * Have a feed that shows users a feed of posts * Allow users to create a new post * Allow users to find nearby events made by other users * Allow social feature for users to add eachother **Optional Nice-to-have Stories** * Customize user feeds to only show posts made by friends. * Show similar dog breeds. * Ability to like and comment on user's post. * Add option for private profiles. * Implementing a 'guest' account with limited functionality ### 2. Screen Archetypes * Login/Sign up page * The User will be able to login/Sign up * Use Google loging authentication * Users will have/create an account * Displays navigation bar at the bottom * Feed Page * User will be able to scroll through friends feed/posts * User will have the ability to search someone up * Posts will show the owners image, username, caption, and image * User will be able to like/comment posts * User will be able to create a post * Displays navigation bar at the bottom * Create Post Page * User will be able to create a post * Post will show in their feed and friends feed * Displays navigation bar at the bottom * Profile Page * Displays users and pets images * Displays users description * Displays wanted information * Displays navigation bar at the bottom * Events Page * User can create an event * Feed of nearby/friends events will display * Event will include users picture, name, event information * Others could join/invite * Maybe add map view of location * Create Event Page * User will be able to post an event * Event will include location and information about events ### 3. Navigation **Flow Navigation** * Login / Sign up * Feed * Feed * Event Page * Profile * Create Post * Event * Feed * Profile * Create Event * Profile * Feed * Event ## Wireframes <iframe style="border: none;" width="800" height="450" src="https://www.figma.com/embed?embed_host=share&url=https%3A%2F%2Fwww.figma.com%2Ffile%2FMUVAVwfzzfTmJYdj8mu6HS%2FBark-Android-Application-CSUMB-Wireframe%3Fnode-id%3D0%253A1" allowfullscreen></iframe> ## Schema ### Models #### Post | Property | Type | Description | | ------------- | -------- | ------------| | objectId | String | unique id for the user post (default field) | | author | Pointer to User| image author | | image | File | image that user posts | | caption | String | image caption by author | | createdAt | DateTime | date when post is created (default field) | #### Event | Property | Type | Description | | ------------- | -------- | ------------| | objectId | String | unique id for the user post (default field) | | author | Pointer to User| image author | | description | String | event description by author | | createdAt | DateTime | date when even is created author | | eventDate | DateTime | date when event is taking place| ### Networking #### List of network requests by screen - Home Feed Screen - (Read/GET) Query all posts where user is author ```java protected void queryPost() { ParseQuery<Post> query = ParseQuery.getQuery(Post.class); query.include(Post.KEY_USER); query.setLimit(20); query.addDescendingOrder(Post.KEY_CREATED_AT); query.findInBackground(new FindCallback<Post>() { @Override public void done(List<Post> posts, ParseException e) { if (e != null){ Log.e(TAG,"Issue with getting posts",e); } for(Post post : posts){ Log.i(TAG,"Post: "+ post.getDescription()); } allPosts.addAll(posts); adapter.notifyDataSetChanged(); } }); ``` - (Create/POST) Create a new like on a post - (Delete) Delete existing like - (Create/POST) Create a new comment on a post - (Delete) Delete existing comment - Home Event Screen - (Read/GET) Query all posts where user is author ```java protected void queryEvent() { ParseQuery<Event> query = ParseQuery.getQuery(Event.class); query.include(Post.KEY_USER); query.setLimit(20); query.addDescendingOrder(Event.KEY_CREATED_AT); query.findInBackground(new FindCallback<Post>() { @Override public void done(List<Event> events, ParseException e) { if (e != null){ Log.e(TAG,"Issue with getting events",e); } for(Event event : events){ Log.i(TAG,"Event: "+ event.getDescription()); } allEvents.addAll(events); adapter.notifyDataSetChanged(); } }); } ``` - (Create/POST) Create a new like on a post - (Delete) Delete existing like - (Create/POST) Create a new comment on a post - (Delete) Delete existing comment - Create Post Screen - (Create/POST) Create a new post object - (Create/POST) Create a new like on a post - (Delete) Delete existing like - (Create/POST) Create a new comment on a post - (Delete) Delete existing comment - Create Event Screen - (Create/POST) Create a new post object - (Create/POST) Create a new like on a post - (Delete) Delete existing like - (Create/POST) Create a new comment on a post - (Delete) Delete existing comment - Profile Screen - (Read/GET) Query logged in user object - (Update/PUT) Update user profile image [OPTIONAL: List endpoints if using existing API such as Yelp]

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully