App Code Setup
Setup your domain link and keys
Enter your domain link and keys in the app code Go to project directory-> lib-> common-> apidata.dart
static const String domainLink = "ENTER YOUR DOMAIN LINK";

static const String appName = "ENTER YOUR APP NAME";
static const String secretKey = "ENTER YOUR SECRET KEY";

static const String googleDriveApi = 'ENTER YOUR GOOGLE DRIVE KEY';
static const String zoomAppKey = "ENTER YOUR ZOOM SDK APP KEY";
static const String zoomSecretKey = "ENTER YOUR ZOOM SDK APP SECRET KEY";
eClass App Deployment Video :
App Icon
Make your app icon from the below link and download the zip file. replace it at the path Go to project directory-> android-> app-> src-> main-> res https://makeappicon.com/

Label Name
To Change your App Label Name
Go to project diretory/android/app/src/main/AndroidManifest.xml
<application
android:label="ENTER YOUR APP NAME"
android:usesCleartextTraffic="true"
android:icon="@mipmap/ic_launcher">
Package Name
To change your app package name
ctrl+shift+F to find com.lolits.eclass than ctrl+shift+R to replace it with your app package name

eClass properties file
Change your app keystore password from eclass.properties file
Go to android-> eclass.properties
storePassword=password
keyPassword=password
keyAlias=appname
storeFile=appname.jks
jks file
To Create jks file for your app , run the command in the terminal
1. cd android 2. cd app 3. then run the command given below
android/app/
keytool -genkey -v -keystore appname.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias appname
Google-services.json file
Add google-services.json file in the app code from firebase console
Assets
Change App Images
Go to project directory -> assets -> placeholder
Change App Logo
Go to project directory -> assets -> images
change logo.png [ 200 x60 px ] and logologin.png [ 300 x90 px ] image
Follow Steps mentioned below for IOS App Installation
Open your project folder in terminal and run this below commands
flutter clean
flutter pub get
After type “ cd ios ” in terminal this command take you in iOS directory of project then run this command “ pod install”.
After that go to the project and open iOS folder and open Runnerxcode.workspace file it will open a Xcode
Next step is to Go to file < workspace settings < select new build system.
After that navigate to product menu on top in Xcode, choose destination and select any simulator and run your project.
if project run properly then go back to terminal and run this command ‘flutter build ios’
after that goto same product menu and archive, this function will make a release apk
And you can release you app from archive menu and your app will be uploaded on.
Last updated
Was this helpful?