NearbyStores iOS Application

Contents

1. Where i can get the last version(update) of Nearbystores app

2. How to publish "NearbyStores" iOS App on AppStore?

3. How i can get my purchase ID

4. I GET THE ERROR MESSAGE : cannot access class com.sun.tools.javac.tree.TreeScanner (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.tree to unnamed module @0x71f0e87f

5. Table "databse_name_i_put_goes_here".booking' doesn't exist

6. Image not upload issue

1. Where i can get the last version(update) of Nearbystores app

You can always get our latest version (update) of nearbystores app for free from Envato by clicking on  the download button

2. How to publish "NearbyStores" iOS App on AppStore?

Hello,

Take a look at this video, it will help you to submit your App on Apple Store.




3. How i can get my purchase ID

Follow this path 

4. I GET THE ERROR MESSAGE : cannot access class com.sun.tools.javac.tree.TreeScanner (in module jdk.compiler) because module jdk.compiler does not export com.sun.tools.javac.tree to unnamed module @0x71f0e87f

Follow this path Preferences | Build, Execution, Deployment | Build Tools | Gradle 




5. Table "databse_name_i_put_goes_here".booking' doesn't exist

Hello ,

In your cpanel , go the phpmyadmin , select your database and click sql section : 7260025804.png

then copy this sql code into the text field  , and click run (execute ):

CREATE TABLE `booking` ( `id` int(11) NOT NULL, `user_id` int(11) DEFAULT NULL, `store_id` int(11) DEFAULT NULL, `cf_id` int(11) DEFAULT NULL, `cf_data` text DEFAULT NULL, `cart` text DEFAULT NULL, `status` int(11) NOT NULL DEFAULT 0, `updated_at` datetime NOT NULL, `created_at` datetime NOT NULL, `amount` double DEFAULT 0, `payment_status` varchar(150) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE `booking` ADD PRIMARY KEY (`id`);
 ALTER TABLE `booking` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=135;

6. Image not upload issue

This issue occur when the images folder is missed on the app repository ,

To fix this issue , please follow this steps :

 

1) in the main repository ( public_html) or the folder when your script exist , go to the uploads folder

2) Add new folder and name it Images

 

Done , go back to the dashboard refresh the page and try add new images.

Thank you