Yo flutter devs , after making a build of yo apk , if you are still going to the builds folder and through alll that folders to find your release apk then ur tooo old 😁 check this pkg
https://pub.dev/packages/flcp
https://pub.dev/packages/flcp
Dart packages
flcp | Dart package
A command-line tool that automatically finds, renames, and copies Flutter build files to your desktop using a standardized naming convention.
🆒5
The Software Guy
Yo flutter devs , after making a build of yo apk , if you are still going to the builds folder and through alll that folders to find your release apk then ur tooo old 😁 check this pkg https://pub.dev/packages/flcp
command instead of installing unknown pkg😁
#!/bin/bash
# Replace with your platform-specific path
BUILD_PATH="build/app/outputs/flutter-apk/app-release.apk"
DESKTOP_PATH="$HOME/Desktop/app-release.apk"
# Check if build exists
if [ -f "$BUILD_PATH" ]; then
cp "$BUILD_PATH" "$DESKTOP_PATH"
echo "Release copied to desktop successfully!"
else
echo "Build not found at $BUILD_PATH"
fi
🆒5⚡1
This media is not supported in your browser
VIEW IN TELEGRAM
So true😁😁. My dream job is to sit back and chill with popcorn
🤣9
Forwarded from Solo codes (Brook Solomon)
Here's some advice coming from a place of love
Stop asking good developers/ channel owners/ senior's "what should I learn"
That should be a choice you make on your own based on what you want, what you are aiming for and other things
You wouldn't go to a dating coach and ask what kind of person should i want
You ask them "i want this person, how do I get them"
Decide your path, what you want to learn, then ask for help on how to learn that thing instead.
Stop asking good developers/ channel owners/ senior's "what should I learn"
That should be a choice you make on your own based on what you want, what you are aiming for and other things
You wouldn't go to a dating coach and ask what kind of person should i want
You ask them "i want this person, how do I get them"
Decide your path, what you want to learn, then ask for help on how to learn that thing instead.
🤝8👍1