Skip to content

Latest commit

 

History

History
77 lines (56 loc) · 2.5 KB

DEVELOPING.md

File metadata and controls

77 lines (56 loc) · 2.5 KB

Developing

just gen generates the language bindings

If you're following the flutter_rust_bridge guide, you'll want "Alternative NDK setup" and compile with rust nightly for now.

Android

Justin did this somewhere along the way. Not sure if necessary.

$ cat ~/.gradle/gradle.properties
ANDROID_NDK=/Users/justin/Library/Android/sdk/ndk-bundle

Tail logs from terminal:

adb logcat | grep -F "`adb shell ps | grep com.justinmoon.fluttermint  | tr -s [:space:] ' ' | cut -d' ' -f2`"

Releases

When making a release, increment version number and build number in pubspec.yaml.

Testflight

Build the IPA:

flutter build ipa

Uploaded it using transport app.

Play Store

flutter build appbundle

Upload that to Google Play. Here are some docs about testing it locally.

Contributing

Contributions are very welcome, just open an issue or PR if you see something to improve!

Please note that all contributions happen under the MIT license as described below:

Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
    have the right to submit it under the open source license
    indicated in the file; or
(b) The contribution is based upon previous work that, to the best
    of my knowledge, is covered under an appropriate open source
    license and I have the right under that license to submit that
    work with modifications, whether created in whole or in part
    by me, under the same open source license (unless I am
    permitted to submit under a different license), as indicated
    in the file; or
(c) The contribution was provided directly to me by some other
    person who certified (a), (b) or (c) and I have not modified
    it.
(d) I understand and agree that this project and the contribution
    are public and that a record of the contribution (including all
    personal information I submit with it, including my sign-off) is
    maintained indefinitely and may be redistributed consistent with
    this project or the open source license(s) involved.