Skip to content

cmtanko/react_native_starter_kit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

"Buy Me A Coffee"

Your Personal Expense Manager

Your Personal Expense Manager helps manage your financial records quickly and effectively. It includes analytic charts to better understand your spending habits.

It helps you track all your incomes and total savings as well. Your data is stored in your local phone and can be synced to your own google drive. Use this tool to keep track of all your day-to-day expenses.

APP Link

Features:

  • Quickly add your incomes/expenses.
  • Filter by Account, Category, expense type, and dates.
  • Secure and password protected
  • Back up to your google drive.
  • Easy to search for items.
  • Charts to easily view your incomes and expenses
  • Everything works offline.
  • View overall transactions grouped by month.
  • Add a budget to each category
  • Add recurring transaction option

Screenshots

Environment Versions

  • Node: 10.15.3
  • React Native : 0.63.3
  • Cocopod: 1.10.1

Installation

Ruby & Fastlane

Install rvm

Install rvm and select Ruby version

# Install RVM
curl -sSL https://get.rvm.io | bash -s stable --ruby

# Install the version used by Fastlane
rvm install ruby-$(cat .ruby-version)

Install Fastlane

So that we can build like cool humans, we use Fastlane

gem install fastlane -NV

Node

Node versions are managed via nvm.

nvm

To install

# Install NVM
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.39.0/install.sh | bash

# Install Required Node version
nvm install 11.10.0

# Select node version
nvm use

React Native

brew install watchman
npm install -g react-native-cli

Platform specific dependencies

npm run install-deps

Android tools

  • Android Studio 3.2
  • Android SDK 8.1(oreo)
  • Androik SDK Build Tools 29
  • Android Sdk platform-tools 28.0.0
  • Android sdk tools 26.1.1
  • Android support repository 47.0.0
  • Google repository 58

Xcode

12.X

Build

# In terminal 1
npm run start

# In terminal 2
npm run start-ios #switch npm run start-android

Targeting specific platforms

You can build out for a particular platform via the appropriate npm command

npm run build-ios
npm run build-android

iOS

  Rename .env.example to .env , and fill with appropriate keys

Android

Make sure your .keystore file is named react-native-starter-kit.keystore and inside ./android/secure folder

export MY_RELEASE_STORE_FILE=YOUR_PATH
export My_RELEASE_STORE_PASSWORD=YOUR_STORE_PASSWORD
export My_RELEASE_KEY_ALIAS=YOUR_STORE_KEY_ALIAS
export My_RELEASE_KEY_PASSWORD=YOUR_KEY_PASSWORD
export ANDROID_HOME=YOUR_PATH_TO_Library/Android/sdk
export ANDROID_NDK=YOUR_PATH_TO_Library/Android/sdk/ndk/21.3.6528147

Deployment

Generating artefacts

Scripts

npm run script_name

the available scripts are

# start the metro interface
npm run start

npm run start-ios
npm run start-android

npm run build-ios
npm run build-android

npm run alpha-release

npm run reinstall

Running Test

Test is implemented through detox and jest

# In terminal 1
npm run test

# In terminal 2
npm run test-v

Common setup issues

iOS

You may receive errors about Podfile not matching Podfile.lock being out of date or Gemfile being out of date Gemfile.lock

cd ios
pod update
pod install
gem update

Trouble shooting in the development Process

Remove dead metro thread

If you get an error like "something is already running" follow these steps

  • get PID sudo lsof -i :8081
  • remember the PID
  • kill it kill pid_number ex: kill 4532

Fastlane doesnt not reconize node

ln -s $(which node) /usr/local/bin/node

If you have problem upgrading to the latest React Native version , make sure to do a clean install

watchman watch-del-all && rm -rf yarn.lock package-lock.json node_modules ios/Pods ios/Podfile.lock android/app/build && npm install && cd ios && pod update && cd .. && npm start -- --reset-cache

The following build commands failed: PhaseScriptExecution ...

pod install --repo-update NODE_BINARY=/usr/local/bin/node npx react-native run-ios

White screen

disable CORS open -a Google\ Chrome --args --disable-web-security --user-data-dir

if http://some_stuff/debugger-ui/ Change to http://localhost:8081/debugger-ui/

The simulator IOS is crashing without any error message

rm -rf ./ios/build watchman watch-del-al rm -rf $TMPDIR/react-* lsof -ti :8081 | xargs kill -9 cd ios/ && pod install react-native run-ios

This command should create a symlink to /uer ln -s $(which node) /usr/local/bin/node

Implementing Google signin

https://www.pradipdebnath.com/2020/10/06/how-to-implement-google-login-in-react-native-with-firebase/

Update in react-native-carousel-view > carouselPager.android.js

import {ViewPagerAndroid} from 'react-native'; to import ViewPagerAndroid from '@react-native-community/viewpager';

Update in react-native-timeline-flatlist

<FlatList
  ListHeaderComponent={<this.props.ListHeaderComponent/>}   <--- Add this line
  style={[styles.listview, this.props.listViewStyle]}
  contentContainerStyle={this.props.listViewContainerStyle}
  data={this.state.data}
  extraData={this.state}
  renderItem={this._renderItem}
  keyExtractor={(item, index) => index + ""}
  {...this.props.options}
/>

About

react_native_starter_kit

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages