π€³πΎ Google Play developer: Advertising ID
This release includes the https://t.co/dQIf84Se2t_ID permission but your declaration on Play Console says that your app doesn't use advertising ID.
#Flutter#Android#AppDevelopment
If not one of the most common causes is that you use Google analytics or a similar analytics package. For this you need to declare that you use an advertising ID and specify that you use it for analytics
π₯οΈ Mac OS Terminal: Open @Xcode in current folder
We also always forget this command:
- Navigate to the folder you want to access in Xcode
- Type: xed .
That's it. Xcode should open.
#Flutter#Xcode#Swift#AppDevelopment
π€³πΎFlutter: How to use custom icons in 2023
Fluttericon is still the best way to import and manage custom icons in Flutter. Here is how to get it done.
- Create an SVG
- Import into Fluttericon
- Import into your Flutter project
- Profit
#Fluttericon#Flutter
@ngrokHQ now has static domains for free! π₯ You can now log into your @ngrokHQ account and claim a static domain even if you are on the free tier.
Dope!
As more #developers leverage @ngrokhq for production workloads, we want to make their lives easier. Today we are announcing that all users on our platform can use a static domain for FREE.
π Learn more: https://t.co/ifc5xUEEpI
Hope this helped.
Follow us @techimpostr for more tips and tricks to help you become a better solopreneur.
#StealOurTips#Solopreneur
Like/Retweet the first tweet below if this helped you:
You can use this logic to trigger or cancel a build based on the presence or absence of any string in the commit message:
- if [[ $COMMIT_MSG != *"Prod"* ]]
- if [[ $COMMIT_MSG = *"iOS"* ]]
- if [[ $COMMIT_MSG != *"Tuesday"* ]]
- if [[ $COMMIT_MSG != *"build"* ]]
And so on π€£π₯
π± Codemagic: Flutter build management
If you need to run CICD for an app but want to be able to conditionally build for iOS or Android, you can trigger a flow using your commit message. Here's how to adjust your codemagic.yaml:
#Flutter#CICD#Codemagic
π₯οΈ Tips for Command History in macOS Terminal
1/ Saving time in macOS Terminal: Use the power of command history functions to speed up your workflow.
#MacOs#Terminal