maelchiotti / LocalMaterialNotes

Simple, local, material design notes
https://play.google.com/store/apps/details?id=com.maelchiotti.localmaterialnotes
GNU Affero General Public License v3.0
98 stars 7 forks source link

Add to F-Droid #72

Closed maelchiotti closed 1 month ago

maelchiotti commented 4 months ago

Waiting for the request for packaging: https://gitlab.com/fdroid/rfp/-/issues/2781

IzzySoft commented 3 months ago

For Fastlane, see #87 (F-Droid's issuebot already complained it's missing – and I bet the next one complaining will be either licaon or linsui :wink:

PS: once merged, it will be used by IzzyOnDroid as well.

offa commented 2 months ago

@maelchiotti is there a way to determine the version of flutter used by the release build so the F-Droid can use the exact same version?

maelchiotti commented 2 months ago

@offa I always use the latest stable version of Flutter. But maybe errors could happen if a new version is released in the small timeframe between my release and f-droid's build?

According to the docs, I can specify the flutter version used in my pubspec.yaml file (right now I only have the dart SDK version):

environment:
  sdk: '>=3.4.4 <4.0.0'
  flutter: ^3.22.0

I guess you could use that to extract the flutter version?

(And also, thank you very much for your time!)

offa commented 2 months ago

Yes, I think so! :+1:

But maybe errors could happen if a new version is released in the small timeframe between my release and f-droid's build?

The F-Droid build compares the apk to the one on Github, thus may fail if different flutter versions are used.

maelchiotti commented 2 months ago

Ok I see. Let me know if you need anything else 😊