Tachiyomi-Extensions/common.gradle

85 lines
2.3 KiB
Groovy
Raw Normal View History

2020-04-25 03:16:48 +00:00
apply plugin: 'org.jmailen.kotlinter'
2017-01-21 16:55:27 +00:00
android {
2020-06-28 23:32:57 +00:00
compileSdkVersion AndroidConfig.compileSdk
buildToolsVersion AndroidConfig.buildTools
2017-01-21 16:55:27 +00:00
buildTypes {
release {
minifyEnabled false
}
}
2017-02-25 15:51:30 +00:00
sourceSets {
main {
manifest.srcFile "$rootDir/AndroidManifest.xml"
java.srcDirs = ['src']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ["$rootDir/res"]
assets.srcDirs = ['assets']
}
release {
res.srcDirs = ['res']
manifest.srcFile "AndroidManifest.xml"
2017-02-25 15:51:30 +00:00
}
debug {
res.srcDirs = ['res']
manifest.srcFile "AndroidManifest.xml"
2017-02-25 15:51:30 +00:00
}
2017-01-21 16:55:27 +00:00
}
defaultConfig {
2020-06-28 23:32:57 +00:00
minSdkVersion AndroidConfig.minSdk
targetSdkVersion AndroidConfig.targetSdk
2017-01-21 16:55:27 +00:00
applicationIdSuffix pkgNameSuffix
versionCode extVersionCode
versionName "$libVersion.$extVersionCode"
2017-02-07 16:01:04 +00:00
setProperty("archivesBaseName", "tachiyomi-$pkgNameSuffix-v$versionName")
2017-01-21 16:55:27 +00:00
manifestPlaceholders = [
appName : "Tachiyomi: $extName",
2017-01-21 16:55:27 +00:00
extClass: extClass,
nsfw: project.ext.properties.getOrDefault("containsNsfw", false) ? 1 : 0,
2017-01-21 16:55:27 +00:00
]
}
dependenciesInfo {
includeInApk = false
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = JavaVersion.VERSION_1_8.toString()
}
2017-01-21 16:55:27 +00:00
}
repositories {
mavenCentral()
}
dependencies {
compileOnly project(":annotations")
// Lib 1.2, but using specific commit so we don't need to bump up the version
2020-06-06 17:02:53 +00:00
compileOnly "com.github.tachiyomiorg:extensions-lib:a596412"
// These are provided by the app itself
compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
compileOnly 'com.github.inorichi.injekt:injekt-core:65b0440'
compileOnly 'com.squareup.okhttp3:okhttp:3.10.0'
compileOnly 'io.reactivex:rxjava:1.3.6'
compileOnly 'org.jsoup:jsoup:1.10.2'
compileOnly 'com.google.code.gson:gson:2.8.2'
compileOnly 'com.github.salomonbrys.kotson:kotson:2.5.0'
compileOnly project(':duktape-stub')
2017-01-21 16:55:27 +00:00
}
2020-04-25 03:16:48 +00:00
preBuild.dependsOn(lintKotlin)
lintKotlin.dependsOn(formatKotlin)