The Configurations.swift
file
Open this file in Xcode and keep reading this guide, you'll have to perform some edits in this file in order to get your template ready to run:
App Name
Replace this string with the new name you want to give to this app:
let APP_NAME = "XSRadio"
Parse Server Keys
As explained in the
Quick Start section of this guide, you must replace the strings of the 2 variables below with your own
App Id
and
Client Key
that you will get from the back4app website after creating your own Parse App:
let PARSE_APP_ID = "K7SCPO9S6zywk3DMoEskABkJCOOWNkwx6Lfew2hy"
let PARSE_CLIENT_KEY = "kC36ZLG7UWs31cPpLUN3M8RkS6K6BK544MFYm3hD"
AdMob Ads
Replace the string of the variable below with your own
Interstitial Unit ID - you have to create such Unit ID on
apps.admob.com, just follow the instructions on the AdMob's website in case you don't know how to generate a Unit ID:
let ADMOB_INTERSTITIAL_UNIT_ID = "ca-app-pub-3940256099942544/1033173712"
You also have to replace the string into
Info.plist
with your own App ID:
You can get both
App ID and
Unit ID strings from your AdMob Unit page, after creating it:
Sometimes Apple reviewers reject apps because of Ads, the reason why is not clear yet, but a new submission on the App Store will fix the problem and get your app approved - just in case you'll get a rejection because of IDFA issue.
Anyway, after clicking the Submit For Review button on the App Store Connect page of your application, you’ll get something that looks like the picture below. Mark the options shown below and everything should go smoothly on the next review you'll get of your app:
Custom Colors
You can edit the
HEX
value of the following variable as you wish, so the main color of the app and some UI will be affected by your change:
let MAIN_COLOR = hexValue(hex: "#8344af")
PLEASE NOTE that NOT all Views in the app will change accordingly to the new HEX value you've set in the above variable, you will still need to adjust some colors in some Controllers in the Storyboard.
Custom fonts
This App uses some custom fonts, and such fonts are stored into the
Poppins folder.
In case you want to add a new font, you have to first drag your
.ttf
or
.otf
font file into the left-side panel in Xcode and click the Finish button in the popup that will show up:
Then select the Label, Button, TextFiled or textView you want to change font to, click the
[T]
icon on the right-side
Attributes inspector panel and select the font you want in the dropdown list:
Support email address
You must replace the following string with a valid email adress where you want people to contact you in case of questions, support or account deletion requests - accordingly to
EU GDPR:
let SUPPORT_EMAIL_ADDRESS = "[email protected]"
List of Genres
The following array contains a list of
genres which are being used in this app.
You can edit them as you wish since they are just strings, but please note that every time you'll change or add a genre name in this array, you must also change the name of its relative icon in the
Assets.xcassets/GENRES
folder in Xcode accordingly:
let genresArray = [
"Rock",
"Alternative",
"Blues",
"Classical",
"Country",
"Electronic",
"Folk",
"Jazz",
"New Age",
"Pop",
// YOU CAN ADD NEW GENRES HERE, MAX 2 WORDS
]
So, for instance, let's pretend you want to add a new music genre called
Heavy Metal
, you first have to add it as a string in the above array:
"Heavy Metal",
Then create a new Image Sets in the
Assets.xcassets/GENRES
folder and name it
heavy_metal
(it must be lowercase and, in case of a 2-word genre, put an underscore (
_ ) in between the 2 words).
You're done, now the new genre you've added will be visible in the app!
Social URLs
You should edit the following strings by pasting your own social network URLs, acoordingly to their names:
let FACEBOOK_URL = "https://facebook.com/xscoderapps"
let TWITTER_URL = "https://twitter.com/xscoder"
let INSTAGRAM_URL = "https://instagram.com/xscoder"
let YOUTUBE_URL = "https://www.youtube.com/channel/UCh5_HwfoBRBegneSkiuDHmA"
Utility Extensions
Unless you are familiar with iOS programming, you should leave the code of this section as it is since it includes useful functions to show alerts and perform other things in the app.
Parse Dashboard Classes and column names
This section is a list of strings that the app calls to perform queries to the Parse Server database - aka Parse Dashboard - and it contains a few useful custom global variables and functions.
DO NOT EDIT those variables and instances unless you're an experienced developer, otherwise the app will not work properly.