mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 13:08:46 +00:00
Converted all minor modules to .gradle.kts.
This commit is contained in:
committed by
Cody Henthorne
parent
d77744c562
commit
766733617e
@@ -1,15 +0,0 @@
|
||||
plugins {
|
||||
id 'signal-sample-app'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'org.signal.pagingtest'
|
||||
|
||||
defaultConfig {
|
||||
applicationId "org.signal.pagingtest"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':paging')
|
||||
}
|
||||
15
paging/app/build.gradle.kts
Normal file
15
paging/app/build.gradle.kts
Normal file
@@ -0,0 +1,15 @@
|
||||
plugins {
|
||||
id("signal-sample-app")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "org.signal.pagingtest"
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "org.signal.pagingtest"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":paging"))
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
plugins {
|
||||
id 'signal-library'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'org.signal.paging'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':core-util')
|
||||
}
|
||||
11
paging/lib/build.gradle.kts
Normal file
11
paging/lib/build.gradle.kts
Normal file
@@ -0,0 +1,11 @@
|
||||
plugins {
|
||||
id("signal-library")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "org.signal.paging"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":core-util"))
|
||||
}
|
||||
Reference in New Issue
Block a user