Migrate to ksp and fixed some deprecations

This commit is contained in:
Prathamesh More 2023-03-06 13:53:54 +05:30
parent 4236a134ad
commit 054c09d999
73 changed files with 575 additions and 260 deletions

View file

@ -2,12 +2,12 @@
buildscript {
ext {
lifecycle_version='2.5.1'
lifecycle_version = '2.5.1'
navigation_version = '2.5.3'
mdc_version = '1.9.0-alpha02'
preference_version = '1.2.0'
appcompat_version = '1.6.1'
core_version='1.9.0'
core_version = '1.9.0'
}
repositories {
@ -21,7 +21,8 @@ buildscript {
}
}
plugins {
id "com.github.ben-manes.versions" version "0.42.0"
id "com.github.ben-manes.versions" version "0.42.0" apply false
id 'com.google.devtools.ksp' version '1.8.10-1.0.9' apply false
}
tasks.register('clean', Delete) {