flutter_distributor icon indicating copy to clipboard operation
flutter_distributor copied to clipboard

An all-in-one Flutter application packaging and distribution tool, providing you with a one-stop solution to meet various distribution needs.

Results 94 flutter_distributor issues
Sort by recently updated
recently updated
newest added

from "outputDirectory": "build/macos/Build/Products/Release" to build/macos/Build/Products/Release-uat/ Please!!! `{ "config": { "mode": "release", "flavor": "uat", "arguments": { "dart-define": { "APP_ENV": "dev" }, "flavor": "uat", "target": "lib/main_uat.dart" } }, "outputDirectory": "build/macos/Build/Products/Release", "duration": 457358,...

Hi all! Consider the following `include`s in `make_config.yaml`: ``` include: - /usr/lib/x86_64-linux-gnu/libgphoto2/*/*.so - /usr/lib/x86_64-linux-gnu/libgphoto2_port/*/*.so ``` I would expect this to include every found file. Currently only the first result of...

Unhandled exception: FormatException: Missing extension byte (at offset 229) #0 _Utf8Decoder.convertSingle (dart:convert-patch/convert_patch.dart:1747:7) #1 Utf8Decoder.convert (dart:convert/utf.dart:351:42) #2 DefaultShellExecutor.exec. (package:flutter_distributor/src/utils/default_shell_executor.dart:35:33) #3 _RootZone.runUnaryGuarded (dart:async/zone.dart:1594:10) #4 _BufferingStreamSubscription._sendData (dart:async/stream_impl.dart:339:11) #5 _BufferingStreamSubscription._add (dart:async/stream_impl.dart:271:7) #6 _SyncStreamControllerDispatch._sendData (dart:async/stream_controller.dart:776:19)...

直接使用`flutter build macos`然后在xcode中archive可以上传到appstoreconnect,但是用[flutter_distributor](https://github.com/leanflutter/flutter_distributor)不行。 配置脚本: ```yaml # macOS appstore - name: macstore jobs: - name: release-prod-macos package: platform: macos target: zip build_args: verbose: release: true dart-define: APP_ENV: prod SANDBOX: true publish_to:...

使用的M1苹果本,希望能把Windows和Linux打包arm64的参数开放到make_config.yaml文件 Windows打包exe参数: ArchitecturesAllowed=x64 ArchitecturesInstallIn64BitMode=x64 Linux打包deb参数: 'Architecture': 'amd64'

Does flutter_distributor obfuscate the code? I suppose not, as far as I have seen it in the logs. Would it be possible somehow to add the --obfuscate flag to the...

Arch users are only able to install apps using .pacman format and there are a lot of arch users. I think if flutter_distributor supports .pacman format then it would cater...

Linux systems use metainfo xml file to gather the previous versions of app, description, app home page, etc details which are used for App Stores to display relevant information. Currently...

``` wget -O appimagetool "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-aarch64.AppImage" chmod +x appimagetool && mv appimagetool /usr/local/bin/ ``` https://github.com/picguard/picguard/actions/runs/9632160131/job/26564943522 ``` /bin/sh: 1: appimagetool: Exec format error MakeError: /bin/sh: 1: appimagetool: Exec format error #0 AppPackageMakerAppImage._make....

在没有苹果开发者账号的情况下,无法直接打包 IPA 文件,但是可以制作无签名的 IPA 文件。 只需要将 `flutter build ios` 命令生成的 `Runner.app` 放置在一个空的 `Payload` 目录,之后压缩为 `zip` 并修改后缀名为 `ipa` 。 虽然不能上架 appstore ,但可以将无签名的 IPA 直接分发给用户,让用户通过 AltStore 、TrollStore 等工具自签并安装。