wrteam.in
WRTeam is a company built with the ideology of customers first. We are a team of enthusiastic individuals, with foresight for innovation and a passion for solving everyday problems using the latest technology.
We trust in your ideas and want to help you bring them to life, so you can focus on your long term vision while we do all the hard work. As a service providing company, we understand your needs and strive hard to provide you with the best possible quality of service whether it is the development of your app, logo design or branding, or UI/UX improvements.
To achieve the above, we have handpicked our people and recruited a team of multi-talented individuals, each of whom adds a unique skill to our team of service providers. We ensure quality by imparting strict testing of all our products, listening to the customer complaints, and solving their problems on a priority basis.
How to Setup Flutter in Android Studio
- Download Lastest Flutter SDK from below link.in that click on flutter_window_xxx.zip button.
- Flutter sdk Here
- Extract the zip file and copy flutter folder into your desired installation location for the Flutter SDK (eg. C:\src\flutter; do not install Flutter in a directory like C:\Program Files\).
- Inside Flutter folder find flutter_console.bat. Start it by double-clicking.
- Now set your enviournment variable
- From the Start search bar in , type 'env' and select Edit environment variables for your account
- Under User variables check if there is an entry called Path:
- Click on Edit.new Dialog open from it click on new and copy full path to flutter\bin as its value
- Now Restart your pc for changes to take effect
- Now check everything is ok or not
- open cmd and do following shown in below picture
- Now open Android Studio and create new flutter project then select your flutter sdk file to the location where we have downloaded earlier and that's it
How to upgrade flutter version?
How to Run App with command?
Setup Project on MacOS
- Open Project folder in Android Studio. Go to Preferences > Language & Frameworks > Flutter and Set Flutter SDK Path & Enable Dart support for Project and Apply and OK.
- Next: Go to Flutter > Clean Flutter > Flutter Pub Get.
- Go to Terminal > write command -> cd iOS and press enter key and then write command pod install. After finishing pods installation.
- Go to Flutter > Open iOS module in Xcode
- Select Project > Target > Check For Display Name and Bundle Identifier in General Tab.
- Now go to Signing & Capabilities >Signing > Team - Add Your Team / Apple Developer Account here.
-
Add Following Capabilities according to Requirement of your Project & Respected Packages From Pubspec.yaml file.
- Sign in with Apple
- Apple Pay > Add Your merchant ID incase you want to use Apple Pay.
- Associated Domains > add applinks of your Domain.
- Background Modes > Location updates
Generate Release APK
-
Create an upload keystore
Running the following at the command line:
-
On Mac/Linux, use the following command:
keytool -genkey -v -keystore ~/upload-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias upload
-
On Windows, use the following command:
keytool -genkey -v -keystore c:\Users\USER_NAME\upload-keystore.jks -storetype JKS -keyalg RSA -keysize 2048 -validity 10000 -alias upload



-
On Mac/Linux, use the following command:
-
Reference the keystore from the app
Create a file named [project]/android/key.properties that contains a reference to your keystore:

Copy below code, Paste in to key.propertirs file and change as per shown in image.
storePassword=
keyPassword=
keyAlias=upload
storeFile=location of the key store file, such as /Users/user name/upload-keystore.jks

-
Configure signing in gradle
Configure gradle to use your upload key when building your app in release mode by editing the [project]/android/app/build.gradle file.
-
Add the below keystore information from your properties file before the
android block:
def keystoreProperties = new Properties()
def keystorePropertiesFile = rootProject.file('key.properties')
if (keystorePropertiesFile.exists()) {
keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
}

-
Find the buildTypes block:
And replace it with the following signing configuration info:
signingConfigs {
release {
keyAlias keystoreProperties['keyAlias']
keyPassword keystoreProperties['keyPassword']
storeFile keystoreProperties['storeFile'] ? file(keystoreProperties['storeFile']) : null
storePassword keystoreProperties['storePassword']
}
}
buildTypes {
release {
signingConfig signingConfigs.release
}
}

-
Add the below keystore information from your properties file before the
android block:
-
Run following commands in Terminal as per your need:
-
To generate an APK
flutter build apk -
To generate an App Bundle
flutter build appbundle

-
To generate an APK
Steps to Publish iOS App to App Store
- Open your Project's Runner.xcworkspace file in Xcode, and Add your Team [Your Apple Developer ID] and also Insert GoogleService-Info.plist file [Downloaded From Firebase Project] inside folder named Runner.
- and then Select Any iOS Device (armv7,arm64) as shown in image below.
- After that Select Archive From Product Menu of Xcode as shown below.
- Once Build / Archive Generated, pop up window will be shown. Validate app First, and After Successfull Validation of App, You Can Distribute App to AppStore.
- After SuccessFull Submission of Build File, it will be Reflected to your Apple Developer Account in which we have created app with same Bundle ID. Click here for Detailed Help






