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

View File

@@ -1,15 +0,0 @@
plugins {
id 'signal-sample-app'
}
android {
namespace 'org.signal.pagingtest'
defaultConfig {
applicationId "org.signal.pagingtest"
}
}
dependencies {
implementation project(':paging')
}

View File

@@ -0,0 +1,15 @@
plugins {
id("signal-sample-app")
}
android {
namespace = "org.signal.pagingtest"
defaultConfig {
applicationId = "org.signal.pagingtest"
}
}
dependencies {
implementation(project(":paging"))
}

View File

@@ -1,11 +0,0 @@
plugins {
id 'signal-library'
}
android {
namespace 'org.signal.paging'
}
dependencies {
implementation project(':core-util')
}

View File

@@ -0,0 +1,11 @@
plugins {
id("signal-library")
}
android {
namespace = "org.signal.paging"
}
dependencies {
implementation(project(":core-util"))
}