diff --git a/Makefile b/Makefile
index d3f601e48dfff7e9593dc91d9f35e9b3cbcff403..33d3165f7a426e1a766cd25386244a5656951698 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)