Newer packages available #20
Replies: 4 comments 1 reply
-
|
Hello @solitudery, No worries I had the same question myself when first starting out in flutter! As for the newer versions, no need to update them yourself since I take care of that and publish updates once everything's tested and stable. Those specific packages can't be bumped yet due to constraints (usually a major/minor version bump that could break stuff). So you are safe to continue building the apk without worries. And always feel free to open more discussions or leave comments if you're curious about anything else! |
Beta Was this translation helpful? Give feedback.
-
|
Thanks for your input. I installed java 21 and ran So I installed sdkmanager and ran Here's what Haiku said: "You have licenses in ~/.android/licenses/, but Gradle is looking in /usr/lib/android-sdk/licenses/ (which is root-owned and only has apache-2.0). I'm thinking about deleting everything and starting over again. |
Beta Was this translation helpful? Give feedback.
-
|
I see, it does seem to be a perms issue, nothing actually looks broken I think the cause is Try: sudo sdkmanager --licenses --sdk_root=/usr/lib/android-sdkIf that doesn't work I would switch to a user-owned SDK so sudo's not a part of the problem anymore: mkdir -p ~/Android/Sdk
export ANDROID_SDK_ROOT=~/Android/Sdk
export ANDROID_HOME=~/Android/SdkAdd those to your If it's still broken the simplest way would be to just fork the repo and let GitHub Actions build it, then grab the APK from the build artifacts. Sign it yourself after with |
Beta Was this translation helpful? Give feedback.
-
|
I'm trying to translate Grove to another language, could I do that with an already built APK? Don't I have to modify some files in the code before building? |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
When running "fvm flutter pub get" with Flutter 3.41.2 set in fvm in the project directory, it outputs:
Am I supposed to run the pub outdated command or is this a red herring / unnecessary? I'm new to this so forgive me if it's a peculiar or out of place question.
Beta Was this translation helpful? Give feedback.
All reactions