Giter Club home page Giter Club logo

flarum-app's Introduction

Android App for Flarum

A way to build an Android app for your flarum site easily.

About this project:

This project is designed for the webmasters of Flarum websites. This project can help the Flarum website owners to build their web-based Android apps easily, and help the Flarum websites to keep the users. It mainly used the 'webview' tech in Java, with cache storage, log in protection, and other techs. Note: This is not a Flarum official project.

What is Flarum?

Flarum is a delightfully simple discussion platform for your website. It's fast and easy to use, with all the features you need to run a successful community. It is designed to be:

  • Fast and simple. No clutter, no bloat, no complex dependencies. Flarum is built with PHP so it’s quick and easy to deploy. The interface is powered by Mithril, a performant JavaScript framework with a tiny footprint.

  • Beautiful and responsive. This is forum software for humans. Flarum is carefully designed to be consistent and intuitive across platforms, out-of-the-box.

  • Powerful and extensible. Customize, extend, and integrate Flarum to suit your community. Flarum’s architecture is amazingly flexible, with a powerful Extension API.

Why this project is build?

Currently, we have not found great Android app solution for Flarum, the only one we found is fluam/fluam_app, but it tends to be an app for a lot of websites, instead of one. Also, it's not avaliable for users to login, nor make any actions through that project. Thus, we build this simple project to help the Flarum webmasters to build apps for their own websites.

How to build an app with this project?

We have found two approaches for you to use this project, a command-line more approach, and a applications more approach.

We'll start with the command-line approach, to skip to the application approach, click here. The command line approach allows you to:

  • Add your website url
  • Change the name of the app
  • Make the app with any operating system gradle support

This approach doesn't allow you to:

  • Use custom icon for the app
  • Customize your app package name
  • Add custom functions to your generated app

Here is instruction of the command-line approach:

  1. Make sure you have Gradle installed on your device, to check if you have installed, or not, run the following command through the command line:

    gradlew -v

    If there are info about gradle, congragulations, you can skip the installation of gradle, if there isn't, follow the following instruction:

    1. If you are a Linux/GNU user, the system might tell you if you want to install gradle, after you ran the previous command, if it didn't, follow this guide to install gradle in your device: https://gradle.org/install
    2. If you are a Windows/Mac user, you can follow the official guide to install: https://gradle.org/releases/ , or https://gradle.org/install

    Note: You need to add gradle as a path when installing it. Note: You need to install Java before installation of gradle.

  2. After gradle is prepared, there is only a little things need to be done.

    1. Download the release of this project:

      git clone https://github.com/Aurorum-Studio/flarum-app.git ##using git

      or,

      Directly dowload the latest release from GitHub: https://github.com/Aurorum-Studio/flarum-app/releases/

    2. Now it's time to customize your app,

      First, go to (relative path) /app/src/main/res/values/strings.xml

      You can open this file with almost any text editor, and change the "My Flarum" on the second line "My Flarum", into the app name you want.

      This step is very important, go to (relative path) /app/src/main/java/com/hhilan/flarum/MainActivity.java Change "https://www.hhilan.com" on line 23, to your own url (the link of your website homepage).

      Warning: Do not change anything else in this file, unless you KNOW WHAT YOU'RE DOING.

    3. If you're a Windows user, simply double-click the build.cmd file, and the building process would run automatically.

      If you're a Linux/GNU user, open the command line in the folder of this project, and run the following command:

      gradlew clean gradlew build

Then, the app will be generate automatically, after the command line is closed (on Windows), or start a new line (on Linux/GNU), your app is already generated.

You can find your app for debugging in (relative path) /app/build/outputs/apk/debug/app-debug.apk

You can find your app for release in (relative path) /app/build/outputs/apk/debug/app-release-unsigned.apk

Note: It's recommanded to use debug app instead of the released one, because the released one is unsigned.


Now let's go to start with the application approach. The application approach allows you to:

  • Add your website url
  • Change the name of the app
  • Use custom icon for the app
  • Customize your app package name
  • Add custom functions to your generated app

This approach doesn't allow you to:

  • Make the app with any operating system gradle support.
  • Generate your application with only a little disk storage cost.

Here is the application approach instruction:

  1. Download and install Android Studio, the official release and install instruction can be found on https://developer.android.com/studio/install .

  2. Follow the guide, and install Android Studio on your computer, Note: You need to make sure that gradle is installed, and added to path.

  3. Now, it's the time to work with this project.

    1. Download the latest release of this project
    1. Customize your application. (For more instruction of the structure of this project, read this doc.)
    • To change the name of the application,

    Browse to (relative path) /app/src/main/res/values/strings.xml, and change the "My Flarum" on the second line "My Flarum", into the app name you want. 图片

    • To change the name of the package,

    go to the MainActivity.java file, and follow the following images 图片 图片

    !!! Note: Flarum is the trademark of Flarum, you should not use com.flarum or anything that implies the App is an official app by the Flarum team. Which is to say, the first and second string should not contain Flarum Trademark.

    !!!Warning!!!: If your previous package name is like shown in the image, including strings like "www", or "com", DO NOT change the package name in this way, you should change it in other ways, while that would take a lot of work. Thus, DO NOT use names contain these strings unless it's your last time to change your package name. If you download this project directly from official release, you WOULD NOT recieve a project with those strings.

    图片 And, that's done.

    • To change the icon of your application:

    Note: You should not use Flarum icon, HhiLan icon, nor Aurorum icon for the icon of your application. 图片 图片 图片

  4. You have already done most of your DIY work, for more DIY-able details, go to this doc. (Documentation on building, link would be avaliable after it's built.)

  5. Now, it's time to build this project into an application.

    图片 Click make project, and your app is built, with the path given by Android Studio.

Todo list (It's very welcomed to make the todo list become true before me, and please make a pull request if you did.):

  1. Build a version made with firefox (gecko), to make sure users with poor webview support can use this app.
  2. Add a offline cache read feature, to allow users use the app offline. (might be done before 2023/05) Plan has been made.
  3. Make this Readme file better.
  4. Optimize the appearance of this app:
    • Add a better-looking loading
    • Add a better header.
  5. Make a native Android app for flarum. (This would be a lot of work.)
  6. Make a full automatic Windows/Linux/Android/web application to build this project to an app.
  7. Make it available to upload staffs using fof upload. From Issue #7

At last, if you like this project, please star it.🦊 It's also very welcomed to contribute to this project through pull request, or issue, discussions. If you want to support me, please go to my sites, and view some articles. (https://dl.aurorum.co ; https://www.hhilan.com ; https://dev.aurorum.co)

Here are some ways you can get support:

Discussions:

Issues: Github: https://github.com/Aurorum-Studio/flarum-app/issues

A small notice: The version of Gradle would impact the building process of this project, if you are in a country or region that have Google services available, you can download the right one from Android Studio, if you are not, you need to download version 6.7.1 from gradle official website.

flarum-app's People

Contributors

aurorum-studio avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.