From c732a801b9a9a47d3a7a5b98ca16146e5c583e0e Mon Sep 17 00:00:00 2001
From: Markin Igor <markin.io210@gmail.com>
Date: Thu, 8 Aug 2019 10:54:19 +0500
Subject: [PATCH] Add comments

---
 Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile
index d3f601e..33d3165 100644
--- a/Makefile
+++ b/Makefile
@@ -20,10 +20,13 @@ all: build-ios build-android
 run:
 	flutter run --flavor ${flavor} -t lib/${entryPoint}
 
-build-ios: flutter-build-ios archive-ios export-ios ## Builds ios bundle and upload to the AppStore
+build-ios: flutter-build-ios archive-ios export-ios ## Builds ios bundle and uploads it to the AppStore
 
 build-android: ## Builds android bundle
 	flutter build apk --flavor ${flavor} -t lib/${entryPoint}
+	# For PlayMarket
+	# flutter build appbundle --target-platform android-arm,android-arm64
+
 
 flutter-build-ios: ## Performs flutter build
 	flutter build ios --flavor $(flavor) -t lib/$(entryPoint)
-- 
GitLab