Un client android per lemmy - un'alternativa federata a reddit
Go to file
Filip Krawczyk bfca9ce4d3
Restore readme_icon.svg
2020-12-04 21:20:29 +01:00
.github Add funding options 2020-12-04 13:22:42 +00:00
android [ImgBot] Optimize images 2020-12-04 18:04:52 +00:00
assets Restore readme_icon.svg 2020-12-04 21:20:29 +01:00
ios [ImgBot] Optimize images 2020-12-04 18:04:52 +00:00
lib Merge pull request #86 from krawieck/release-setup 2020-12-04 19:04:31 +01: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 Add funding options 2020-12-04 13:22:42 +00:00
analysis_options.yaml activate prefer_final_locals lint rule 2020-09-16 23:22:04 +02:00
pubspec.lock Add and generate app icons 2020-12-04 12:48:47 +00:00
pubspec.yaml show app icon in about and links to support 2020-12-04 15:43:39 +00:00

README.md

style: effective dart

lemmur

A mobile client for lemmy - a federated reddit alternative

Buy Me A Coffee

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)