Please carefully read this guide in order to fully configure this template, and remember to test it on a Real Device – the Emulator may fail.
An internet connection is required.
IMPORTANT: The backend of this template is the DBase API.
https://mydomain.com/dbasefiles
- and replace the string of the DATABASE_PATH
variable in the DBase.java
file with your URL:
public static String DATABASE_PATH = "http://3.67.163.164/__apps/bazaar/";
Users.json
and Posts.json
files
This template has native Android Java/XML code so you can edit it only with Android Studio. If you don’t have it, download it for free.
Download Android Studiostring.xml
file – it’s into the res/values
folder in Android Studio – and replace the App Name of this line with your new one:
<string> string name="app_name"> Bazaar </string>
com
folder as it is and rename the other ones.build.gradle
(the Module app one) in Android Studio and rename the applicationId
into your new package name, then click Sync Now on the top-right corner.
.xml
files stored into the res/layout
folder. Those files are the ones where you can edit all Views, Buttons texts, TextView’s strings, and all Views attributes – position, font color, size, etc.
.java
files.
drawable
folders, where the app icons are stored into the mipmap
folders.
tou.html
file form the left-side panel’s list in Android Studio and edit it accordingly to your own Terms of Service and Privacy Policy. Also, replace the APP_NAME
words with the new name you assigned to your App.
"mailto:support@yourdomain.com">support@yourdomain.com
tou.html
file, so you must replace support@yourdomain.com with a valid email address where people can contact you for any question, feedback or in case they want to delete their account.
ID_id value
, select that row and click the Delete Row(s) button.ID_id
value you’ve previously noted in all the other Tables of your database, check out all the rows until you’ll find that ID_id
and delete it – this happens in case it appears into some Array type columns.
ID_id
in your database:
AR_reportedBy
in the Items table, and take action for it asap. Check out if they contain some ID_id
of Users (which means those users have reported the data of that row).
ID_id
and search for it in the other Tables, and remove such ID if you’ll find it in some cell.
res/values
folder in Android Studio. Open this file and keep reading this guide, you’ll have to perform some edits in this file in order to get your template ready to run.
<string> string name="app_name"> Bazaar </string>
<string>name="ADMOB_INTERSTITIAL_UNIT_ID">ca-app-pub-3940256099942544/1033173712
<string>name="ADMOB_APP_ID">ca-app-pub-3940256099942544~3347511713
You have to create your Unit ID at apps.admob.comUsers.json
and Posts.json
files
#
symbol. The main color of the app and some UI will be affected by your change:
public static String MAIN_COLOR = "#70ceb8";
public static String BLACK_COLOR = "#252525";
public static String LIGHT_GREY = "#F2F3F7";
public static String WHITE = "#ffffff";
public static Typeface psBold, psRegular, psItalic, psBoldItalic;
These fonts are initialized into the onCreate()
function as follows:
psRegular = Typeface.createFromAsset(getAssets(),"font/Product Sans Regular.ttf");
psBold = Typeface.createFromAsset(getAssets(),"font/Product Sans Bold.ttf");
psBoldItalic = Typeface.createFromAsset(getAssets(),"font/Product Sans Bold Italic.ttf");
psItalic = Typeface.createFromAsset(getAssets(),"font/Product Sans Italic.ttf");
In case you want to add a new font, you have to first drag your .ttf
or .otf
font file into the app/src/main/assets/font
folder.public static Typeface
line that’s into the onCreate()
function – let’s pretend you have a font file called Helvetica-Bold.ttf, you may add an instance called hBold
(it’s just an example, name it as you wish since it’s a variable):
public static Typeface popBold, popSemibold, ... hBold;
Lastly, import its path into the onCreate()
function like the existing ones. Based on the font example above, your new line of code may look like this:
hBold = Typeface.createFromAsset(getAssets(),"font/helvetica-Bold.ttf");
public static String ADMIN_EMAIL = "admin@email.com";
public static int MAX_TIME_FOR_VIDEO = 10; // seconds
public static String PRICE_CURRENCY = "USD";
public static String[] categoriesList = {
"All Categories", // Mandatory element, it must stay at first position
"Clothes",
"Home",
"Electronics",
"Hobbies",
"Toys",
"Pets",
"Books",
"Music",
"Health",
"Vehicles",
"Properties",
"Other",
// If you'll add new Categories here, remember to add their relative images in the 'drawable' folder too, all lowercase names
};
// LIST OF POPULAR U.S. CITIES. THIS IS JUST AN EXAMPLE, YOU CAN EDIT THIS LIST BASED ON THE LOCATION YOU NEED FOR YOUR APP
public static String[] citiesList = {
"All US Cities", // <-- Mandatory element, it must stay at first position, and can be changed based on the Country of your cities
"New York City",
"Chicago, Illinois",
"Charleston, South Carolina",
"Las Vegas, Nevada",
"Seattle, Washington",
"San Francisco, California",
"Washington, D.C.",
"New Orleans, Louisiana",
"Palm Springs, California",
"San Diego, California",
"St. Louis, Missouri",
"Sedona, Arizona",
"Honolulu, Hawaii",
"Miami Beach",
"Branson, Missouri",
"Boston, Massachusetts",
"Savannah, Georgia",
"Orlando, Florida",
"Portland, Oregon",
"Lahaina, Hawaii",
"Saint Augustine, Florida",
"Nashville, Tennessee",
"Los Angeles, California",
"San Antonio, Texas",
"Austin, Texas.",
};
public static String[] listingTypes = {
"On sale",
"Looking for"
};
public static String[] priceRanges = {
"Any price", // Mandatory element, it must stay at the first position
"From 30",
"From 50",
"From 100",
"From 150",
"From 200",
"From 500",
"From 1000",
};
// MARK: - TABLES & COLUMNS NAMES
DATABASE_PATH
into the DBase.java
file
.apk
file of your app in your Desktop
cd
command
keytool -printcert -jarfile YourApkName.apk
[Replace YourApkName with the name of your .apk file]
_config.php
file of the DBase API in your server and paste the Server Key you just copied in this variable, then save the file:
$FCM_SERVER_KEY = '[paste the Server Key here!]';
google-services.json
file and click Next
google-services.json
file in the app folder of the Android Studio project: fireInterstitialAd;
fireInterstitialAd(ctx);
NOTE: In order to comment a line of code, just add //
in the beginning:
// fireInterstitialAd(ctx);