Un client android per lemmy - un'alternativa federata a reddit
Go to file
Filip Krawczyk 9a7c423c21
Merge pull request #82 from krawieck/windows-build
2020-10-30 16:13:54 +01:00
.github release windows binaries on git tag 2020-10-27 23:46:29 +01:00
android experimental linux build 2020-10-25 12:31:11 +00:00
ios update LAC, add image_picker 2020-10-24 00:11:44 +02:00
lib Merge pull request #80 from krawieck/info-table-popup 2020-10-27 21:16:19 +00:00
linux experimental linux build 2020-10-25 12:31:11 +00:00
test added blank test 2020-08-31 23:21:12 +02:00
windows experimental windows build 2020-10-27 23:39:19 +01:00
.gitignore ignore .vscode and update lock file 2020-08-31 23:22:09 +02:00
.metadata first commit 2020-08-02 13:34:42 +02:00
CHANGELOG.md created changelog 2020-09-22 01:46:29 +00:00
CONTRIBUTING.md hotfix: removed mobx mentions 2020-10-28 00:00:08 +01:00
LICENSE Create LICENSE 2020-09-22 20:45:06 +02:00
README.md added build instructions for windows 2020-10-28 00:00:27 +01:00
analysis_options.yaml activate prefer_final_locals lint rule 2020-09-16 23:22:04 +02:00
pubspec.lock bump dependencies for windows support 2020-10-27 23:46:41 +01:00
pubspec.yaml removed no longer used dependencies 2020-10-25 23:45:54 +00:00

README.md

lemmur

style: effective dart

A lemmy mobile client

Build from source

Prerequisites

  • Install flutter: To check if this step was successful run flutter doctor (Installing android studio is not required if you setup the android SDK yourself)
  • Clone this repo: git clone https://github.com/krawieck/lemmur
  • Enter the repo: cd lemmur

Android

  1. Build: flutter build apk

The apk will be in build/app/outputs/flutter-apk/app-release.apk

Linux

  1. Make sure you have the additional linux requirements (verify with flutter doctor)
  2. Switch to dev channel of flutter:
    flutter channel dev
    flutter upgrade
    flutter config --enable-linux-desktop
    
  3. Build: flutter build linux

The executable will be in build/linux/release/bundle/lemmur (be aware, however, that this executable is not standalone)

Windows

  1. Make sure you have the additional windows requirements (verify with flutter doctor)
  2. Switch to dev channel of flutter:
    flutter channel dev
    flutter upgrade
    flutter config --enable-windows-desktop
    
  3. Build: flutter build windows

The executable will be in build\windows\runner\Release\lemmur.exe (be aware, however, that this executable is not standalone)