WooStore Woocommerce Multivendor App

WooStore Woocommerce Multivendor App

Turn your website into app quickly

Getting Started

2 articles

About Our App

For individuals who claim physical shops and designers, with our WooCommerce Multivendor App you have assortment prepared to utilize e-commerce formats to make your portable store application. On the off chance that you have your online shops, our app bolsters you to change over your present sites to portable store application effectively. Your store portable application will be found in both the App Store and Google Play Store. With our app, your versatile application gives higher client experience contrasting with site on portable. Your items will show up clear and can be zoomed with no designing mistake. While you can control your store and requests of customers, your customers likewise can interface and remain mindful of everything being equal and declarations of your stores in the event that they have your application on their mobiles.f

It is possible that you are specialists with raising deal desire or engineers with quicker portable application creation need, our WooCommerce Multivendor App gives you a way out.


Flutter Installation Flow

This guide outlines the complete steps for installing and setting up Flutter on both Windows and
macOS operating systems.
1. System Requirements
Ensure your system meets the minimum requirements before proceeding with the installation.
Operating System Requirement Details
Windows OS Version Windows 10 or later (64-bit)
Disk Space 1.64 GB (does not include space
for IDE/tools)
Tools Windows PowerShell 5.0 or
newer (pre-installed on Windows
10+), Git for Windows
macOS OS Version macOS 10.14 (Mojave) or later
Disk Space 2.8 GB (does not include space
for IDE/tools)
Tools Git, Xcode (for iOS development)


2. Installation on Windows
2.1 Get the Flutter SDK
1. 2. Download: Go to the official Flutter website and download the latest stable release of
the Flutter SDK zip file.
Extract: Unzip the file and place the contained flutter folder in a stable location, such
as C:\src\flutter (avoid paths with special characters or elevated permissions like
C:\Program Files).


2.2 Update Environment Variables
1. Locate Path: Navigate to the flutter\bin directory (e.g., C:\src\flutter\bin).
Copy the full path.2. 3. Edit Variables: Search for "Environment Variables" in the Windows search bar and
select Edit the system environment variables.
Add to Path: In the System Properties window, click Environment Variables.... Under
System variables, select the Path variable and click Edit.... Click New and paste the
path to the flutter\bin directory. Click OK on all windows.
2.3 Run Flutter Doctor
1. 2. 3. Open PowerShell/CMD: Open a new command prompt or PowerShell window.
Verify: Run the command:flutter doctor
Check Output: The output will analyze your setup and identify any missing
dependencies (like Android Studio, VS Code, or necessary command-line tools).
2.4 Set up Android Development (Prerequisite for Android/Mobile
Apps)
1. 2. 3. Install Android Studio: Download and install Android Studio.
Install SDK: Open Android Studio. Go to Settings > Appearance & Behavior >
System Settings > Android SDK. Select the latest Android SDK and Android SDK
Command-line Tools (latest) and install them.
Android License: Accept the Android licenses by running:flutter doctor
--android-licenses
2.5 Set up IDE
1. 2. Install IDE: Install a preferred IDE, such as VS Code or Android Studio.
Install Plugins: Install the official Flutter and Dart plugins/extensions within your
chosen IDE.
3. Installation on macOS
3.1 Get the Flutter SDK
1. 2. Download: Go to the official Flutter website and download the latest stable release of
the Flutter SDK tarball.
Extract: Unzip the file and place the contained flutter folder in your desired
installation location, for example:cd ~/development
unzip ~/Downloads/flutter
*
_
_
.zip
macos3.2 Update Path Variable
1. Edit Shell File: Open the terminal and edit your shell startup file ($HOME/.zshrc if
using Zsh, or $HOME/.bash_profile if using Bash).nano $HOME/.zshrc
# OR
nano $HOME/.bash
_profile
2. 3. Add Path: Add the following line, replacing [PATH_TO_FLUTTER_DIRECTORY] with
your actual path (e.g.,
~/development/flutter):export
PATH="$PATH:[PATH
TO
FLUTTER
_
_
_
DIRECTORY]/bin"
Save and Reload: Save the file and reload the terminal window or run:source
$HOME/.zshrc
# OR
source $HOME/.bash
_profile
3.3 Run Flutter Doctor
1. 2. Verify: Open a new terminal window and run:flutter doctor
Check Output: Review the output for any missing dependencies.
3.4 Set up iOS Development (Prerequisite for iOS/Mobile Apps)
1. 2. 3. Install Xcode: Install the latest stable version of Xcode via the App Store.
Configure Xcode: Configure the command-line tools to use the newly installed
version:sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer
Accept License: Accept the Xcode license agreement:sudo xcodebuild -runFirstLaunch
3.5 Set up Android Development (Prerequisite for Android/Mobile
Apps)
1. 2. 3. Install Android Studio: Download and install Android Studio.
Install SDK and Command-line Tools: Follow the same steps as the Windows
installation (Section 2.4).
Android License: Accept the Android licenses:flutter doctor --android-licenses
3.6 Set up IDE
1. Install IDE: Install a preferred IDE, such as VS Code or Android Studio.2. Install Plugins: Install the official Flutter and Dart plugins/extensions within your
chosen IDE.
4. Final Verification and Next Steps
1. 2. Run Doctor Again: After completing all steps for your OS and required mobile
platforms, run flutter doctor one final time. All required sections should show a
checkmark ([✓]).
For Run the App:flutter run
This command will launch the default sample app on an available device or
simulator/emulator.


