Un client android per lemmy - un'alternativa federata a reddit
Go to file
Marcin Wojnarowski 12cdd04098
Merge pull request #111 from krawieck/from-comment-to-post
Allow user to go from comment to post
2021-01-16 16:41:26 +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-22 13:30:57 +01:00
ios [ImgBot] Optimize images 2020-12-19 17:29:50 +00:00
lib fixes requested in code review 2021-01-16 16:32:45 +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 Cleanup analysis options 2021-01-03 20:27:09 +00:00
pubspec.lock fix visual federation bugs 2021-01-02 00:13:13 +00:00
pubspec.yaml fix visual federation bugs 2021-01-02 00:13:13 +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)