mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 21:15:48 +00:00
Converted all minor modules to .gradle.kts.
This commit is contained in:
committed by
Cody Henthorne
parent
d77744c562
commit
766733617e
@@ -1,18 +0,0 @@
|
||||
plugins {
|
||||
id 'signal-sample-app'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'org.signal.spinnertest'
|
||||
|
||||
defaultConfig {
|
||||
applicationId "org.signal.spinnertest"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':spinner')
|
||||
|
||||
implementation libs.androidx.sqlite
|
||||
implementation libs.signal.android.database.sqlcipher
|
||||
}
|
||||
18
spinner/app/build.gradle.kts
Normal file
18
spinner/app/build.gradle.kts
Normal file
@@ -0,0 +1,18 @@
|
||||
plugins {
|
||||
id("signal-sample-app")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "org.signal.spinnertest"
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "org.signal.spinnertest"
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":spinner"))
|
||||
|
||||
implementation(libs.androidx.sqlite)
|
||||
implementation(libs.signal.android.database.sqlcipher)
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
plugins {
|
||||
id 'signal-library'
|
||||
}
|
||||
|
||||
android {
|
||||
namespace 'org.signal.spinner'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation project(':core-util')
|
||||
|
||||
implementation libs.jknack.handlebars
|
||||
implementation libs.nanohttpd.webserver
|
||||
implementation libs.nanohttpd.websocket
|
||||
implementation libs.androidx.sqlite
|
||||
|
||||
testImplementation testLibs.junit.junit
|
||||
}
|
||||
18
spinner/lib/build.gradle.kts
Normal file
18
spinner/lib/build.gradle.kts
Normal file
@@ -0,0 +1,18 @@
|
||||
plugins {
|
||||
id("signal-library")
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "org.signal.spinner"
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(project(":core-util"))
|
||||
|
||||
implementation(libs.jknack.handlebars)
|
||||
implementation(libs.nanohttpd.webserver)
|
||||
implementation(libs.nanohttpd.websocket)
|
||||
implementation(libs.androidx.sqlite)
|
||||
|
||||
testImplementation(testLibs.junit.junit)
|
||||
}
|
||||
Reference in New Issue
Block a user