docs: Revamp README and add APK naming convention (#2)

This commit introduces a complete overhaul of the `README.md` to improve project presentation. Key changes include:
•   Adds a new header with the app icon and a Google Play badge.
•   Updates the feature graphic and includes a note distinguishing the OSS version from the Play Store version.
•   Refines the "Open Source Libraries" section to be more structured.
•   Moves the main preview image into the `docs` directory.

Additionally, the `app/build.gradle.kts` file is updated to configure a standardized naming convention for output APK files, including flavor, version, and build type.
This commit is contained in:
Aryan 2026-02-25 19:54:43 +05:30 committed by GitHub
parent 8b5dd8e78a
commit 92c2bf2822
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 42 additions and 13 deletions

View file

@ -78,6 +78,19 @@ android {
)
}
}
applicationVariants.all {
val variant = this
outputs.all {
val output = this as com.android.build.gradle.internal.api.ApkVariantOutputImpl
val flavor = variant.productFlavors.getOrNull(0)?.name ?: ""
val buildType = variant.buildType.name
val version = variant.versionName
output.outputFileName = "Episteme-$flavor-v$version-$buildType.apk"
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17