Gitignore not working

The files/folder in your version control will not just delete themselves just because you added them to the .gitignore. They are already in the repository and you have to remove them.…

Codeigniter initial setup

Installation https://codeigniter.com/user_guide/installation/installing_composer.html#installation Rename env -> .env file Add .htaccess file RewriteEngine on RewriteCond %{REQUEST_URI} !^public RewriteRule ^(.*)$ public/$1 [L]

Emulator internet access issue

adb devices adb shell ping 8.8.8.8 adb shell ping google.com -> ping: unknown host google.com Solved: https://medium.com/@daydreamer_/how-to-fix-android-emulator-wi-fi-connected-with-no-internet-c62fd4ed652d macOS DNS settings are specified in the Network window. Click Apple menu > System Preferences > Network. Click Select Connected Wifi…

Flutter app add icon

if possible select icon from iconify https://icon-sets.iconify.design/material-symbols/?icon-filter=location It saves lot of time and money Then do the following Use this like to generate icons quicklyhttps://romannurik.github.io/AndroidAssetStudio/icons-launcher.html#foreground.type=clipart&foreground.clipart=android&foreground.space.trim=1&foreground.space.pad=0.25&foreColor=rgba(96%2C%20125%2C%20139%2C%200)&backColor=rgb(68%2C%20138%2C%20255)&crop=0&backgroundShape=circle&effects=none&name=ic_launcher use play_store_512.png as app icon…

Change flutter package name and app name

rename package from pub.dev https://pub.dev/packages/rename flutter pub add rename flutter pub global activate rename Get AppName rename getAppName --targets ios,android,macos,windows,linux rename getBundleId --targets ios,android,macos,windows,linux Set AppName rename setAppName --targets ios,android…

Firebase web app hosting

npm install -g firebase-tools firebase init hostingsample files will be createdfirebase deploy --only hosting Host inside the firebaseTo run this web app locallyfirebase emulators:start
flutter-firebase-push

Firebase push notification in Flutter Android and IOS

Before you begin Install and initialize the Firebase SDKs for Flutter if you haven't already done so. https://whichmakes.com/install-and-initialize-firebase-sdk-in-flutter-android-and-ios/ Install the plugin flutter pub add firebase_messaging Receive messages in a Flutter…