App Code Setup

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

NOTE: This keystore password is just for example purpose. Create the keystore password according to your project.

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

NOTE: Before Run the above command ,check the appname.jks and appname in the command should be same as you created in eclass.properties file.

Google-services.json file

Add google-services.json file in the app code from firebase console

Assets

  1. Change App Images

    Go to project directory -> assets -> placeholder

  2. 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

  1. Open your project folder in terminal and run this below commands

    • flutter clean

    • flutter pub get

  2. After type “ cd ios ” in terminal this command take you in iOS directory of project then run this command “ pod install”.

  3. After that go to the project and open iOS folder and open Runnerxcode.workspace file it will open a Xcode

  4. Next step is to Go to file < workspace settings < select new build system.

  5. After that navigate to product menu on top in Xcode, choose destination and select any simulator and run your project.

  6. if project run properly then go back to terminal and run this command ‘flutter build ios’

  7. after that goto same product menu and archive, this function will make a release apk

  8. And you can release you app from archive menu and your app will be uploaded on.

NOTE: After running pub get, you must run the follow script to get Zoom SDK for the first time:

flutter pub run flutter_zoom_sdk:unzip_zoom_sdk

Last updated