At first thank you for purchasing this item. If you have any question or any problem
regarding this item, feel free to Contact
us via
info@w3engineers.com.
1 - Introduction
Bootic is built with native Java in Android Studio. It’s a android ecommerce app
UI template. It offers more than 17 pages and all are fully designed & keeping in mind to fit for any product types.
Bootic offers all required features, that can fulfill any modern application. It’s easy to customize,
You can use it as any type of store like Fashion, Electronics, Grocery and Restaurant.
You can customize any page as per your needs. It follows all the standards to fulfill customer’s requirements.
2 - Folder Structure
2.1Unzip the file.
2.2You see the following folders:
bootic (contain the android files)
bootic-admin (admin panel files)
bootic.sql (sql file)
2.3Open the bootic-admin folder:
bootic-admin
public
json (All the apis are located inside this folder).
private
db_credentials.php (For database connection).
functions.php (All the functions are in this file).
query_functions.php (All the queries are in this file).
3 - Installation
3.1Make sure that you have already installed Xampp control panel.
3.2PHP version 7+ required(So update your Xampp control panel or install new one).
3.3Make sure that you have already installed Android Studio.
3.4Copy the bootic-admin folder and paste it in your Xampp's htdocs folder.
3.5Now run your Xampp Control Panel.
3.6Create a database. Database name will be "bootic"
3.7Import the bootic.sql file in your created database. (bootic.sql file is located in the Main_files.)
3.8Find your pc ip address.
3.8.1Open Command Promt and type=> ipconfig
3.8.2Then find the IPv4 address (example: 192.168.1.75),copy the address
3.9Open your browser.In your browser url type:
http://your_ip_address/bootic-admin/public/
For example, my pc ip address is: 192.168.1.75
So the url will be: http://192.168.1.75/bootic-admin/public/
3.10If you see the admin login page, then admin-panel work successfully.
3.11Login as Admin:
UserName: admin@admin.com
Password: 12345678
4 - Connect the android app to the admin panel
4.1Open Android Studio.
4.2Open existing Android Studio project by using one of below methods:
4.3Open the bootic folder in android studio that contains android files.
4.4Then open the Constants.java class which is located in the Util package
4.5Find the String of SERVER_PATH and edit the link as below:
public static final String SERVER_PATH "http://192.168.1.75/bootic-admin/public/";
public static final String PATH_TO_SERVER = SERVER_PATH + "braintree_payment.php";
public static final String PRODUCT_GRID_URL = SERVER_PATH + "json/recent_products.php";
public static final String RECENT_PRODUCT_IMAGE_URL = SERVER_PATH + "uploads/recent-products/";
4.6Run bootic in your android studio. If everything okay then you will see the
products from your admin panel.
http://your_ip_address/bootic-admin/public/
5 - Customizing the App
5.1 - Rename Package.
5.1.1In your Project pane, click on the little gear icon ( Gears icon )
5.1.2Uncheck / De-select the Compact Empty Middle Packages option
5.1.3Your package directory will now be broken up in individual directories
5.1.4Individually select each directory you want to rename, and:
Right-click it
Select Refactor
Click on Rename
In the Pop-up dialog, click on Rename Package
Enter the new name and hit Refactor
Click Do Refactor in the bottom
Allow a minute to let Android Studio update all changes
Note: When renaming com in Android Studio,
it might give a warning. In such case, select Rename All
5.1.5Now open your Gradle Build File (build.gradle - Usually app or mobile).
Update the applicationId to your new Package Name and Sync Gradle,
if it hasn't already been updated automatically:
5.1.6You may need to change the package= attribute in your manifest.
5.1.7Clean and Rebuild.
5.1.8Done! Anyways, Android Studio needs to make this process a little simpler.
5.2 - Change App Logo.
5.2.1Name yor logo ic_launcher.png.
5.2.2Make your app logo for different size of screens.
There are plenty of online tools which will help you to convert your logo for different sizes of screen.
My recommendation would be
Android Asset Studio.
5.2.3Replace those logos in the mipmap folder of your android studio project.
If you find any difficulties, please follow this
Youtube Video
5.3 - Change App Name
5.3.1For changing app name go to the values > strings.xml file
5.3.2And change the app_name.
5.4 - Change App Color
5.4.1For changing app name go to the values > colors.xml file
5.4.2And change the colorPrimary, colorPrimaryDark, colorAccent.
5.5 - Change Toolbar Icon
5.5.1Name yor logo bootic_logo.png.
5.5.2Make your app logo for different size of screens.
There are plenty of online tools which will help you to convert your logo for different sizes of screen.
My recommendation would be
Android Asset Studio.
5.5.3Replace those logos in the drawbale folder of your android studio project.