Skip to content

Commit

Permalink
Merge pull request aadityamp01#89 from Shubhcs01/master
Browse files Browse the repository at this point in the history
Project readme file updated and added separate resources file
  • Loading branch information
aadityamp01 committed Oct 5, 2022
2 parents db2b0a5 + cfa4b00 commit 8d051f2
Show file tree
Hide file tree
Showing 2 changed files with 137 additions and 86 deletions.
148 changes: 62 additions & 86 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,122 +4,98 @@

# Androapps

### Important Android projects to learn fundamentals of android development.
#### This is a Beginner Friendly Repository made for Open Source Enthusiasts who can contribute to the App during HacktoberFest 2022.
#### To contribute in this project you need to build your own android apps or you can update the existing applications.


### Languages Used in Projects
1. Java
2. Kotlin
3. Flutter
4. C++


### Requirements
1. Android Version 5.0 and above
2. CompileSdkVersion 29/30
3. MinSdkVersion 21
4. Androidx
5. Gradle Build (According to the project)

### Official References to learn Android development
1. https://developer.android.com/docs
2. https://developer.android.com/courses/pathways/kotlin-for-java [Java to Kotlin Pathway]
3. https://developer.android.com/kotlin/campaign/learn [Learn Kotlin]
4. https://flutter.dev/docs
5. https://www.youtube.com/watch?v=Z6KZ3cTGBWw [Building your first Flutter app]
6. https://github.com/Kotlin/kotlinx.coroutines/blob/master/ui/coroutines-guide-ui.md?s=09 [Kotlin Coroutines]
7. https://codelabs.developers.google.com/codelabs/from-java-to-dart#0 ( Learn Dart - Codelab )
8. https://developer.android.com/ndk/guides [Native Development Kit Guide]
9. https://developer.android.com/training/articles/perf-jni
10. https://developer.android.com/jetpack/compose ( Official reference to jetpack compose)
11. https://developer.android.com/jetpack/compose/tutorial (Learn jetpack compose)
12. https://developer.android.com/courses/android-basics-compose/course (Jetpack compose codelabs)

### Android Dev Learnings/ Best Resources
0. https://github.com/MindorksOpenSource/android-developer-roadmap ( Android ROADMAP - MindorksOpenSource )
0. https://youtu.be/VaMWsm6CFss ( Android ROADMAP - Love Bubber Bhaiya)
1. https://www.youtube.com/playlist?list=PLUcsbZa0qzu3Mri2tL1FzZy-5SX75UJfb (Basics of Android - Anuj Bhaiya)
2. https://www.youtube.com/playlist?list=PLonJJ3BVjZW6hYgvtkaWvwAVvOFB7fkLa
3. https://medium.com/androiddevelopers/the-android-lifecycle-cheat-sheet-part-i-single-activities-e49fd3d202ab
4. https://github.com/MindorksOpenSource/android-mvvm-architecture ( Android MVVM Architechture - MindorksOpenSource )
5. https://www.youtube.com/watch?v=pTJJsmejUOQ ( Learn Flutter - Full Tutorial for Beginners )
6. https://aadityapaithane.medium.com/why-should-i-choose-android-development-as-a-beginner-267988e565ed (General questions about android development)
7. https://aadityapaithane.medium.com/how-to-create-a-new-android-project-559553006356 (Learn How to create android project)

### Flutter Dev Learnings/ Best Resources
1. https://flutter.dev/ (Flutter Official)
2. https://docs.flutter.dev/get-started/flutter-for/android-devs (Flutter for Android Developers)
3. https://www.freecodecamp.org/news/learn-flutter-full-course/ (Learn flutter)


### Contributing
#### 1. Register for the hacktoberfest2022

link - https://hacktoberfest.digitalocean.com/

#### 2. Go through the [CONTRIBUTING.md](https://github.com/aadityamp01/Androapps/blob/master/CONTRIBUTING.md) and [CODE_OF_CONDUCT](https://github.com/aadityamp01/Androapps/blob/master/CODE_OF_CONDUCT.md)


