mirror of
https://github.com/YTVanced/VancedManager
synced 2024-11-16 07:45:06 +00:00
buildscript cleanup
This commit is contained in:
parent
5ef967f097
commit
465d9f4fdb
3 changed files with 4 additions and 31 deletions
|
@ -43,12 +43,13 @@ android {
|
||||||
|
|
||||||
buildFeatures {
|
buildFeatures {
|
||||||
viewBinding = true
|
viewBinding = true
|
||||||
//compose = true
|
|
||||||
}
|
}
|
||||||
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
exclude("META-INF/DEPENDENCIES")
|
resources {
|
||||||
exclude("META-INF/*.kotlin_module")
|
excludes += "META-INF/DEPENDENCIES"
|
||||||
|
excludes += "META-INF/*.kotlin_module"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// To inline the bytecode built with JVM target 1.8 into
|
// To inline the bytecode built with JVM target 1.8 into
|
||||||
|
@ -62,7 +63,6 @@ android {
|
||||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||||
kotlinOptions {
|
kotlinOptions {
|
||||||
jvmTarget = "1.8"
|
jvmTarget = "1.8"
|
||||||
//useIR = true
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -86,7 +86,6 @@ val languages: String get() {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
|
|
||||||
//val composeVersion = "1.0.0-alpha12"
|
|
||||||
implementation(project(":core-presentation"))
|
implementation(project(":core-presentation"))
|
||||||
implementation(project(":core-ui"))
|
implementation(project(":core-ui"))
|
||||||
|
|
||||||
|
@ -111,18 +110,6 @@ dependencies {
|
||||||
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.1.0")
|
||||||
implementation("androidx.work:work-runtime-ktx:2.7.0-rc01")
|
implementation("androidx.work:work-runtime-ktx:2.7.0-rc01")
|
||||||
|
|
||||||
|
|
||||||
// Compose
|
|
||||||
// implementation("androidx.compose.ui:ui:$composeVersion")
|
|
||||||
// implementation("androidx.compose.ui:ui-tooling:$composeVersion")
|
|
||||||
// implementation("androidx.compose.foundation:foundation:$composeVersion")
|
|
||||||
// implementation("androidx.constraintlayout:constraintlayout-compose:1.0.0-alpha02")
|
|
||||||
// implementation("androidx.compose.material:material:$composeVersion")
|
|
||||||
// implementation("androidx.compose.material:material-icons-core:$composeVersion")
|
|
||||||
// implementation("androidx.compose.material:material-icons-extended:$composeVersion")
|
|
||||||
// implementation("androidx.compose.runtime:runtime-livedata:$composeVersion")
|
|
||||||
|
|
||||||
// Appearance
|
|
||||||
implementation("com.github.madrapps:pikolo:2.0.1")
|
implementation("com.github.madrapps:pikolo:2.0.1")
|
||||||
implementation("com.google.android.material:material:1.4.0")
|
implementation("com.google.android.material:material:1.4.0")
|
||||||
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
plugins {
|
|
||||||
`kotlin-dsl`
|
|
||||||
}
|
|
||||||
|
|
||||||
repositories {
|
|
||||||
google()
|
|
||||||
jcenter()
|
|
||||||
maven(url = "https://jitpack.io")
|
|
||||||
}
|
|
|
@ -1,5 +0,0 @@
|
||||||
object Config {
|
|
||||||
|
|
||||||
const val kotlinVersion = "1.4.21"
|
|
||||||
|
|
||||||
}
|
|
Loading…
Reference in a new issue