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 Store] (https://apps.apple.com/au/app/your-personal-expense-manager/id1569814201)
- [Play Store] (https://play.google.com/store/apps/details?id=io.newplanet.reactnativestarterkit)
- 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.
- Add a budget to each category
- Add recurring transaction option
- Node: 10.15.3
- React Native : 0.63.3
- Cocopod: 1.10.1
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)
So that we can build like cool humans, we use Fastlane
gem install fastlane -NV
Node versions are managed via nvm.
To install
# Install NVM
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash
# Install Required Node version
nvm install
# Select node version
nvm use
brew install watchman
npm install -g react-native-cli
npm run install-deps
- 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
12.X
# In terminal 1
npm run start
# In terminal 2
npm run start-ios #switch npm run start-android
You can build out for a particular platform via the appropriate npm command
npm run build-ios
npm run build-android
Rename .env.example to .env , and fill with appropriate keys
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
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
Test is implemented through detox and jest
# In terminal 1
npm run test
# In terminal 2
npm run test-v
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
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
ln -s $(which node) /usr/local/bin/node
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/
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
import {ViewPagerAndroid} from 'react-native';
to
import ViewPagerAndroid from '@react-native-community/viewpager';
<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}
/>