build.gradle.kts 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
  2. import java.io.ByteArrayOutputStream
  3. import java.text.SimpleDateFormat
  4. import java.util.Date
  5. import java.util.TimeZone
  6. plugins {
  7. id("com.android.application")
  8. id("com.mikepenz.aboutlibraries.plugin")
  9. kotlin("android")
  10. kotlin("kapt")
  11. kotlin("plugin.parcelize")
  12. kotlin("plugin.serialization")
  13. id("com.github.zellius.shortcut-helper")
  14. }
  15. if (gradle.startParameter.taskRequests.toString().contains("Standard")) {
  16. apply(plugin = "com.google.gms.google-services")
  17. }
  18. shortcutHelper.setFilePath("./shortcuts.xml")
  19. fun runCommand(command: String): String {
  20. val byteOut = ByteArrayOutputStream()
  21. project.exec {
  22. commandLine = command.split(" ")
  23. standardOutput = byteOut
  24. }
  25. return String(byteOut.toByteArray()).trim()
  26. }
  27. android {
  28. compileSdkVersion(AndroidConfig.compileSdk)
  29. buildToolsVersion(AndroidConfig.buildTools)
  30. ndkVersion = AndroidConfig.ndk
  31. defaultConfig {
  32. applicationId = "eu.kanade.tachiyomi"
  33. minSdkVersion(AndroidConfig.minSdk)
  34. targetSdkVersion(AndroidConfig.targetSdk)
  35. testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
  36. versionCode = 54
  37. versionName = "0.10.7"
  38. buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
  39. buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
  40. buildConfigField("String", "BUILD_TIME", "\"${getBuildTime()}\"")
  41. buildConfigField("boolean", "INCLUDE_UPDATER", "false")
  42. multiDexEnabled = true
  43. ndk {
  44. abiFilters += setOf("armeabi-v7a", "arm64-v8a", "x86")
  45. }
  46. }
  47. buildFeatures {
  48. viewBinding = true
  49. }
  50. buildTypes {
  51. named("debug") {
  52. versionNameSuffix = "-${getCommitCount()}"
  53. applicationIdSuffix = ".debug"
  54. }
  55. named("release") {
  56. /*named("postprocessing") {
  57. postprocessing {
  58. isObfuscate = false
  59. isOptimizeCode = true
  60. isRemoveUnusedCode = false
  61. isRemoveUnusedResources = true
  62. }
  63. setProguardFiles(listOf(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"))
  64. }*/
  65. }
  66. }
  67. flavorDimensions("default")
  68. productFlavors {
  69. create("standard") {
  70. buildConfigField("boolean", "INCLUDE_UPDATER", "true")
  71. dimension = "default"
  72. }
  73. create("fdroid") {
  74. dimension = "default"
  75. }
  76. create("dev") {
  77. resConfigs("en", "xxhdpi")
  78. dimension = "default"
  79. }
  80. }
  81. packagingOptions {
  82. exclude("META-INF/DEPENDENCIES")
  83. exclude("LICENSE.txt")
  84. exclude("META-INF/LICENSE")
  85. exclude("META-INF/LICENSE.txt")
  86. exclude("META-INF/NOTICE")
  87. }
  88. dependenciesInfo {
  89. includeInApk = false
  90. }
  91. lintOptions {
  92. disable("MissingTranslation", "ExtraTranslation")
  93. isAbortOnError = false
  94. isCheckReleaseBuilds = false
  95. }
  96. compileOptions {
  97. sourceCompatibility = JavaVersion.VERSION_1_8
  98. targetCompatibility = JavaVersion.VERSION_1_8
  99. }
  100. kotlinOptions {
  101. jvmTarget = JavaVersion.VERSION_1_8.toString()
  102. }
  103. }
  104. dependencies {
  105. // Source models and interfaces from Tachiyomi 1.x
  106. implementation("tachiyomi.sourceapi:source-api:1.1")
  107. // AndroidX libraries
  108. implementation("androidx.annotation:annotation:1.2.0-alpha01")
  109. implementation("androidx.appcompat:appcompat:1.3.0-alpha02")
  110. implementation("androidx.biometric:biometric-ktx:1.2.0-alpha01")
  111. implementation("androidx.browser:browser:1.3.0")
  112. implementation("androidx.cardview:cardview:1.0.0")
  113. implementation("androidx.constraintlayout:constraintlayout:2.1.0-alpha2")
  114. implementation("androidx.coordinatorlayout:coordinatorlayout:1.1.0")
  115. implementation("androidx.core:core-ktx:1.5.0-alpha05")
  116. implementation("androidx.multidex:multidex:2.0.1")
  117. implementation("androidx.preference:preference-ktx:1.1.1")
  118. implementation("androidx.recyclerview:recyclerview:1.2.0-beta01")
  119. implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01")
  120. val lifecycleVersion = "2.3.0-rc01"
  121. implementation("androidx.lifecycle:lifecycle-common-java8:$lifecycleVersion")
  122. implementation("androidx.lifecycle:lifecycle-process:$lifecycleVersion")
  123. implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
  124. // Job scheduling
  125. implementation("androidx.work:work-runtime-ktx:2.5.0-beta02")
  126. // UI library
  127. implementation("com.google.android.material:material:1.3.0-beta01")
  128. "standardImplementation"("com.google.firebase:firebase-core:18.0.0")
  129. // ReactiveX
  130. implementation("io.reactivex:rxandroid:1.2.1")
  131. implementation("io.reactivex:rxjava:1.3.8")
  132. implementation("com.jakewharton.rxrelay:rxrelay:1.2.0")
  133. implementation("com.github.pwittchen:reactivenetwork:0.13.0")
  134. // Network client
  135. val okhttpVersion = "4.10.0-RC1"
  136. implementation("com.squareup.okhttp3:okhttp:$okhttpVersion")
  137. implementation("com.squareup.okhttp3:logging-interceptor:$okhttpVersion")
  138. implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:$okhttpVersion")
  139. implementation("com.squareup.okio:okio:2.9.0")
  140. // TLS 1.3 support for Android < 10
  141. implementation("org.conscrypt:conscrypt-android:2.5.1")
  142. // JSON
  143. val kotlinSerializationVersion = "1.0.1"
  144. implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinSerializationVersion")
  145. implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:$kotlinSerializationVersion")
  146. implementation("com.google.code.gson:gson:2.8.6")
  147. implementation("com.github.salomonbrys.kotson:kotson:2.5.0")
  148. // JavaScript engine
  149. implementation("com.squareup.duktape:duktape-android:1.3.0")
  150. // Disk
  151. implementation("com.jakewharton:disklrucache:2.0.2")
  152. implementation("com.github.inorichi:unifile:e9ee588")
  153. implementation("com.github.junrar:junrar:7.4.0")
  154. // HTML parser
  155. implementation("org.jsoup:jsoup:1.13.1")
  156. // Database
  157. implementation("androidx.sqlite:sqlite-ktx:2.1.0")
  158. implementation("com.github.inorichi.storio:storio-common:8be19de@aar")
  159. implementation("com.github.inorichi.storio:storio-sqlite:8be19de@aar")
  160. implementation("io.requery:sqlite-android:3.33.0")
  161. // Preferences
  162. implementation("com.github.tfcporciuncula.flow-preferences:flow-preferences:1.3.3")
  163. // Model View Presenter
  164. val nucleusVersion = "3.0.0"
  165. implementation("info.android15.nucleus:nucleus:$nucleusVersion")
  166. implementation("info.android15.nucleus:nucleus-support-v7:$nucleusVersion")
  167. // Dependency injection
  168. implementation("com.github.inorichi.injekt:injekt-core:65b0440")
  169. // Image library
  170. val glideVersion = "4.11.0"
  171. implementation("com.github.bumptech.glide:glide:$glideVersion")
  172. implementation("com.github.bumptech.glide:okhttp3-integration:$glideVersion")
  173. kapt("com.github.bumptech.glide:compiler:$glideVersion")
  174. implementation("com.github.tachiyomiorg:subsampling-scale-image-view:ea1e51b")
  175. // Logging
  176. implementation("com.jakewharton.timber:timber:4.7.1")
  177. // Crash reports
  178. implementation("ch.acra:acra-http:5.7.0")
  179. // Sort
  180. implementation("com.github.gpanther:java-nat-sort:natural-comparator-1.1")
  181. // UI
  182. implementation("com.dmitrymalkovich.android:material-design-dimens:1.4")
  183. implementation("com.github.dmytrodanylyk.android-process-button:library:1.0.4")
  184. implementation("eu.davidea:flexible-adapter:5.1.0")
  185. implementation("eu.davidea:flexible-adapter-ui:1.0.0")
  186. implementation("com.nightlynexus.viewstatepageradapter:viewstatepageradapter:1.1.0")
  187. implementation("com.github.chrisbanes:PhotoView:2.3.0")
  188. implementation("com.github.tachiyomiorg:DirectionalViewPager:7d0617d")
  189. // 3.2.0+ introduces weird UI blinking or cut off issues on some devices
  190. val materialDialogsVersion = "3.1.1"
  191. implementation("com.afollestad.material-dialogs:core:$materialDialogsVersion")
  192. implementation("com.afollestad.material-dialogs:input:$materialDialogsVersion")
  193. implementation("com.afollestad.material-dialogs:datetime:$materialDialogsVersion")
  194. // Conductor
  195. implementation("com.bluelinelabs:conductor:2.1.5")
  196. implementation("com.bluelinelabs:conductor-support:2.1.5") {
  197. exclude(group = "com.android.support")
  198. }
  199. implementation("com.github.tachiyomiorg:conductor-support-preference:1.1.1")
  200. // FlowBinding
  201. val flowbindingVersion = "0.12.0"
  202. implementation("io.github.reactivecircus.flowbinding:flowbinding-android:$flowbindingVersion")
  203. implementation("io.github.reactivecircus.flowbinding:flowbinding-appcompat:$flowbindingVersion")
  204. implementation("io.github.reactivecircus.flowbinding:flowbinding-recyclerview:$flowbindingVersion")
  205. implementation("io.github.reactivecircus.flowbinding:flowbinding-swiperefreshlayout:$flowbindingVersion")
  206. implementation("io.github.reactivecircus.flowbinding:flowbinding-viewpager:$flowbindingVersion")
  207. // Licenses
  208. implementation("com.mikepenz:aboutlibraries:${BuildPluginsVersion.ABOUTLIB_PLUGIN}")
  209. // Tests
  210. testImplementation("junit:junit:4.13")
  211. testImplementation("org.assertj:assertj-core:3.16.1")
  212. testImplementation("org.mockito:mockito-core:1.10.19")
  213. val robolectricVersion = "3.1.4"
  214. testImplementation("org.robolectric:robolectric:$robolectricVersion")
  215. testImplementation("org.robolectric:shadows-multidex:$robolectricVersion")
  216. testImplementation("org.robolectric:shadows-play-services:$robolectricVersion")
  217. implementation(kotlin("reflect", version = BuildPluginsVersion.KOTLIN))
  218. val coroutinesVersion = "1.4.2"
  219. implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
  220. implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
  221. // For detecting memory leaks; see https://square.github.io/leakcanary/
  222. // debugImplementation("com.squareup.leakcanary:leakcanary-android:2.4")
  223. }
  224. tasks {
  225. // See https://kotlinlang.org/docs/reference/experimental.html#experimental-status-of-experimental-api(-markers)
  226. withType<KotlinCompile> {
  227. kotlinOptions.freeCompilerArgs += listOf(
  228. "-Xopt-in=kotlin.Experimental",
  229. "-Xopt-in=kotlin.RequiresOptIn",
  230. "-Xuse-experimental=kotlin.ExperimentalStdlibApi",
  231. "-Xuse-experimental=kotlinx.coroutines.FlowPreview",
  232. "-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
  233. "-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi",
  234. "-Xuse-experimental=kotlinx.serialization.ExperimentalSerializationApi"
  235. )
  236. }
  237. // Duplicating Hebrew string assets due to some locale code issues on different devices
  238. val copyHebrewStrings = task("copyHebrewStrings", type = Copy::class) {
  239. from("./src/main/res/values-he")
  240. into("./src/main/res/values-iw")
  241. include("**/*")
  242. }
  243. preBuild {
  244. dependsOn(formatKotlin, copyHebrewStrings)
  245. }
  246. }
  247. buildscript {
  248. repositories {
  249. mavenCentral()
  250. }
  251. dependencies {
  252. classpath(kotlin("gradle-plugin", version = BuildPluginsVersion.KOTLIN))
  253. }
  254. }
  255. repositories {
  256. mavenCentral()
  257. jcenter()
  258. }
  259. // Git is needed in your system PATH for these commands to work.
  260. // If it's not installed, you can return a random value as a workaround
  261. fun getCommitCount(): String {
  262. return runCommand("git rev-list --count HEAD")
  263. // return "1"
  264. }
  265. fun getGitSha(): String {
  266. return runCommand("git rev-parse --short HEAD")
  267. // return "1"
  268. }
  269. fun getBuildTime(): String {
  270. val df = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'")
  271. df.timeZone = TimeZone.getTimeZone("UTC")
  272. return df.format(Date())
  273. }