This React Native based application aims to give users a way to instantly notarize any data or file they want with current datetime.
Find apk here.
- Login using phone auth with just phone number and verification code.
- Add image directly from camera/gallery, documents like .doc, .pdf, etc, video and text too.
- Notarize the file with name and description, timestamp with timezone and location.
- The file is permanently stored in IPFS, User can use the hash from the app to directly lookup their file.
- Showing preview for viewable file.
- User can Download both viewable and non-viewable file.
- User can show QR code to share their IPFS link.
- User can copy ipfs hash to clipboard.
- User can open browser with the ipfs link.
- User can open map to lookup the location where it was notarized.
- This application is purely written in react native thus it can run on both iOS and android without changing a single line of code.
- Clean codebase for easy modeification and usage.
NOTE 1:- This application is throughly tested to be running on android as well as iOS without any change in code, but if you face any issues please reach out to me on telegram @rekpero
or discord @rekpero#3898
NOTE 2:- I tried to impliment all the possible checks, but if you encounter any issues or bugs, please reach out to me.
We have added a magic number for directly accessing the app without authentication, The number is +1 9999999999
There is additional configuration to disable this magic number authentication, This can be easily handled by updating config/index.js with
MAGIC_NUMBER_AUTH = false
Note:- To add the server domain after setting up the server in EC2 instance - Just replace the ROOT_URL in the config/index.js
with the public DNS of the EC2 Instance
This app is built with expo (a wrapper for react-native). To run this app, first you need to install expo-cli
yarn global add expo-cli
Now, clone the repo and do these:
git clone https://github.com/mmitrasish/InstaNotary.git
cd InstaNotary
yarn
To run the android app, you can directly download the app from Release, I have app in both apk and bundled form. Or, if you want to run from the repo, you have to first download the expo app in both android play store and ios app store, then you can follow these steps:
cd InstaNotary
expo start //This will open a window in http://localhost:19002
Now you have to open expo app in android and ios and scan the QR code from the metro bundler in http://localhost:19002 ,You will be able run the app now.
Be sure to update the versions (for each of Android and iOS) in app.json in the root, between build updates.
You can build the app using expo commands:
- For Android
expo build:android -t apk // for building apk
expo build:android -t app-bundle // for building bundle
These commands directly build your app but you have to create an account on expo. Also for more details regarding building for android you can follow this doc Expo Android Build Doc. This has a step by step instructions to build your app.
Once done, if you want to push to the Google PlayStore, use:
expo upload:android
- For IOS
If building with XCode, first do the following on a newly installed copy of the code, in the ios folder:
pod install
In XCode, be sure to set the correct development team account:
Build Setting - Signing - Development Team - Change The Account "S3LY459S86"
expo build:ios -t archive // for app store
expo build:ios -t simulator // for simulation
Same as Android. Also for more details regarding building for ios you can follow this doc Expo IOS Build Doc. This has a step by step instructions to build your app.
Or you can directly build ios and android app from xcode and android studio directly which is same as you do for standalone app.
Once done, if you want to push to the Apple AppStore, use:
expo upload:ios
You can watch the small demo video here.
Instanotary is licensed under the MIT license.
- Head over to screenshots folder for more screenshots.