mirror of
https://github.com/wgtunnel/android.git
synced 2026-06-02 00:29:08 +02:00
3c5aff31aa
Migrated app from using ObjectBox library for db to Room as ObjectBox is not FLOSS compliant. Migrated app to using version catalog for managing dependancies. Added floss build flavor for F-Droid and general build flavor for all other builds. Floss build excludes google analytics and crashlytics. Other performance improvements and refactors.
19 lines
530 B
Kotlin
19 lines
530 B
Kotlin
buildscript {
|
|
dependencies {
|
|
if (BuildHelper.isReleaseBuild(gradle) && BuildHelper.isGeneralFlavor(gradle)) {
|
|
classpath(libs.google.services)
|
|
classpath(libs.firebase.crashlytics.gradle)
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
plugins {
|
|
alias(libs.plugins.android.application) apply false
|
|
alias(libs.plugins.kotlin.android) apply false
|
|
alias(libs.plugins.hilt.android) apply false
|
|
kotlin("plugin.serialization").version(libs.versions.kotlin).apply(false)
|
|
alias(libs.plugins.ksp) apply false
|
|
}
|