As promised i released the source code of the app i've been working on yesterday night, it took a little time as i had to clean up a few unused assets to reduce the github project size & make a proper gitignore.
This is a mobile app for both iOS & Android that allows you to see the estimated earnings you could get from a Steemit Post. I couldn't find any usable app or solution that aumatically exchanges it into my home country's currency.
So i created a mobile app that helps estimate your post payouts. Calculates how much reward you will receive for your posts in the currency of your choice.
Enjoy!
Source code is available here:
https://github.com/azarus/steemit.price.app
Prebuilt packages are also available in the appstore:
https://play.google.com/store/apps/details?id=steemit.price.app
To build the application you will need the following to be installed
Install Dependencies
npm install
Add platforms
cordova platform add android
Install Plugins
ionic cordova plugin add cordova-plugin-advanced-http
To include admob api:
ionic cordova plugin add cordova-plugin-admob-free
ionic cordova plugin add cordova-plugin-admob-sdk
The general code can be found in the src/ folder. Not much code as it's a small app, but a veryhelpfull one :)
For browsers:
ionic serve
For mobile version
ionic cordova run android --livereload
Emulator
ionic cordova run android
Debug build:
ionic cordova build android
Release build:
ionic cordova build --release android
Android
For proper release build you have to create a signing key file in keys folder, or edit build.json
cordova build android --release -- --keystore=./keys/<keystorefile> --storePassword=<password> --alias=<alias> --password=<password>
Please open an issue ;)
MIT.