/azshop-kit

Clone from atornel / RestaurantAppUIKit and change names as a reference flutter project.

Primary LanguageDartApache License 2.0Apache-2.0

AzShop-kit Flutter project

This is a clone of https://github.com/atornel/RestaurantAppUIKit and credit to the author! Beautiful prototype but need optimizing much.

This tip-trick shows off how to rename package for both ios and android in any Flutter project

1. Go to build.gradle in app module and rename applicationId "com.company.name"
2. Go to Manifest.xml in app/src/main and rename package="com.company.name" and android:label="App Name"
3. Go to Manifest.xml in app/src/debug and rename package="com.company.name"
4. Go to Manifest.xml in app/src/profile and rename package="com.company.name"
5. Go to app/src/main/kotlin/com/something/something/MainActivity.kt and rename package="com.company.name"
6. Go to app/src/main/kotlin/ and rename each directory so that the structure looks like app/src/main/kotlin/com/company/name/
7. Go to pubspec.yaml in your project and change name: something to name: name, example :- if package name is com.abc.xyz the name: xyz
8. Go to each dart file in lib folder and rename the imports to the modified name. Rename folders related to package name "com.company.name"
9. Open XCode and open the runner file and click on Runner in project explorer.
10. Go to General -> double click on Bundle Identifier -> rename it to com.company.name
11. Go to Info.plist click on Bundle name -> rename it to your App Name.
close everything -> go to your flutter project and run this command in terminal flutter clean