Code Monkey home page Code Monkey logo

keenotes's Introduction

Keenotes

Android Social App & News

platform-badge vls-badge code-size follow stars

Website | Google Play

Keenotes is a social network focused on the privacy and data protection of our users. Beautiful design, fast and stable performance, many functions will give you the best experience. Share photos with your friends, ask your questions on the forum, communicate with your friends using messages, be aware of all the news from Keenotes!

banner

This is my school project. Based on it, I studied the structure of social networks and tried to do something of my own based on Google Firebase. At this stage, the application is at the completion stage. If you like my project and want to help with development, please contact: [email protected].

This application also shows the work of my modules well, you can find them here: Music-streaming & Video-streaming

Features

  • Share photos and thoughts with your friends
  • Read the news
  • Find new friends and chat with them
  • Share documents and location
  • Comments & Likes
  • Listen the music
  • Watch the video
  • Upload your favorite music or video
  • Explore the forum
  • Play games
  • Light and dark theme
  • Smooth fluid design
  • No ads

Screenshots

Light Mode Dark Mode

Details

📎 Post types

📎 Notification

How to setup my app

  1. Clone this repo
  2. Open in Adroid Studio
  3. Create new Firebase project
  4. Rename the project package name
  5. Add google-services.json in /app folder
  6. In the Firebase console switch on:
    • Auth
    • Firestore
    • Storage
    • Real-time database
    • Hosting
  7. Edit the Firebase Storage rules
  8. Have fun! 😏

Cloud Firestore Rules:

service cloud.firestore {
  match /databases/{database}/documents {
    match /{document=**} {
      allow read, write: if request.auth != null;
    }
  }
}

Storage Rules:

service firebase.storage {
    match /b/YOUR_APP_ID.appspot.com/o {
        match /{allPaths=**} {
            allow read, write: if true;
        }
    }
}

Realtime Database Rules:

{
  "rules": {
    ".read": true,
    ".write": true
  }
}

Bonus

Снимок экрана 2022-03-26 в 23 56 05

⌚️ Optimized for the watch
🕹 Games

keenotes's People

Contributors

fut1le avatar

Stargazers

 avatar  avatar Young Developer avatar

Watchers

Young Developer avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.