2020-12-31 11:28:34 -05:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
import java.io.ByteArrayOutputStream
|
|
|
|
import java.text.SimpleDateFormat
|
|
|
|
import java.util.Date
|
|
|
|
import java.util.TimeZone
|
|
|
|
|
|
|
|
plugins {
|
|
|
|
id("com.android.application")
|
|
|
|
id("com.mikepenz.aboutlibraries.plugin")
|
|
|
|
kotlin("android")
|
|
|
|
kotlin("plugin.serialization")
|
|
|
|
id("com.github.zellius.shortcut-helper")
|
|
|
|
}
|
|
|
|
|
2020-12-31 11:32:18 -05:00
|
|
|
if (gradle.startParameter.taskRequests.toString().contains("Standard")) {
|
|
|
|
apply(plugin = "com.google.gms.google-services")
|
|
|
|
}
|
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
shortcutHelper.setFilePath("./shortcuts.xml")
|
|
|
|
|
2021-06-01 09:55:03 -04:00
|
|
|
val SUPPORTED_ABIS = setOf("armeabi-v7a", "arm64-v8a", "x86")
|
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
android {
|
2021-07-28 15:08:04 -04:00
|
|
|
compileSdk = AndroidConfig.compileSdk
|
2020-12-31 11:28:34 -05:00
|
|
|
ndkVersion = AndroidConfig.ndk
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
applicationId = "eu.kanade.tachiyomi"
|
2021-07-28 15:08:04 -04:00
|
|
|
minSdk = AndroidConfig.minSdk
|
|
|
|
targetSdk = AndroidConfig.targetSdk
|
2021-12-17 09:57:37 -05:00
|
|
|
versionCode = 72
|
2021-10-04 15:55:06 -04:00
|
|
|
versionName = "0.12.3"
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
buildConfigField("String", "COMMIT_COUNT", "\"${getCommitCount()}\"")
|
|
|
|
buildConfigField("String", "COMMIT_SHA", "\"${getGitSha()}\"")
|
|
|
|
buildConfigField("String", "BUILD_TIME", "\"${getBuildTime()}\"")
|
|
|
|
buildConfigField("boolean", "INCLUDE_UPDATER", "false")
|
2021-10-09 10:28:43 -04:00
|
|
|
buildConfigField("boolean", "PREVIEW", "false")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-01-17 11:09:29 -05:00
|
|
|
// Please disable ACRA or use your own instance in forked versions of the project
|
|
|
|
buildConfigField("String", "ACRA_URI", "\"https://tachiyomi.kanade.eu/crash_report\"")
|
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
ndk {
|
2021-06-01 09:55:03 -04:00
|
|
|
abiFilters += SUPPORTED_ABIS
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
2021-11-07 09:20:13 -05:00
|
|
|
|
|
|
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
|
|
|
|
2021-06-01 09:55:03 -04:00
|
|
|
splits {
|
|
|
|
abi {
|
2021-08-06 15:38:16 -04:00
|
|
|
isEnable = true
|
2021-06-01 09:55:03 -04:00
|
|
|
reset()
|
|
|
|
include(*SUPPORTED_ABIS.toTypedArray())
|
|
|
|
isUniversalApk = true
|
|
|
|
}
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
named("debug") {
|
|
|
|
versionNameSuffix = "-${getCommitCount()}"
|
|
|
|
applicationIdSuffix = ".debug"
|
|
|
|
}
|
|
|
|
named("release") {
|
2021-05-22 14:47:40 -04:00
|
|
|
isShrinkResources = true
|
|
|
|
isMinifyEnabled = true
|
|
|
|
proguardFiles("proguard-android-optimize.txt", "proguard-rules.pro")
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
2021-10-09 10:28:43 -04:00
|
|
|
create("preview") {
|
|
|
|
initWith(getByName("release"))
|
|
|
|
buildConfigField("boolean", "PREVIEW", "true")
|
|
|
|
|
|
|
|
val debugType = getByName("debug")
|
|
|
|
signingConfig = debugType.signingConfig
|
|
|
|
versionNameSuffix = debugType.versionNameSuffix
|
|
|
|
applicationIdSuffix = debugType.applicationIdSuffix
|
|
|
|
}
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
|
|
|
|
2021-05-22 14:47:40 -04:00
|
|
|
sourceSets {
|
2021-10-09 10:28:43 -04:00
|
|
|
getByName("preview").res.srcDirs("src/debug/res")
|
2021-05-22 14:47:40 -04:00
|
|
|
}
|
|
|
|
|
2021-08-22 18:05:18 -04:00
|
|
|
flavorDimensions.add("default")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
create("standard") {
|
|
|
|
buildConfigField("boolean", "INCLUDE_UPDATER", "true")
|
|
|
|
dimension = "default"
|
|
|
|
}
|
|
|
|
create("dev") {
|
2021-08-22 18:05:18 -04:00
|
|
|
resourceConfigurations.addAll(listOf("en", "xxhdpi"))
|
2020-12-31 11:28:34 -05:00
|
|
|
dimension = "default"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
packagingOptions {
|
2021-08-22 18:05:18 -04:00
|
|
|
resources.excludes.addAll(listOf(
|
|
|
|
"META-INF/DEPENDENCIES",
|
|
|
|
"LICENSE.txt",
|
|
|
|
"META-INF/LICENSE",
|
|
|
|
"META-INF/LICENSE.txt",
|
2021-10-16 10:21:25 -04:00
|
|
|
"META-INF/README.md",
|
2021-08-22 18:05:18 -04:00
|
|
|
"META-INF/NOTICE",
|
|
|
|
"META-INF/*.kotlin_module",
|
2021-10-16 10:21:25 -04:00
|
|
|
"META-INF/*.version",
|
2021-08-22 18:05:18 -04:00
|
|
|
))
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
dependenciesInfo {
|
|
|
|
includeInApk = false
|
|
|
|
}
|
|
|
|
|
2021-06-01 09:55:03 -04:00
|
|
|
buildFeatures {
|
|
|
|
viewBinding = true
|
2021-11-07 09:20:13 -05:00
|
|
|
|
|
|
|
// Disable some unused things
|
|
|
|
aidl = false
|
|
|
|
renderScript = false
|
|
|
|
shaders = false
|
2021-06-01 09:55:03 -04:00
|
|
|
}
|
|
|
|
|
2021-07-28 15:08:04 -04:00
|
|
|
lint {
|
2020-12-31 11:28:34 -05:00
|
|
|
disable("MissingTranslation", "ExtraTranslation")
|
|
|
|
isAbortOnError = false
|
|
|
|
isCheckReleaseBuilds = false
|
|
|
|
}
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = JavaVersion.VERSION_1_8.toString()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2021-07-04 12:16:12 -04:00
|
|
|
implementation(kotlin("reflect", version = BuildPluginsVersion.KOTLIN))
|
|
|
|
|
2021-12-24 09:45:56 -05:00
|
|
|
val coroutinesVersion = "1.6.0"
|
2021-07-04 12:16:12 -04:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutinesVersion")
|
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
// Source models and interfaces from Tachiyomi 1.x
|
2021-05-24 22:17:09 -04:00
|
|
|
implementation("org.tachiyomi:source-api:1.1")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// AndroidX libraries
|
2021-12-15 21:57:10 -05:00
|
|
|
implementation("androidx.annotation:annotation:1.4.0-alpha01")
|
2021-11-28 14:24:43 -05:00
|
|
|
implementation("androidx.appcompat:appcompat:1.4.0")
|
2021-11-18 10:42:09 -05:00
|
|
|
implementation("androidx.biometric:biometric-ktx:1.2.0-alpha04")
|
2021-11-07 09:20:00 -05:00
|
|
|
implementation("androidx.browser:browser:1.4.0")
|
2021-11-28 14:24:43 -05:00
|
|
|
implementation("androidx.constraintlayout:constraintlayout:2.1.2")
|
2021-12-15 21:57:10 -05:00
|
|
|
implementation("androidx.coordinatorlayout:coordinatorlayout:1.2.0-rc01")
|
|
|
|
implementation("androidx.core:core-ktx:1.8.0-alpha02")
|
2021-10-01 18:28:02 -04:00
|
|
|
implementation("androidx.core:core-splashscreen:1.0.0-alpha02")
|
2021-09-20 14:33:35 -04:00
|
|
|
implementation("androidx.recyclerview:recyclerview:1.3.0-alpha01")
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01")
|
2021-09-20 14:33:35 -04:00
|
|
|
implementation("androidx.viewpager:viewpager:1.1.0-alpha01")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-10-28 22:33:12 -04:00
|
|
|
val lifecycleVersion = "2.4.0"
|
2021-09-20 14:33:35 -04:00
|
|
|
implementation("androidx.lifecycle:lifecycle-common:$lifecycleVersion")
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("androidx.lifecycle:lifecycle-process:$lifecycleVersion")
|
|
|
|
implementation("androidx.lifecycle:lifecycle-runtime-ktx:$lifecycleVersion")
|
|
|
|
|
|
|
|
// Job scheduling
|
2021-09-04 10:09:33 -04:00
|
|
|
implementation("androidx.work:work-runtime-ktx:2.6.0")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-08-07 10:50:50 -04:00
|
|
|
// RX
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("io.reactivex:rxandroid:1.2.1")
|
|
|
|
implementation("io.reactivex:rxjava:1.3.8")
|
|
|
|
implementation("com.jakewharton.rxrelay:rxrelay:1.2.0")
|
2021-09-04 10:38:12 -04:00
|
|
|
implementation("ru.beryukhov:flowreactivenetwork:1.0.4")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// Network client
|
2021-04-23 22:41:46 -04:00
|
|
|
val okhttpVersion = "4.9.1"
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("com.squareup.okhttp3:okhttp:$okhttpVersion")
|
|
|
|
implementation("com.squareup.okhttp3:logging-interceptor:$okhttpVersion")
|
|
|
|
implementation("com.squareup.okhttp3:okhttp-dnsoverhttps:$okhttpVersion")
|
2021-11-07 09:20:00 -05:00
|
|
|
implementation("com.squareup.okio:okio:3.0.0")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// TLS 1.3 support for Android < 10
|
2021-06-02 22:51:26 -04:00
|
|
|
implementation("org.conscrypt:conscrypt-android:2.5.2")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-08-07 10:50:50 -04:00
|
|
|
// Data serialization (JSON, protobuf)
|
2021-12-24 09:45:56 -05:00
|
|
|
val kotlinSerializationVersion = "1.3.2"
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:$kotlinSerializationVersion")
|
|
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:$kotlinSerializationVersion")
|
2021-09-06 11:54:00 -04:00
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
// JavaScript engine
|
2021-08-07 10:50:26 -04:00
|
|
|
implementation("com.squareup.duktape:duktape-android:1.4.0")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-08-07 10:50:50 -04:00
|
|
|
// HTML parser
|
2021-10-09 10:33:01 -04:00
|
|
|
implementation("org.jsoup:jsoup:1.14.3")
|
2021-08-07 10:50:50 -04:00
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
// Disk
|
|
|
|
implementation("com.jakewharton:disklrucache:2.0.2")
|
2021-04-16 22:27:00 -04:00
|
|
|
implementation("com.github.tachiyomiorg:unifile:17bec43")
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("com.github.junrar:junrar:7.4.0")
|
|
|
|
|
|
|
|
// Database
|
2021-12-15 21:57:10 -05:00
|
|
|
implementation("androidx.sqlite:sqlite-ktx:2.2.0")
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("com.github.inorichi.storio:storio-common:8be19de@aar")
|
|
|
|
implementation("com.github.inorichi.storio:storio-sqlite:8be19de@aar")
|
2021-07-04 12:16:12 -04:00
|
|
|
implementation("com.github.requery:sqlite-android:3.36.0")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// Preferences
|
2021-12-15 21:57:10 -05:00
|
|
|
implementation("androidx.preference:preference-ktx:1.2.0-rc01")
|
2021-05-27 08:50:18 -04:00
|
|
|
implementation("com.github.tfcporciuncula.flow-preferences:flow-preferences:1.4.0")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// Model View Presenter
|
|
|
|
val nucleusVersion = "3.0.0"
|
|
|
|
implementation("info.android15.nucleus:nucleus:$nucleusVersion")
|
|
|
|
implementation("info.android15.nucleus:nucleus-support-v7:$nucleusVersion")
|
|
|
|
|
|
|
|
// Dependency injection
|
|
|
|
implementation("com.github.inorichi.injekt:injekt-core:65b0440")
|
|
|
|
|
2021-08-07 10:50:50 -04:00
|
|
|
// Image loading
|
2021-10-09 10:33:01 -04:00
|
|
|
val coilVersion = "1.4.0"
|
2021-04-28 08:32:00 -04:00
|
|
|
implementation("io.coil-kt:coil:$coilVersion")
|
|
|
|
implementation("io.coil-kt:coil-gif:$coilVersion")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-05-25 13:42:48 -04:00
|
|
|
implementation("com.github.tachiyomiorg:subsampling-scale-image-view:846abe0") {
|
|
|
|
exclude(module = "image-decoder")
|
|
|
|
}
|
2021-07-07 18:11:20 -04:00
|
|
|
implementation("com.github.tachiyomiorg:image-decoder:7481a4a")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// Sort
|
|
|
|
implementation("com.github.gpanther:java-nat-sort:natural-comparator-1.1")
|
|
|
|
|
2021-08-07 10:50:50 -04:00
|
|
|
// UI libraries
|
2021-12-02 23:09:38 -05:00
|
|
|
implementation("com.google.android.material:material:1.6.0-alpha01")
|
2021-07-04 12:20:32 -04:00
|
|
|
implementation("com.github.dmytrodanylyk.android-process-button:library:1.0.4")
|
2021-10-18 12:39:41 -04:00
|
|
|
implementation("com.github.arkon.FlexibleAdapter:flexible-adapter:c8013533")
|
|
|
|
implementation("com.github.arkon.FlexibleAdapter:flexible-adapter-ui:c8013533")
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("com.nightlynexus.viewstatepageradapter:viewstatepageradapter:1.1.0")
|
|
|
|
implementation("com.github.chrisbanes:PhotoView:2.3.0")
|
2021-09-20 14:33:35 -04:00
|
|
|
implementation("com.github.tachiyomiorg:DirectionalViewPager:1.0.0") {
|
|
|
|
exclude(group = "androidx.viewpager", module = "viewpager")
|
|
|
|
}
|
2021-11-19 10:16:39 -05:00
|
|
|
implementation("dev.chrisbanes.insetter:insetter:0.6.1")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// Conductor
|
2021-11-19 14:06:11 -05:00
|
|
|
val conductorVersion = "3.1.1"
|
2021-07-03 12:50:10 -04:00
|
|
|
implementation("com.bluelinelabs:conductor:$conductorVersion")
|
|
|
|
implementation("com.bluelinelabs:conductor-viewpager:$conductorVersion")
|
|
|
|
implementation("com.github.tachiyomiorg:conductor-support-preference:$conductorVersion")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
|
|
|
// FlowBinding
|
2021-07-04 12:16:12 -04:00
|
|
|
val flowbindingVersion = "1.2.0"
|
2020-12-31 11:28:34 -05:00
|
|
|
implementation("io.github.reactivecircus.flowbinding:flowbinding-android:$flowbindingVersion")
|
|
|
|
implementation("io.github.reactivecircus.flowbinding:flowbinding-appcompat:$flowbindingVersion")
|
|
|
|
implementation("io.github.reactivecircus.flowbinding:flowbinding-recyclerview:$flowbindingVersion")
|
|
|
|
implementation("io.github.reactivecircus.flowbinding:flowbinding-swiperefreshlayout:$flowbindingVersion")
|
|
|
|
implementation("io.github.reactivecircus.flowbinding:flowbinding-viewpager:$flowbindingVersion")
|
|
|
|
|
2021-08-07 10:50:50 -04:00
|
|
|
// Logging
|
2021-10-07 22:12:55 -04:00
|
|
|
implementation("com.squareup.logcat:logcat:0.1")
|
2021-08-07 10:50:50 -04:00
|
|
|
|
|
|
|
// Crash reports/analytics
|
2021-12-31 13:07:37 -05:00
|
|
|
implementation("ch.acra:acra-http:5.8.4")
|
|
|
|
"standardImplementation"("com.google.firebase:firebase-analytics-ktx:20.0.2")
|
2021-08-07 10:50:50 -04:00
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
// Licenses
|
2021-08-07 11:32:44 -04:00
|
|
|
implementation("com.mikepenz:aboutlibraries-core:${BuildPluginsVersion.ABOUTLIB_PLUGIN}")
|
2020-12-31 11:28:34 -05:00
|
|
|
|
2021-09-25 14:31:52 -04:00
|
|
|
// Shizuku
|
2021-12-05 11:19:37 -05:00
|
|
|
val shizukuVersion = "12.1.0"
|
2021-09-25 14:31:52 -04:00
|
|
|
implementation("dev.rikka.shizuku:api:$shizukuVersion")
|
|
|
|
implementation("dev.rikka.shizuku:provider:$shizukuVersion")
|
|
|
|
|
2020-12-31 11:28:34 -05:00
|
|
|
// Tests
|
2021-03-12 09:05:16 -05:00
|
|
|
testImplementation("junit:junit:4.13.2")
|
2020-12-31 11:28:34 -05:00
|
|
|
testImplementation("org.assertj:assertj-core:3.16.1")
|
|
|
|
testImplementation("org.mockito:mockito-core:1.10.19")
|
|
|
|
|
|
|
|
val robolectricVersion = "3.1.4"
|
|
|
|
testImplementation("org.robolectric:robolectric:$robolectricVersion")
|
|
|
|
testImplementation("org.robolectric:shadows-play-services:$robolectricVersion")
|
|
|
|
|
|
|
|
// For detecting memory leaks; see https://square.github.io/leakcanary/
|
2021-04-18 12:55:17 -04:00
|
|
|
// debugImplementation("com.squareup.leakcanary:leakcanary-android:2.7")
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks {
|
|
|
|
// See https://kotlinlang.org/docs/reference/experimental.html#experimental-status-of-experimental-api(-markers)
|
|
|
|
withType<KotlinCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-Xopt-in=kotlin.Experimental",
|
|
|
|
"-Xopt-in=kotlin.RequiresOptIn",
|
|
|
|
"-Xuse-experimental=kotlin.ExperimentalStdlibApi",
|
|
|
|
"-Xuse-experimental=kotlinx.coroutines.FlowPreview",
|
|
|
|
"-Xuse-experimental=kotlinx.coroutines.ExperimentalCoroutinesApi",
|
2021-01-04 10:22:26 -05:00
|
|
|
"-Xuse-experimental=kotlinx.coroutines.InternalCoroutinesApi",
|
2021-04-28 08:32:00 -04:00
|
|
|
"-Xuse-experimental=kotlinx.serialization.ExperimentalSerializationApi",
|
|
|
|
"-Xuse-experimental=coil.annotation.ExperimentalCoilApi",
|
2020-12-31 11:28:34 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Duplicating Hebrew string assets due to some locale code issues on different devices
|
|
|
|
val copyHebrewStrings = task("copyHebrewStrings", type = Copy::class) {
|
|
|
|
from("./src/main/res/values-he")
|
|
|
|
into("./src/main/res/values-iw")
|
|
|
|
include("**/*")
|
|
|
|
}
|
|
|
|
|
|
|
|
preBuild {
|
|
|
|
dependsOn(formatKotlin, copyHebrewStrings)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-31 11:32:18 -05:00
|
|
|
|
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath(kotlin("gradle-plugin", version = BuildPluginsVersion.KOTLIN))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Git is needed in your system PATH for these commands to work.
|
|
|
|
// If it's not installed, you can return a random value as a workaround
|
|
|
|
fun getCommitCount(): String {
|
|
|
|
return runCommand("git rev-list --count HEAD")
|
|
|
|
// return "1"
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getGitSha(): String {
|
|
|
|
return runCommand("git rev-parse --short HEAD")
|
|
|
|
// return "1"
|
|
|
|
}
|
|
|
|
|
|
|
|
fun getBuildTime(): String {
|
|
|
|
val df = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'")
|
|
|
|
df.timeZone = TimeZone.getTimeZone("UTC")
|
|
|
|
return df.format(Date())
|
2020-12-31 11:28:34 -05:00
|
|
|
}
|
2021-01-17 11:09:29 -05:00
|
|
|
|
|
|
|
fun runCommand(command: String): String {
|
|
|
|
val byteOut = ByteArrayOutputStream()
|
|
|
|
project.exec {
|
|
|
|
commandLine = command.split(" ")
|
|
|
|
standardOutput = byteOut
|
|
|
|
}
|
|
|
|
return String(byteOut.toByteArray()).trim()
|
|
|
|
}
|