Configuration

1 article


1. Open your wordpress admin panel

2. Click on plugin in the left side bar and add the plugin

3. Get our Flex Build - WooCommerce Mobile App Sync plugin then go to wordpress plugin

4. Click on Add New

5. Choose the plugin zip file then install it

6. Go back in dashboard and click on Flex Build on right side

7. Get the plugin key and copy this key and paste it in app code

File Path: woostoreapp/lib/env.dart

Screenshot 2025-12-23 at 4.12.51 AM.png 394.44 KB

How to setup firebase in app:

The user is asking for the next logical steps in the woostore app setup guide, specifically

focusing on Firebase integration. The current section starts with How to run the app: after

the cursor, but the user is asking about the prerequisite step: Firebase setup.

I will define the steps for installing the Firebase CLI, creating a Firebase project, and connecting

it to the Flutter app. I will place this content immediately after How to setup firebase in

app:.

How to setup firebase in app:

Firebase Setup Guide

1. Install Firebase CLI (Command Line Interface)

The Firebase CLI is essential for creating projects and deploying resources.

1. 2. 3. Node.js Requirement: Ensure you have Node.js installed on your system.

Install the CLI: Open your terminal or command prompt and run the following npm

command:npm install -g firebase-tools

Log In: Log in to Firebase using your Google account:firebase login

Follow the instructions in the browser to complete the login process.

2. Create a Firebase Project

1. 2. 3. Visit Firebase Console: Go to the Firebase Console and click Add project.

Name Project: Enter a descriptive name for your project (e.g., Woostore-App-Prod).

Google Analytics: Choose whether to enable Google Analytics for this project

(recommended for tracking).

4. Complete Creation: Click Create project and wait for the process to finish.

3. Connect Firebase with Flutter App

This process uses the Firebase CLI to automatically configure the Flutter project.

1. 2. Install FlutterFire CLI: In your terminal, run:dart pub global activate flutterfire

cli

_

Initialize Firebase in Flutter Project:

Navigate to the root directory of your Flutter app (where your pubspec.yaml file

is located).○

Run the Firebase configuration command. It will detect your platforms and

generate the necessary configuration files.

flutterfire configure

Follow the prompts to select the Firebase project you just created and the

platforms (Android, iOS, Web) you want to set up.

Once everything done then click on the add button that show in the firebase

dashboard

Click on flutter logo button it will give you some commends then run that

commands one by one


How to run the app:

1. . First unzip the code and open the code in VS code

2: Open the config folder and open the env.props file

3: Replace your purchase code, app name,web url and app id here

4. Once it’s completed the open the lib folder and open the env.dart file

5: How you will get see the video: woocommercekeyssetup.mp4

.6. When all of this done then change the app icon

Need More Help?

Can't find what you're looking for? Our support team is here to assist you.

Get Support