mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
94 lines
2.2 KiB
Plaintext
94 lines
2.2 KiB
Plaintext
import plugin.KiwixConfigurationPlugin
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
jcenter()
|
|
maven { setUrl("https://jitpack.io") }
|
|
}
|
|
|
|
dependencies {
|
|
classpath(Libs.objectbox_gradle_plugin)
|
|
classpath(Libs.butterknife_gradle_plugin)
|
|
}
|
|
}
|
|
plugins {
|
|
`android-library`
|
|
}
|
|
plugins.apply(KiwixConfigurationPlugin::class)
|
|
apply(plugin = "io.objectbox")
|
|
apply(plugin = "com.jakewharton.butterknife")
|
|
ext {
|
|
set("versionMajor", 3)
|
|
set("versionMinor", 6)
|
|
set("versionPatch", 0)
|
|
}
|
|
|
|
/*
|
|
* max version code: 21-0-0-00-00-00
|
|
* our template : UU-D-A-ZZ-YY-XX
|
|
* where:
|
|
* X = patch version
|
|
* Y = minor version
|
|
* Z = major version (+ 20 to distinguish from previous, non semantic, versions of the app)
|
|
* A = number representing ABI split
|
|
* D = number representing density split
|
|
* U = unused
|
|
*/
|
|
|
|
fun generateVersionCode() =
|
|
20 * 10000 +
|
|
ext["versionMajor"] as Int * 10000 +
|
|
ext["versionMinor"] as Int * 100 +
|
|
ext["versionPatch"] as Int
|
|
|
|
android {
|
|
defaultConfig {
|
|
buildConfigField("long", "VERSION_CODE", "${generateVersionCode()}")
|
|
}
|
|
buildTypes {
|
|
getByName("release") {
|
|
isMinifyEnabled = false
|
|
}
|
|
}
|
|
}
|
|
|
|
fun shouldUseLocalVersion() = File(projectDir, "libs").exists()
|
|
|
|
dependencies {
|
|
// use jdk8 java.time backport, as long app < Build.VERSION_CODES.O
|
|
implementation(Libs.threetenabp)
|
|
|
|
// Get kiwixlib online if it is not populated locally
|
|
if (!shouldUseLocalVersion()) {
|
|
api(Libs.kiwixlib)
|
|
} else {
|
|
implementation("com.getkeepsafe.relinker:relinker:1.3.1")
|
|
api(fileTree(mapOf("include" to "*.aar", "dir" to "libs")))
|
|
}
|
|
|
|
// SquiDB
|
|
implementation(Libs.squidb)
|
|
|
|
// Document File
|
|
implementation(Libs.select_folder_document_file)
|
|
|
|
// Square
|
|
implementation(Libs.converter_simplexml) {
|
|
exclude(group = "xpp3", module = "xpp3")
|
|
exclude(group = "stax", module = "stax-api")
|
|
exclude(group = "stax", module = "stax")
|
|
}
|
|
|
|
// Leak canary
|
|
debugImplementation(Libs.leakcanary_android)
|
|
|
|
implementation(Libs.android_arch_lifecycle_extensions)
|
|
implementation(Libs.objectbox_kotlin)
|
|
implementation(Libs.objectbox_rxjava)
|
|
implementation(Libs.webkit)
|
|
testImplementation(Libs.kotlinx_coroutines_test)
|
|
implementation(Libs.kotlinx_coroutines_android)
|
|
}
|