### Setting up the project
This is a Beginner Friendly Repository containing important android projects to learn fundamentals of android development. It is made for Open Source Enthusiasts who can contribute to the App during HacktoberFest 2022.


To contribute in this project you need to build your own android apps or you can update the existing applications.

## Languages Used in Projects
- Java
- Kotlin
- Flutter
- C++


## Requirements
- Android Version 5.0 and above
- CompileSdkVersion 29/30
- MinSdkVersion 21
- Androidx
- Gradle Build (According to the project)


## Want To Learn Android Development👩‍💻?
- [RESOURCES.md](Resources.md)


## How To Contribute?

1. Register for the [Hacktoberfest 2022](https://hacktoberfest.com)

2. Go through the [CONTRIBUTING.md](https://github.com/aadityamp01/Androapps/blob/master/CONTRIBUTING.md) and [CODE_OF_CONDUCT](https://github.com/aadityamp01/Androapps/blob/master/CODE_OF_CONDUCT.md)


## How To Setup Project?

To setup the project locally please follow the instructions:
#### 1. Star and Fork this Repository
###### You can star ⭐ and fork 🍽️ this repository on GitHub by navigating at the top of this repository.
### 1. Star and Fork this Repository
You can star ⭐ and fork 🍽️ this repository on GitHub by navigating at the top of this repository.

#### 2. Clone the Repository
###### To make your own local copy of the repository to add run projects locally, let’s first open up a terminal window or you can download [GitHub Desktop](https://desktop.github.com/)
### 2. Clone the Repository
To make your own local copy of the repository to add run projects locally, let’s first open up a terminal window or you can download [GitHub Desktop](https://desktop.github.com/)

###### If you're using terminal use the git clone command along with the URL that points to your* fork of the repository:
If you're using terminal use the git clone command along with the URL that points to your* fork of the repository:
```
git clone https://github.com/your_username/Androapps.git
```

#### 3. Create New Branch
###### Once the project is cloned/opened create a new branch and checkout in it where you can make the changes in the code.
###### You can do this either from terminal or from the github desktop.
### 3. Create New Branch
Once the project is cloned/opened create a new branch and checkout in it where you can make the changes in the code.
You can do this either from terminal or from the github desktop.

###### To do from Terminal:
####To do from Terminal:
```
git branch new-branch
git checkout new-branch
```
#### 4. Select the project from the cloned repo to the android studio, add your contributions
### 4. Select the project from the cloned repo to the android studio, add your contributions

#### 5. Commit and Push
###### After making the required changes commit and push your code
###### Terminal:
###### To add the changes after you have made the modifications
### 5. Commit and Push
After making the required changes commit and push your code
Terminal:
To add the changes after you have made the modifications
``` git add . ``` or ``` git add -A ```

###### To commit and push the changes
To commit and push the changes
```
git commit -m <Your-commit-message>
```

#### 6. Update Local Repository
#### 7. Configure a Remote for the Fork
###### You’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command.
### 6. Update Local Repository
### 7. Configure a Remote for the Fork
You’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command.
```
git remote add upstream https://github.com/aadityamp01/Androapps.git
```
#### 8. Sync the Fork
#### 9. Create Pull Request
###### At this point, you are ready to make a pull request to the original repository.
###### Navigate to your forked repository, and press the “New pull request” button on your left-hand side of the page.
### 8. Sync the Fork
### 9. Create Pull Request
At this point, you are ready to make a pull request to the original repository.
Navigate to your forked repository, and press the “New pull request” button on your left-hand side of the page.

#### 10. You're done, wait for the review from maintainers.
### 10. You're done, wait for the review from maintainers.

### Project Maintainer :

## Project Maintainer :

<a href="https://github.com/aadityamp01"><img src="https://avatars.githubusercontent.com/u/51539518?v=4" width="100px" height="100px"></a>

### Contact and Support


## Contact and Support

> **_If you face any issue related to any project or want to suggest any application, Please feel free to contact me: @ [ampicopn@gmail.com]_**
#### Liked this repo, give it a star ⭐ and fork 🍽️ this repository to help others!!
### Liked this repo, give it a star ⭐ and fork 🍽️ this repository to help others!!


##### Made with ❤️ By Aaditya Paithane
Made with ❤️ By Aaditya Paithane
75 changes: 75 additions & 0 deletions Resources.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@

# Androapps Resources


## Android Development Roadmaps

1. [MindorksOpenSource](https://github.com/MindorksOpenSource/android-developer-roadmap)

2. [Love Babbar](https://youtu.be/VaMWsm6CFss)

3. [Community Classroom](https://www.commclassroom.org/android-roadmap)

## Android Development Resources

1. [Android Official docs](https://developer.android.com/docs)

1. [Basics of Android (Java) - Anuj Bhaiya](https://www.youtube.com/playlist?list=PLUcsbZa0qzu3Mri2tL1FzZy-5SX75UJfb )

2. [Android Tutorial videos for beginners (Java) - slidenerd](https://www.youtube.com/playlist?list=PLonJJ3BVjZW6hYgvtkaWvwAVvOFB7fkLa)

3. [The Android Lifecycle cheat sheet](https://medium.com/androiddevelopers/the-android-lifecycle-cheat-sheet-part-i-single-activities-e49fd3d202ab)

4. [Native Development Kit Guide](https://developer.android.com/ndk/guides)

5. [Android NDK - JNI Tips](https://developer.android.com/training/articles/perf-jni)

6. [Learn Jetpack compose](https://developer.android.com/jetpack/compose)

7. [Jetpack compose codelabs](https://developer.android.com/courses/android-basics-compose/course )

8. [Android MVVM Architechture - MindorksOpenSource](https://github.com/MindorksOpenSource/android-mvvm-architecture)

9. [General questions about android development](https://aadityapaithane.medium.com/why-should-i-choose-android-development-as-a-beginner-267988e565ed)

10. [Learn How to create android project](https://aadityapaithane.medium.com/how-to-create-a-new-android-project-559553006356)


## Kotlin Resources / Roadmaps

1. [Learn Kotlin]( https://developer.android.com/kotlin/campaign/learn)

2. [Kotlin Coroutines](https://github.com/Kotlin/kotlinx.coroutines/blob/master/ui/coroutines-guide-ui.md?s=09 )

3. [Java to Kotlin Pathway](https://developer.android.com/courses/pathways/kotlin-for-java)



## Flutter Resources / Roadmaps

1. [Flutter official Docs](https://flutter.dev/docs)
2. [Learn Dart - Codelab](https://codelabs.developers.google.com/codelabs/from-java-to-dart#0)
3. [freeCodeCamp](https://www.freecodecamp.org/news/learn-flutter-full-course/)
4. [Johannes Milke Flutter essentials](https://www.youtube.com/JohannesMilke)
5. [Dart for beginner](https://www.youtube.com/watch?v=5rtujDjt50I&list=PLlxmoA0rQ-LyHW9voBdNo4gEEIh0SjG-q)
6. [Flutter official youtube channel](https://www.youtube.com/c/flutterdev)

7. [Building your first Flutter app](https://www.youtube.com/watch?v=Z6KZ3cTGBWw)

8. [Angela Yu's Flutter Beginner's Course](https://www.appbrewery.co/p/flutter-development-bootcamp-with-dart)

9. [Roadmap to Flutter Development](https://github.com/olexale/flutter_roadmap)

10. [Ultimate Beginner Guide to Flutter](https://github.com/antz22/ultimate-guide-to-flutter)

11. [Flutter Basics - The Net Ninja](https://www.youtube.com/watch?v=1ukSR1GRtMU&list=PL4cUxeGkcC9jLYyp2Aoh6hcWuxFDX6PBJ)


## Contact and Support

> **_If you face any issue related to any project or want to suggest any application, Please feel free to contact me: @ [ampicopn@gmail.com]_**
### Liked this repo, give it a star ⭐ and fork 🍽️ this repository to help others!!


Made with ❤️ By Aaditya Paithane

0 comments on commit 8d051f2

Please sign in to comment.