All Projects β†’ dwicao β†’ React Native Redux Firebase Todo

dwicao / React Native Redux Firebase Todo

React Native Redux Firebase Todo

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Native Redux Firebase Todo

Firebase Instagram
πŸ“Έ Instagram clone with Firebase Cloud Firestore, Expo, and React Native 😁😍
Stars: ✭ 389 (+559.32%)
Mutual labels:  firebase, native
Flutter todo
Yet another Todo app, now using Flutter (with ScopedModel)
Stars: ✭ 94 (+59.32%)
Mutual labels:  todo, firebase
Angular 4 Material Pos
POS written in Angular 4 with Angular Material UI
Stars: ✭ 54 (-8.47%)
Mutual labels:  firebase
Taskbook
Tasks, boards & notes for the command-line habitat
Stars: ✭ 8,326 (+14011.86%)
Mutual labels:  todo
Flutter ui challenge todo
A showcase flutter todo application.
Stars: ✭ 57 (-3.39%)
Mutual labels:  todo
Firebaseswift
Firebase REST API wrapper for use in server-side Swift
Stars: ✭ 54 (-8.47%)
Mutual labels:  firebase
Firedata
Firebase + R
Stars: ✭ 57 (-3.39%)
Mutual labels:  firebase
Ionic Chat With Firebase
IONIC Chat With Firebase
Stars: ✭ 53 (-10.17%)
Mutual labels:  firebase
Rey
RE-imagined Youtube music player for web (& desktop)
Stars: ✭ 59 (+0%)
Mutual labels:  firebase
Devradar
Competence Management for developers
Stars: ✭ 56 (-5.08%)
Mutual labels:  firebase
Ionic Social Login With Firebase
IONIC - Social Login with Firebase
Stars: ✭ 58 (-1.69%)
Mutual labels:  firebase
Laravel Fcm
🌐 A Laravel package to send Push Notifications to one or many devices of the user.
Stars: ✭ 56 (-5.08%)
Mutual labels:  firebase
Nat Explorer
An example project using Nat & Weex.
Stars: ✭ 55 (-6.78%)
Mutual labels:  native
Fuse.firebase
The start of fuse bindings for Firebase
Stars: ✭ 57 (-3.39%)
Mutual labels:  firebase
Geo On Fire
A library to create high performance geolocation queries for Firebase. Checkout the demos: https://run.plnkr.co/plunks/AYaN8ABEDcMntgbJyLVW/ and https://run.plnkr.co/plunks/xJgstAvXYcp0w7MbOOjm/
Stars: ✭ 54 (-8.47%)
Mutual labels:  firebase
Login Fire
An element that allows simple configuration of multiple provider login for firebase
Stars: ✭ 58 (-1.69%)
Mutual labels:  firebase
Tiledesk Dashboard
The Tiledesk dashboard. Tiledesk is an Open Source Live Chat platform written in NodeJs, firebase and Angular.
Stars: ✭ 53 (-10.17%)
Mutual labels:  firebase
Firebase Chat Sample
βœ‰οΈ [Android] [Firebase] An example chat application built using the Firebase Android SDK
Stars: ✭ 55 (-6.78%)
Mutual labels:  firebase
Firebaseapp
Google Apps Script binding for Firebase Realtime Database
Stars: ✭ 57 (-3.39%)
Mutual labels:  firebase
Updateme Android
A powerful force update library for Android
Stars: ✭ 59 (+0%)
Mutual labels:  firebase

React Native Redux Firebase Todo

demo

Download

MyTodo.apk

Technology Stack

  • React Native
  • Redux
  • CodePush
  • Firebase
  • redux-thunk
  • redux-persist
  • react-native-drawer
  • react-native-router-flux

Install at local

Open Terminal, then type command:

git clone https://github.com/dwicao/react-native-redux-firebase-todo.git

Go to project folder :

cd react-native-redux-firebase-todo

Type following command :

npm install

You must have ANDROID_HOME environtment variable, to check if you already have, type in your terminal :

echo $ANDROID_HOME

If blank, you can read at HERE

Make sure you have already installed React Native globally by running this command :

sudo npm install -g react-native-cli

In your terminal type this to make sure react-native know each addons modules in this app :

react-native link

To get CODEPUSH_KEY you must create a CodePush account, read instruction HERE

Create new file at react-native-redux-firebase-todo/android/gradle.properties and fill with this lines of code :

android.useDeprecatedNdk = true
CODEPUSH_DEBUG_KEY = "INSERT_YOUR_KEY_HERE"
CODEPUSH_RELEASE_KEY = "INSERT_YOUR_KEY_HERE"

Create a firebase account at HERE

Create a new Project at Firebase and go to Overview tab, and click Firebase for Web, copy that key at react-native-redux-firebase-todo/src/firebase/index.js and fill with this line of codes:

import * as firebase from 'firebase';

firebase.initializeApp({
  apiKey: "FILL_THIS_WITH_YOURS",
  authDomain: "FILL_THIS_WITH_YOURS",
  databaseURL: "FILL_THIS_WITH_YOURS",
  storageBucket: "FILL_THIS_WITH_YOURS",
  messagingSenderId: "FILL_THIS_WITH_YOURS"
});

export const firebaseRef = firebase.database().ref();
export default firebase;

At this point, you should be able to run the project. To run your project on your device/emulator at Debug configuration, type :

npm run android-dev

Or if you want to run at iOS simulator, run:

react-native run-ios

If you have error message like Execution failed for task ':app:dexDebug'. run this on your terminal :

npm run android-clean

To build .apk file just type :

npm run android-release

You must sign .apk with keystore, to do this just type in your terminal :

npm run android-signer

The .apk file is located at react-native-redux-firebase-todo/android/app/build/outputs/apk/app-release-unsigned.apk

Available Command

npm run ... Description
adb-reverse Reset port ADB to tcp:8081
ios-bundle Bundle with entry file index.ios.js
ios-build Run ios project with β€œRelease” configuration
ios-codepush-staging Push changes your bundle to CodePush Staging environtment
ios-codepush-production Push changes your bundle to CodePush Production environtment
android-clean Fix building android if preDexDebug error
android-build-debug Build android .apk with β€œDebug” configuration
android-release Build android .apk with β€œRelease” configuration
android-signkey Generate keystore android
android-signer To sign app-release-unsigned.apk with random keystore
android-dev Run android development-mode on simulator
android-bundle Bundle with entry file index.android.js
codepush-key View your staging and development key at CodePush
android-codepush-staging Push changes your bundle to CodePush Staging environtment
android-codepush-production Push changes your bundle to CodePush Production environtment

License

MIT

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].