Skip to content

Latest commit

 

History

History
179 lines (162 loc) · 6.26 KB

File metadata and controls

179 lines (162 loc) · 6.26 KB

Stuff that useful

Things that i might or might not take reference in the future but they are good practices

Video Walkthrough

Here's a walkthrough of implemented user stories:

Video Walkthrough

Video Walkthrough

Here's a walkthrough of implemented user stories:

Video Walkthrough

Video Walkthrough

Here's a walkthrough of implemented user stories:

Video Walkthrough

InRetroSpect

├── Android Studio
│   ├── [Intent]
│   │   ├── main
│   │   │   ├── MainActivity.kt
│   │   │   └── MainActivity2.kt
│   │   └── res
│   │
│   ├── [Unit-1]
│   │   ├── main
│   │   │   ├── FourLetterWordList.kt
│   │   │   └── MainActivity.kt
│   │   └── res
│   ├── [Unit-2]
│   │   ├── main
│   │   │   ├── Book.kt
│   │   │   ├── BookAdapter.kt
│   │   │   ├── MainActivity.kt
│   │   │   └── res
│   ├── [Unit-2-Lab]
│   │   ├── main
│   │   │   ├── Email.kt
│   │   │   ├── EmailAdapter.kt
│   │   │   ├── EmailFetcher.kt
│   │   │   ├── MainActivity.kt
│   │   │   └── res
│   │   │       └── layout
│   ├── [Unit-2-Project]
│   │   ├── main
│   │   │   ├── simpleWishList
│   │   │   │   ├── MainActivity.kt
│   │   │   │   ├── NewWishList.kt
│   │   │   │   ├── WishListAdapter.kt
│   │   │   │   ├── WishListItem.kt
│   │   │   │   ├── WishListItemViewHolder.kt
│   │   │   │   └── WishListModel.kt
│   │   │   └── res
│   │   │       └── layout
│   │   │           ├── activity_main.xml
│   │   │           ├── fragment_new_wish_list.xml
│   │   │           └── wishlist_item.xml
│   ├── [Unit-3-Project]
│   │   ├── main
│   │   │   ├── BestMovie.kt
│   │   │   ├── BestMovieFragment.kt
│   │   │   ├── BestMovieRecyclerViewAdatper.kt
│   │   │   ├── MainActivity.kt
│   │   │   ├── OnListFragmentInteractionListener.kt
│   │   │   └── res
│   │   │       └── layout
│   │   │           ├── activity_main.xml
│   │   │           ├── fragment_best_movie_list.xml
│   │   │           └── fragment_best_movie.xml
│   ├── [Unit-4]
│   │   ├── main
│   │   │   ├── DetailActivity.kt
│   │   │   ├── MainActivity.kt
│   │   │   ├── Movie.kt
│   │   │   └── MovieAdapter.kt
│   │   └── res
│   │       ├── activity_main.xml
│   │       ├── activity_detail.xml
│   │       └── item_article.xml
│   │
│   ├── [Unit-5-Lab]
│   │   ├── main
│   │   │   ├── AppDatabase.kt
│   │   │   ├── Article.kt
│   │   │   ├── ArticleAdapter.kt
│   │   │   ├── ArticleApplication.kt
│   │   │   ├── ArticleDao.kt
│   │   │   ├── ArticleEntity
│   │   │   ├── DetailActivity.kt
│   │   │   ├── DisplayArticle.kt
│   │   │   └── MainActivity.kt
│   │   └── res
│   │       ├── activity_main.xml
│   │       ├── activity_detail.xml
│   │       └── item_article.xml
│   ├── [Unit-5-Practice]
│   │   ├── main
│   │   │   ├── AppDatabase.kt
│   │   │   ├── EventDao.kt
│   │   │   ├── EventEntity.kt
│   │   │   ├── MainActivity.kt
│   │   │   └── MyApplication.kt
│   │   └── res
│   │       └── activity_maim.xml
│   ├── [Unit-5-Project]
│   │   ├── main
│   │   │   ├── AppDatabase.kt
│   │   │   ├── FoodDao.kt
│   │   │   ├── FoodEntity.kt
│   │   │   ├── MainActivity.kt
│   │   │   ├── MyApplication.kt
│   │   │   ├── NewWishList.kt
│   │   │   ├── WishListAdapter.kt
│   │   │   ├── WishListItem.kt
│   │   │   ├── WishListItemViewHolder.kt
│   │   │   └── WishListModel.kt
│   │   └── res
│   │       └── layout
│   │           ├── activity_maim.xml
│   │           ├── fragment_new_wish_list.xml
│   │           └── wishlist_item.xml
│   └── [Unit-6-Project]
│       ├── main
│       │   ├── AddEntryFragment.kt
│       │   ├── AppDatabase.kt
│       │   ├── BitFitAdapter.kt
│       │   ├── BitFitApplication.kt
│       │   ├── BitFitDao.kt
│       │   ├── BitFitEntity.kt
│       │   ├── BitFitItem.kt
│       │   ├── Dashboardfragment.kt
│       │   ├── FoodRecordFragment.kt
│       │   └── MainActivity.kt
│       └── res
│           └── layout
│               ├── activity_main.xml
│               ├── entry_item.xml
│               ├── fragment_add_entry.xml
│               ├── fragment_dashboard.xml
│               └── fragment_record.xml

License

    Copyright [2022] [Thien Nguyen]

    Licensed under the Apache License, Version 2.0 (the "License");
    you may not use this file except in compliance with the License.
    You may obtain a copy of the License at

        http://www.apache.org/licenses/LICENSE-2.0

    Unless required by applicable law or agreed to in writing, software
    distributed under the License is distributed on an "AS IS" BASIS,
    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.