FAQ's
Install FlyWeb?
Create Database empty i.e name
flywebusing phpMyAdmin.Zip the folder
FlyWeb_Admin_PanelUpload the
FlyWeb_Admin_Panel.zipfile into the directory of your serverAssuming your website is
mydomain.com, open up a browser and navigate tohttp://mydomaine.com/flyweb/installPut ( purchase code - server - database - user - password )
Login your admin Flyweb (
http://mydomaine.com/FlyWeb_admin_Panel/)Login :admin@gmail.compassword :adminCopy your config from
Config Application( Admin Panel )Paste this in your application : (
FlyWeb_Flutter/assets/cfg/configuration.json)In Android Studio
Tools->FlutterChooseFlutter Pub GetRun your Application in your mobile.
How I can change the icon FlyWeb?
Open project in AndroidStudio
Expand the folder
androidfrom the project root in AndroidStudioFlutter_flyweb/androidIn Android Studio, go to the folder
resRight Click on the
appfolderIn the context
Menugo toNew->Image AssetSelect type :
Launch Icons ( Adaptive and Legacy )And also change
Background Layerif you where selecting the image radio button ( as is the default choice), if you click on the Buttons to show the path tree to locate your.pngimage file, most probably you might not be seeing it, so drag it from the Windows Explorer ( if Windows ) and drop it in the tree, and it will appear and ready for being selected.That is it! You have a new logo for your app now.
How I can change logo FlyWeb with my logo in splash screen ?
Open project in AndroidStudio
Go to folder
assets/img/Change
logo.pngwith your logo.
How I can add my DeepLink ?
Assuming your deeplink is
app.flyweb.schemeShould Add in your
web sitefor example inpage productin javascript for open URL:Add script in
<script>window.onload = function() { var urlParams = new URLSearchParams(window.location.search); window.location ='app.flyweb.scheme://url/' + urlParams.get('url'); }And update in
AndroidManifest.xmlwith your DeepLink
How I can delete permission Location for Google play ?
Go to
Flutter_flyweb/android/app/src/main/AndroidManifast.xmlSearch the 3 permissions and delete
android.permission.ACCESS_BACKGROUND_LOCATION android.permission.ACCESS_COARSE_LOCATION android.permission.ACCESS_FINE_LOCATION
How I can Add permission Camera ?
Go to
Flutter_flyweb/android/app/src/main/AndroidManifast.xmlAdd the 3 permissions
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
How I can create a database in cPanel?
1. Create a Database
Create Database empty i.e name
flyweb.Click Go Back.
The new database appears in the Current Database table.
2. Add a MySQL user
Enter a username in the Username text box.
Enter and confirm the new password in the appropriate text boxes.
Click Create User.
Click Go Back to return to the main interface.
3. Add a user to a database
In the Add User To Database section of the interface, select the desired user and database from the menus.
Click Add. The MySQL Account Maintenance interface will appear.
Select the checkboxes that correspond to the privileges that you wish to grant to the user.
Click Make Changes.
Click Go Back to return to the main interface.
Last updated
Was this helpful?