This application is a pattern of social components comprising posts, likes, reactions, comments, views, and others that can be used for Android application development. It is Firebase-based and uses such Firebase features as the firestore, and authentication.
- Search Posts
- Sign in with google and Create Posts
- Save posts of other users
- Working Notification Panel
- Comment Section for interaction on posts
- Delete posts/comments for everyone
- User Profile tab
- Anonymous Posting ;)
- Kotlin
- MVVM
- Firebase
- Android Architecture Components
- Glide
- First of all you need google-services.json. Create a Firebase project in the Firebase console, if you don't already have one. Go to your project and click ‘Add Firebase to your Android app’. Follow the setup steps. At the end, you'll download a google-services.json file which you should add to your project.
- Setup Firestore database and ‘RULES’ like this:
{
"rules": {
".read": "true",
".write": "true"
}
}
-
If you haven't yet specified your app's SHA-1 fingerprint, do so from the Settings page Settings page of the Firebase console. See Authenticating Your Client for details on how to get your app's SHA-1 fingerprint.
-
Enable the sign in method with google.
To have access to the demo version just email me @[email protected] :).