WallUp | iOS Social Wallpapers Application [XServer]

Introduction

Please carefully read this guide in order to fully configure this template, and remember to test it on a Real Device - the iOS Simulator may fail.

An internet connection is required.

IMPORTANT: The backend of this template is the XServer API.

If you own a VPS server (for instance, on GoDaddy or AWS Lightsail), you can purchase the XServer API, upload it to your own VPS server, and configure it (see the Installation and Configurations chapters of the XServer API).

In case you don’t own a VPS server (or don’t want to buy it), you can create a Free account on XServer.app, create a Database and configure it to work with this app – read the Official Documentation
In this case, you don’t need to download the SDK, it’s already included in the package of this template.


Quick Start

BEFORE running this app on your own device via Xcode and test it, you can either do the following:

a) Create a FREE account on XServer.app and a Database, then replace the string of the DATABASE_PATH variable with your Database path in the XServerSDK.swift file:

let DATABASE_PATH = "https://xserver.app/__apps/wallup/"

Your app is now connected to your own database on XServer.app!


b) If you have bought the XServer API, you need to copy the path (URL) where you’ve hosted the files of the xserver folder in your VPS server (ex: https://mydomain.com/xserver) and replace the string of the DATABASE_PATH variable in the XServerSDK.swift file with your XServer’s path:

let DATABASE_PATH = "https://xserver.app/__apps/wallup/"

Then enter the _Tables folder on your server and:
1. Delete the Users.json and Posts.json files
2. Upload the JSON files included in the Tables folder of this template’s package

Your app is now connected to your own server!


General

Xcode

This template has native Apple Swift code, so you can edit it only with Xcode running on a Mac computer. If you don’t have it, download it for free on the Mac App Store.

PLEASE NOTE that you’ll need the latest official version of XcodeNO BETAS, because Betas are always buggy and never work properly.

App Name and Bundle ID

You must change the Display Name and Bundle Identifier into the new ones in the General tab in Xcode: 

Archive App for App Store Publishing

Once your app is ready to be submitted to the App Store for review, you need to Archive your Xcode project.
Click on Product and select Archive. Xcode will archive your project and automatically open the Organizer window, where you’ll find a button to submit your binary to your App Store Connect account.

Info.plist - Privacy Alert text

You should check the Info.plist file - you can find it in the files list on the left-side panel - and set the text you wish in the Value column of the Privacy rows.
Those values are the explanations that will be displayed in the Permission Alerts that show up to access the Camera, Photo Library or Location Service, so you may edit them as you wish based on your language or what you exactly want users to see in those Alerts.

Apple reviewers check those texts out all the times, and if the message is not so clear to them, they may reject your app while in Review, so please type a short but exhaustive text in each row in order to make clear what Permission the users should allow.

Reskin the UI design of the app

This project has a Storyboard file called Main.storyboard and you can find it in the list of file that is shown in left-side panel of the Xcode window.
You can edit all the UI elements of this app from the Storyboard, Colors, Fonts, Buttons, Views positions, etc.

The strings of the Alert Controllers are located in the code, so they can be edited only in the .swift files.

The images are stores into the Assets.xcassets folder.

Terms of Use and Privacy Policy

Select the tou.html file form the left-side panel’s list in Xcode - it’s located into the Intro_Login_SignUp folder - 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.

Please also pay attention to this line:

"mailto:[email protected]">[email protected]

There are a few identical lines like that in the tou.html file, so you must replace [email protected] with a valid email address where people can contact you for any question, feedback or in case they want to delete their account.

Google Form setup – for wallpaper submissions

Users can submit wallpaper images through Google Form, when they tap the SUBMIT button in the Setting screen, the app opens a link in Safari. You have to first create a Google form under your own Google account – if you don’t have a Google account, please create it now, it’s free.

Go to Google Forms and click on the + Blank form.
Set a title for your form, and a description, here’s an example:

Wallpaper Submission Form
We’re always looking for new content to add in our app, and we would love to see and review your work! Please answer the few questions below, it’ll take the time of a snap 🙂

Click the Settings icon and complete the GENERAL tab as it’s shown below:

Click the PRESENTATION tab and set it as shown below, then click SAVE:

Add a Short answer field by clicking the + button and edit it as shown below:

Add a File upload field by clicking the + button again, and edit is as shown below:

Add a Checkbox field by clicking the + button again, and edit is as shown below:

If you click on the Preview button – the one with the eye icon – you should get something like this:

You’re done, now you have to click on SEND and in the Send form tab check the Shorten URL checkmark and copy the provided link:

Now enter the XServerSDK.swift file and replace the string of the GOOGLE_FORM_LINK variable with your own Google Form’s link:

let  GOOGLE_FORM_LINK = "https://goo.gl/forms/d1RelRwhVqEtOjA93"

Check submitted Wallpapers

You should get an email when a wallpaper has been submitted via your Google Form, anyway, I suggest you to still daily check your Google Form -> RESPONSES tab to see if someone has submitted some wallpaper for review and upload them in your own Parse Dashboard.

In order to insert new Wallpapers into your own Parse Dashboard (the database), please read the Database section of this guide.

Delete a User’s account upon request

Accordingly to GDPR Terms, you have 24 hours to delete an account after receiving a deletion request. In order for you to delete an account, you first need to identify the user’s row in the Users table of your Database, keep a note of its ID_id value, select that row and click the Delete Row(s) button.
Then, just search for that 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 is in case it appears into some Array type columns.

You can use the Query function to find an ID_id in your database:


Configurations

The XServerSDK.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 = "WallUp"

XServer Database Path

As explained in the QuickStart paragraph, you must replace the DATABASE_PATH string with your own database URL, either from your own XServer API or from the xserver.app website.

• Using the XServer API hosted on your own VPS server:

To install and configure the XServer API  into your VPS server, please follow the Installation and Configurations chapters of its Documentation.

Once you’ll have the XServer API files ready in your own server, enter the _Tables folder and:
1. Delete the Users.json and Posts.json files
2. Upload the JSON files included in the Tables folder of this template’s package

In this way, you’ll get all the necessary Tables and columns for this app to work, without having to manually create them in the XServer’s Dashboard.
Data will be empty, so after you’ll get this app’s configurations done, you’ll be able to sign up with test Users, post items, and all the other features.

• Using the XServer.app BaaS

1. Create a Database, click the Settings button and click Copy Database path.

2. Import the JSON files included in the Tables folder of this template’s package in your Database:

3. Read the Dashboard -> Database Settings chapter to learn how to perform a few more settings for your Database.


Google Sign in Client ID

Replace the string below with your own Google OAuth Client ID (check the Google Sign In paragraph to learn how to create your own OAuth Client ID):

let GOOGLE_SIGN_IN_CLIENT_ID = "191162618244-xyzweradsrztd.apps.googleusercontent.com"

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 values of the following variables as you wish. The main color of the app and some UI will be affected by your change:

let MAIN_COLOR =  hexValue("#5dc2e6")
let BLACK_COLOR =  hexValue("#252525")
let LIGHT_GREY = hexValue("#F2F3F7")

PLEASE NOTE that NOT all Views in the app will change accordingly to the new HEX values 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 font, which is already stored into Xcode in a dedicated 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:

Admin email

Replace the string of this variable with the admin email address:

let ADMIN_EMAIL = "[email protected]"

App Store link

You must replace the following string with the App Store link of your app:

let APP_STORE_LINK = "https://itunes.apple.com/us/app/id333903271"

You can copy the App Store link of your app in the App Store Connect page: after creating an iOS app, switch to the App Information tab and scroll down to the Additional Information section.
Right-click over the View on App Store link and click the Copy Link Address option:

List of Categories

The following array contains a list of categories for wallpapers:

var categoriesArray = [
      /* c_0 */ "Starter Pack__This pack is a great starting point to find cool wallpapers for your device.__unsplash.com",
      /* c_1 */ "Abstract__Awesome collection of abstract patterns and pictures, liquid sensations for your device.__unsplash.com",
      /* c_2 */ "Mextures Collective__This pack showcases high-def wallpapers provided by the Mextures Collective community.__mexturescollective.com",
      /* c_3 */ "Infinite Space__A fresh collection of pictures from outer space. Make your device stellar.__unsplash.com",
      /* c_4 */ "Sky Collection__A collection of sky photos.__papers.co",
      /* c_5 */ "Blurred Art__Nice variety of colored and blurred wallpapers.__papers.co",
      // ADD CATEGORIES HERE (OR EDIT THE ONES ABOVE)
  ]

You may notice that there’s a comment on the left side of each item. That indicates the name of the image relative to the category.
You ahould also notice the syntax of each array’s item, its has a double underscore separator __. That’s needed for the app show data.
So, in case you want to add a Category, follow this sample steps:

As an example, let’s pretend you want to add a new category called Awesome Art.
You need to add a new string below the last one of the categoriesArray which must contain the name, description and website link where you’ve picked the image from.
Here’s an example:

  "Awesome Art__A brief description of this category.__unsplash.com", 

The website link must not have any www or http:// or https:// prefix, it must be only the domain name!

As a reminder, you may also add the /* c_6 */ comment before the string, so it’ll look like this:

/* c_6 */ "Awesome Art__A brief description of this category.__unsplash.com", 

That /* c_6 */ comment is the name of the new image you must create into the Assets.xcassets folder. Check the existing ones in the CATEGORIES to see how they look.
So create a new Image Set into the CATEGORIES folder and name it c_6:

Now Create 2 .jpg images, one must be 960x640px and the other one 640x427px, they are the category image that will show up in the Home screen of the app.
You can use Photoshop or any other image editor software to create your images.

Drag the bigger image into the 3x box of your new Image Set, and the smaller image into the 2x box.
Then, you’re done 😉

Now, if you run the app again, it’ll show your brand new Category in the Home screen.


Utility Functions

Unless you are familiar with iOS programming, you should leave the code below this comment as it is:

// MARK: - TABLES & COLUMNS NAMES

XServer backend

The backend of this template is XServer, and you can either buy the XServer REST API an install it on your own VPS server, or create an account on xserver.app and a Database for this app.
After performing the configurations mentioned below, you will run the app and see no content, so Sign Up with a test user in order to create a test account and start testing the app.

The FREE account on XServer.app offers 10 MB of storage and 1 Database. This allows you to create demo data and fully test this app on your side.
PLEASE NOTE that once the amount of data grows, you’ll need to subscribe to a Paid Plan, check the Pricing table on the XServer.app website.
I suggest you to start with a Basic Plan – it’ only $5/month – so you will get more Database Storage and Databases. Then, you’ll still be able to upgrade your Plan in the Pricing section in case you’ll need more Storage.

If you own a VPS server (on GoDaddy or other providers), you can purchase the XServer API, upload it to your own VPS server, and configure it (see the Installation and Configurations chapters of the XServer API).

In case you don’t own a VPS server (or don’t want to buy it), you can create a Free account on XServer.app, create a Database and configure it to work with this app – read the Official Documentation
In this case, you don’t need to download the SDK, it’s already included in the package of this template.


Add Wallpapers in your Database

In order to add wallpapers in your database, Click + Add Row, enter the category name in the category field, and upload your wallpaper image in the wallpaper field.

If you want to set a wallpaper as Of The Day, just set the isOfTheDay switch ON.

PLEASE NOTE that you can set ONLY ONE WALLPAPER as Wallpaper of the day!
So, each day, you should enter your Parse Dashboard and select a wallpaper’s row, switch its isOfTheDay value into ON and switch the old wallpaper’s value into OFF, in order to offer a different wallpaper each day.

Due to the structure of the database, it’s not possible to make any bulk upload, you must manually add Categories and Products data.


Google Sign In

Go to https://console.cloud.google.com/apis/credentials on your browser.
Create a Project (unless you already have one).
Click the + CREATE CREDENTIALS button.
Select the OAuth client ID option.

In the next page, select iOS, choose a name for your Client ID.
Paste the Bundle ID you’ve set in the General tab in Xcode.
Leave the App Store ID field empty and paste your own Team ID (you can get it form your Apple Developer Account).
Lastly, click the Create button:

Once your Client ID has been created, enter it, copy the Client ID string.
Paste it in the GOOGLE_SIGN_IN_CLIENT_ID variable of the XServerSDK.swift file in Xcode.

 let GOOGLE_SIGN_IN_CLIENT_ID = "191162618244-qmjf889os6jffa53d53el3dsk87..."

Then copy the iOS URL scheme string.
Open the Info tab in Xcode.
Expand the URL Types section.
Paste your copied ID into the URL schemes field.

You’re done with the Google Sign In configurations.

Apple Sign In & Push Notifications

Sign in into your Apple Developer Account and click the Certificates, Identifiers & Profiles panel.

Select the Identifiers section and make sure your new Bundle ID is there.
Usually Xcode creates it after you change the Bundle Identifier, but it may happen that Xcode won’t make this job, so can find it out using the Search button on the Apple developer website.

In case you won’t find your App ID, click the blue + button to create it and fill the necessary forms.
Once you’ve found your App Identifier (App ID), click on it and scroll down to the Push Notifications and Sign In with Apple sections.
Check both options.
Click the [Edit] button next to the Apple Sign In option.
Mark the Enable as a primary App ID option and click the [Save]button.
Lastly, click the [Save] button on the top-right corner of the page.

Now click the Keys option form the left menu.
Click the (+) button to create a Key.

On the next page, type a name for it.
Check both Apple Push Notifications service (APNs) and Sign in with Apple options.
Click the [Configure] button next to the Sign in with Apple option.

Select your App ID from the Primary App ID dropdown menu and click the [Save] button.

You’ll be asked to save an AuthKey_XXXXXXXX.p8 file on your computer. Pay attention, you’ll be able to download it only once, so save it in a safe place.

In case you’re using the self-hosted XServer API, you will need to upload this file into the _Push folder. Please refer to the XServer API Documentation: Apple Sign In and iOS Push Notifications chapter.

Otherwise, if your database is on XServer.app, you’ll have to upload that .p8 file in the Database Settings. Please refer to the XServer.app Documentation: Dashboard -> Database Settings chapter.

You’ll get redirected back to the Configure key page, where you’ll have to click the [Continue] button.

Make sure that all 4 steps have been performed correctly (the blue alert on the top of the page will show them as completed), then click the [Save] button.

You’re done with the Apple Sign In and Push Notifications configurations.


 Useful stuff

Learn more about XServer.app

XServer vs Firebase


F.A.Q.

Should I buy the XServer API or create an account on XServer.app to make this template work?

The code of this app template is written using the XServer SDK for iOS – this is included in the project – so you must either buy the XServer API or create an account on XServer.app to make it work the way it is.

But, if you’re an experienced developer and want to implement a different backend in the code, you can still buy this app and do your own job, since the UI is already built, as you can see by the Screenshots section.

If I buy this app template, can I use for multiple projects?

No: in case you want to publish more than 1 application using this template, you must purchase a License/project you want to publish on the App Store.

Instead, if I buy the XServer REST API or subscribe for a paid Plan on XServer.app, can I use the XServer backend for different projects/apps than this one?

Yes, that’s an API and you can use it in any other application or project.

What kind of support is offered?

Free support is offered in case of bugs encountered in the original template, either in the code or the UI design.
In case you have edited the code - and so created bugs because of your editing - I may apply some fee to fix your bugs by a remote connection through AnyDesk, or by you sending me your source code for verification.

Should I use Xcode to edit this template?

Yes, you must always use the latest stable official version of Xcode to edit this application.
Download the latest version on the Mac App Store from your Mac.

I’ve performed all configurations mentioned in this Guide, but something is wrong. What should I do?

• Double-check all your configurations, probably you have missed something.
• Always check the Console log in Xcode if the app crashes.
The Console log helps to debug your app, it’s really important.

How do I remove AdMob ads?

It’s super easy, just open the Find tool on the left-side panel in XCode and search for this line:

fireInterstitialAd

Xcode will show you a list of swift files where such code is located. Click on each row and just comment that line of code in each the swift file:

IMPORTANT: DO NOT COMMENT the line of code in XServerSDK.swift, comment (or remove) the lines in the other swift files.

// fireInterstitialAd()

Support | Contact