chore(build): reorder DSL declarations

This commit is contained in:
Harsh Shandilya 2023-04-19 12:29:27 +05:30
parent 1d32ec810f
commit bf104a1d85
No known key found for this signature in database
5 changed files with 28 additions and 26 deletions

View file

@ -17,13 +17,6 @@ plugins {
alias(libs.plugins.whetstone)
}
whetstone {
addOns {
compose.set(true)
workManager.set(true)
}
}
android {
namespace = "dev.msfjarvis.claw.android"
defaultConfig { applicationId = "dev.msfjarvis.claw.android" }
@ -43,6 +36,13 @@ android {
}
}
whetstone {
addOns {
compose.set(true)
workManager.set(true)
}
}
dependencies {
implementation(platform(libs.androidx.compose.bom))
implementation(platform(libs.okhttp.bom))