Created: 22/10/2019
By: Amentotech
Email: help.amentotech@gmail.com
Thank you for purchasing our mobile APP. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!
Upon downloading the zip package file from Codecanyon, you'll have all files you need inside. Zip package contains the following files...
Files in Main-files.zip
Please make sure you have installed Workreap APP API plugin, which is builtin in Workreap Theme
You will have to install Workreap theme on your WordPress first then
For support: you can send email at help.amentotech@gmail.com
To use this app you must have visual studio code already installed. For more information regarding installing the visual studio code, please visit
Visual Studio CodeAfter Installing visual studio code, simply unzip app source code .zip file and open source code in visual studio code.
At this point theme, website running Workreap theme should be ready with given plugin in download package.
Follow the following steps to configure app with your theme.
Congratulations, your app is now working with your website.
To change app name, open android/app/src/main/values/string.xml file and replace app_name key value.
To change app name, open Xcode under info section
To change spalsh screen image, replace src/images/splashbackground.jpg image file in drawable folder.
To change app icon, go to android/app/src/main/res/mipmap and replace all mipmap images with your logo
To change the application icon for the iOS copy all the content of AppIcon.appiconset from the ios>AppIcon.appiconset directory of downloaded makeappicon zip. After copying all the icons from the downloaded icons paste the same in your projects AppIcon.appiconset directory (YourProject -> ios -> YourProject -> Images.xcassets -> AppIcon.appiconset) if it ask to replace the json then click yes to replace.
According to this
This link
you can run this command from the start
react-native init yourProject -package "com.example.app"
But if you already generated your app via
react-native init yourProject
You can modify app name in file
android/app/src/main/res/values/strings.xml
Then you can modify package name in files
android/app/src/main/java/com/reactNativeSampleApp/MainActivity.java
android/app/src/main/java/com/reactNativeSampleApp/MainApplication.java
android/app/src/main/AndroidManifest.xml ( optional as per my experience )
android/app/build.gradle
Lastly, run the following commands (from inside the app's android/ directory)
./gradlew clean
./gradlew assembleRelease
For Android:
You can generate build for Android run this command first
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
then in terminal run this comamnd
react-native run-android --variant=release
you can find release apk file from android/src/main folder in project
For Ios:
You have to make some changes in Xcode. First you need dto purchase Apple Developer Account then after it go to your Xcode product/scheme/edit scheme and change Build Configration form Debug to release.