Un client android per lemmy - un'alternativa federata a reddit
Go to file
shilangyu 9b725d8a02 Release v0.4.1 2021-04-06 13:02:54 +02:00
.github Fix release script 2021-03-10 16:32:33 +01:00
.vscode Add vscode config 2021-02-28 17:19:25 +01:00
android Fix link launching on Android 11 2021-02-11 11:16:13 +01:00
assets Restore readme_icon.svg 2020-12-04 21:20:29 +01:00
fastlane/metadata/android Release v0.4.1 2021-04-06 13:02:54 +02:00
ios Transition to API v3 (#196) 2021-04-05 20:14:39 +02:00
lib Change cleanUpUrl name 2021-04-06 10:56:21 +02:00
linux Fix linux build 2021-03-10 13:42:58 +01:00
scripts Fix locale generation 2021-03-10 08:12:57 +01:00
test added blank test 2020-08-31 23:21:12 +02:00
windows Change windows file description 2021-02-09 09:14:57 +01:00
.gitignore Add vscode config 2021-02-28 17:19:25 +01:00
.metadata first commit 2020-08-02 13:34:42 +02:00
CHANGELOG.md Release v0.4.1 2021-04-06 13:02:54 +02:00
CONTRIBUTING.md Add initial l10n setup 2021-02-28 21:53:02 +01:00
LICENSE Create LICENSE 2020-09-22 20:45:06 +02:00
README.md Drop effective_dart 2021-03-18 20:13:15 +01:00
analysis_options.yaml Drop effective_dart 2021-03-18 20:13:15 +01:00
l10n.yaml Add initial l10n setup 2021-02-28 21:53:02 +01:00
pubspec.lock Replace local user id with person id in JWT payload 2021-04-06 10:39:43 +02:00
pubspec.yaml Release v0.4.1 2021-04-06 13:02:54 +02:00

README.md

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)