Skip to content

Commit

Permalink
change from ksp to kapt
Browse files Browse the repository at this point in the history
  • Loading branch information
XilinJia committed Mar 27, 2024
1 parent e08d508 commit d3afb3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ plugins {
id('com.android.application')
id 'kotlin-android'
id 'kotlin-kapt'
id 'com.google.devtools.ksp'
// id 'com.google.devtools.ksp'
id('com.github.triplet.play') version '3.8.3' apply false
}

Expand Down Expand Up @@ -220,7 +220,7 @@ dependencies {
}
}

ksp "androidx.annotation:annotation:1.7.1"
kapt "androidx.annotation:annotation:1.7.1"

implementation "androidx.appcompat:appcompat:1.6.1"
implementation 'androidx.coordinatorlayout:coordinatorlayout:1.2.0'
Expand All @@ -247,7 +247,7 @@ dependencies {

implementation "com.github.bumptech.glide:glide:4.16.0"
implementation "com.github.bumptech.glide:okhttp3-integration:4.16.0@aar"
ksp "com.github.bumptech.glide:ksp:4.16.0"
kapt "com.github.bumptech.glide:ksp:4.16.0"

implementation "com.squareup.okhttp3:okhttp:4.12.0"
implementation "com.squareup.okhttp3:okhttp-urlconnection:4.12.0"
Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ buildscript {
}
}

plugins {
id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
}
//plugins {
// id 'com.google.devtools.ksp' version '1.9.22-1.0.17' apply false
//}

allprojects {
repositories {
Expand Down

0 comments on commit d3afb3e

Please sign in to comment.