Converted all minor modules to .gradle.kts.

This commit is contained in:
Greyson Parrelli
2023-11-26 12:18:03 -05:00
committed by Cody Henthorne
parent d77744c562
commit 766733617e
36 changed files with 312 additions and 311 deletions
-15
View File
@@ -1,15 +0,0 @@
plugins {
id 'signal-library'
id 'kotlin-kapt'
}
android {
namespace 'org.signal.glide'
}
dependencies {
implementation libs.glide.glide
kapt libs.glide.compiler
implementation project(':glide-webp')
}
+15
View File
@@ -0,0 +1,15 @@
plugins {
id("signal-library")
id("kotlin-kapt")
}
android {
namespace = "org.signal.glide"
}
dependencies {
implementation(libs.glide.glide)
kapt(libs.glide.compiler)
implementation(project(":glide-webp"))
}