All Projects → AleBarreto → Firebaseandroidchat

AleBarreto / Firebaseandroidchat

Chat with features : Login with Google | Send Photo Camera | Send Photo Gallery | Send Location

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Firebaseandroidchat

Chat21 Ios Sdk
DEPRECATED
Stars: ✭ 15 (-97.37%)
Mutual labels:  firebase, chat-application
Ionic Chat With Firebase
IONIC Chat With Firebase
Stars: ✭ 53 (-90.72%)
Mutual labels:  firebase, chat-application
Chatapp
Chat App with all functionality private chat, contacts, friends request, find friends,for profile settings image cropper functionality, settings, logout also send text, image and all type of files, delete your files for you and everyone , login with email and mobile number and real time database firebase and for notification purpose Node Js used.
Stars: ✭ 25 (-95.62%)
Mutual labels:  firebase, chat-application
React Native Firebase Chat
React Native chat application using firebase.
Stars: ✭ 113 (-80.21%)
Mutual labels:  firebase, chat-application
Space
A real time chat app for developers built using React, Redux, Electron and Firebase
Stars: ✭ 161 (-71.8%)
Mutual labels:  firebase, chat-application
Falconmessenger
🌟🌟🌟🌟🌟 Falcon Messenger is a Fast and Beautiful cloud-based messaging app. With iOS and IPadOS Support. Available on the App Store.
Stars: ✭ 310 (-45.71%)
Mutual labels:  firebase, chat-application
Whatsup
**Deprecated** Real time chat app written in Swift 4 using Firebase and OTP Authentication
Stars: ✭ 39 (-93.17%)
Mutual labels:  firebase, chat-application
Chatair Android
🔥 A highly advance featured chat app in android using Firestore
Stars: ✭ 132 (-76.88%)
Mutual labels:  firebase, chat-application
Chat Realtime
Public & Private message. MySQL & Firebase.
Stars: ✭ 147 (-74.26%)
Mutual labels:  firebase, chat-application
Chat21 Android Sdk
Android Chat SDK built on Firebase
Stars: ✭ 204 (-64.27%)
Mutual labels:  firebase, chat-application
Messenger
Open source, native iOS Messenger, with realtime chat conversations (full offline support).
Stars: ✭ 4,264 (+646.76%)
Mutual labels:  firebase, chat-application
Tamiat
⛵️ Vuejs and Firebase based CMS
Stars: ✭ 510 (-10.68%)
Mutual labels:  firebase
Firebase Module
🔥 Easily integrate Firebase into your Nuxt project. 🔥
Stars: ✭ 493 (-13.66%)
Mutual labels:  firebase
Messenger
iOS - Real-time messaging app 🎨
Stars: ✭ 491 (-14.01%)
Mutual labels:  firebase
Angular Shoppingcart
ShoppingCart (Ecommerce) 🛒 Application using Angular10, Firebase, PWA, Drag&Drop, Materialized Bootstrap and i18n 🚀🔥👨‍💻
Stars: ✭ 483 (-15.41%)
Mutual labels:  firebase
Firebase Action
GitHub Action for interacting with Firebase
Stars: ✭ 554 (-2.98%)
Mutual labels:  firebase
Flank
🚤 Massively parallel Android and iOS test runner for Firebase Test Lab
Stars: ✭ 509 (-10.86%)
Mutual labels:  firebase
Nuxt Firebase Sns Example
Nuxt v2 & Firebase(Hosting / Functions SSR / Firestore), Google Auth SNS Example.
Stars: ✭ 485 (-15.06%)
Mutual labels:  firebase
Flutter example apps
A directory of all my open source Flutter apps and projects.
Stars: ✭ 478 (-16.29%)
Mutual labels:  firebase
Flutter Development Roadmap
Flutter App Developer Roadmap - A complete roadmap to learn Flutter App Development. I tried to learn flutter using this roadmap. If you want to add something please contribute to the project. Happy Learning
Stars: ✭ 474 (-16.99%)
Mutual labels:  firebase

Firebase Android Chat

Android Arsenal

Preview

alt tag alt tag alt tag

Features Chat

  • Login with Google
  • Send Photo Camera
  • Send Photo Gallery
  • Send Location

Libraries

    //SUPPORT ANDROID
    compile 'com.android.support:appcompat-v7:24.0.0'
    compile 'com.android.support:recyclerview-v7:24.0.0'
    compile 'com.android.support:design:24.0.0'

    //IMAGE LOAD
    compile 'com.github.bumptech.glide:glide:3.7.0'

    //CHAT UI
    compile 'hani.momanii.supernova_emoji_library:supernova-emoji-library:0.0.2'
    compile 'me.himanshusoni.chatmessageview:chat-message-view:1.0.3'

    // AUTH
    compile 'com.google.android.gms:play-services-auth:9.2.0'
    compile 'com.google.firebase:firebase-auth:9.0.2'

    //DATABASE FIREBASE,UI
    compile 'com.google.firebase:firebase-database:9.0.2'
    compile 'com.firebaseui:firebase-ui-database:0.4.1'

    //STORAGE FIREBASE
    compile 'com.google.firebase:firebase-storage:9.0.2'

    //Places SERVICES
    compile 'com.google.android.gms:play-services-places:9.2.0'

JSON Format

Message Simple


{
  "chatmodel":{
    "-KLIcSzPmPrp0RG2YW0_" : {
      "message" : "Hi",
      "timeStamp" : "1467060707716",
      "userModel" : {
        "name" : "Alessandro Barreto",
        "photo_profile" : "xxxxxx"
      }
  },
  ...
}


Send Location Message


{
  "chatmodel":{
    "-KLId9H8NBsmrwO6SKEo" : {
      "mapModel" : {
        "latitude" : "-3.084669",
        "longitude" : "-60.010532"
      },
      "timeStamp" : "1467060908238",
      "userModel" : {
        "name" : "Alessandro Barreto",
        "photo_profile" : "xxxxxxxxxxxxxxxxxxx"
      }
    },
  ...
}


File Message


{
  "chatmodel":{
    "-KLIdX28VWjlqtZZr2Vn" : {
      "file" : {
        "name_file" : "2016-06-27_045641",
        "size_file" : "",
        "type" : "img",
        "url_file" : "xxxxxxxxxxxxxxxxxxxxxxx"
      },
      "message" : "",
      "timeStamp" : "1467061005589",
      "userModel" : {
        "name" : "Alessandro Barreto",
        "photo_profile" : "xxxxxxxxxxxxxxxxxx"
      }
    },
  ...
}


Getting Started

  1. [Add Firebase to your Android Project.] (https://firebase.google.com/docs/android/setup)
  2. Copy the google-services.json file you just downloaded into the app/ or mobile/ directory of your Android Studio project.
  3. Select the Auth panel and then click the Sign In Method tab.
  4. Click Google and turn on the Enable switch, then click Save
Change
public class Util {

    public static final String URL_STORAGE_REFERENCE = "XXXXXXXXXXX";
    
    ...    
}

Places Api
<string name="api_key_google_places">XXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</string>

The MIT License (MIT)

Copyright (c) 2016

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].