Skip to content

MonsterFlick/Fin-Read

Repository files navigation

How to Build Om's Fin (APK)

Prerequisites

  • Android Studio or JDK 17 installed.
  • Gradle (included in the project via wrapper).

Building a Release APK (Production)

  1. Open Terminal in the project root.

  2. Generate a Signing Key (if you don't have one):

    keytool -genkey -v -keystore release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-key-alias

    Keep this file safe!

  3. Configure Build Types:

    • Open app/build.gradle.kts.
    • Ensure signingConfigs is set up to read from your keystore (or use the GUI).
    • For a quick unsigned/debug build that works on your phone immediately:
  4. Run Build Command:

    ./gradlew assembleDebug

    This generates an APK at app/build/outputs/apk/debug/app-debug.apk. You can install this on any device.

  5. For Signed Release:

    • Go to Build > Generate Signed Bundle / APK in Android Studio.
    • Select APK.
    • Chose release.
    • The output will be in app/release/.

Running Locally

./gradlew installDebug

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages