FAQ's
Install FlyWeb?
Create Database empty i.e name
flyweb
using phpMyAdmin.Zip the folder
FlyWeb_Admin_Panel
Upload the
FlyWeb_Admin_Panel.zip
file into the directory of your serverAssuming your website is
mydomain.com
, open up a browser and navigate tohttp://mydomaine.com/flyweb/install
Put ( 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->Flutter
ChooseFlutter Pub Get
Run your Application in your mobile.
How I can change the icon FlyWeb?
Open project in AndroidStudio
Expand the folder
android
from the project root in AndroidStudioFlutter_flyweb/android
In Android Studio, go to the folder
res
Right Click on the
app
folderIn the context
Menu
go toNew->Image Asset
Select type :
Launch Icons ( Adaptive and Legacy )
And also change
Background Layer
if 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.png
image 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.png
with your logo.
How I can add my DeepLink ?
Assuming your deeplink is
app.flyweb.scheme
Should Add in your
web site
for example inpage product
in 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.xml
with your DeepLink
How I can delete permission Location for Google play ?
Go to
Flutter_flyweb/android/app/src/main/AndroidManifast.xml
Search 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.xml
Add 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