diff --git a/Makefile b/Makefile
index d4a67bbd4767064e0a8f8db02e8a786e6ab22ede..d3f601e48dfff7e9593dc91d9f35e9b3cbcff403 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,16 @@
-flavor=production
-entryPoint=main.dart
-
-iosBundleName=Vereign
-iosScheme=production
-iosConfiguration=Release-production
+flavor=development
+entryPoint=main-dev.dart
+iosBundleName=Vereign-dev
+iosScheme=development
+iosConfiguration=Release-development
 
 
 ifeq ($(target), development)
-	flavor=development
-	entryPoint=main-dev.dart
-	iosBundleName=Vereign-dev
-    iosScheme=development
-    iosConfiguration=Release-development
+    flavor=production
+    entryPoint=main.dart
+    iosBundleName=Vereign
+    iosScheme=production
+    iosConfiguration=Release-production
 endif
 
 .PHONY: all build-ios build-android