ReadYou/build.gradle

35 lines
988 B
Groovy
Raw Normal View History

2022-03-01 18:40:53 +01:00
buildscript {
ext {
2022-04-20 16:25:29 +02:00
compose = '1.2.0-alpha07'
accompanist = '0.24.6-alpha'
material3 = '1.0.0-alpha09'
lifecycle = '2.5.0-alpha06'
navigation = '2.5.0-alpha04'
paging = '3.1.1'
room = '2.5.0-alpha01'
datastore = '1.0.0'
work = '2.8.0-alpha02'
profileinstaller = '1.2.0-alpha02'
retrofit2 = '2.9.0'
coil = '2.0.0-rc03'
rome = '1.18.0'
2022-04-20 16:25:29 +02:00
readability4j = '1.0.8'
opmlParser = '2.2.0'
androidSVG = '1.4'
2022-03-01 18:40:53 +01:00
}
dependencies {
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.28-alpha'
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.5.0-alpha01"
}
}
plugins {
id 'com.android.application' version '7.1.1' apply false
id 'com.android.library' version '7.1.1' apply false
id 'org.jetbrains.kotlin.android' version '1.6.10' apply false
}
task clean(type: Delete) {
delete rootProject.buildDir
}