summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2023-04-22 15:17:32 +0100
committerTomasz Kramkowski <tomasz@kramkow.ski>2023-04-22 15:17:32 +0100
commit923ba48b7d7472aed96c6083d7a029945ad916fa (patch)
tree7eae2b1f42187a18d62f897b2c7f497fe7db2502
parent9c4d01ad6cb1f54511d68a77634343c4c601c1b6 (diff)
downloadpaste-android-923ba48b7d7472aed96c6083d7a029945ad916fa.tar.gz
paste-android-923ba48b7d7472aed96c6083d7a029945ad916fa.tar.xz
paste-android-923ba48b7d7472aed96c6083d7a029945ad916fa.zip
further trim build.gradleHEADmaster
-rw-r--r--build.gradle31
1 files changed, 10 insertions, 21 deletions
diff --git a/build.gradle b/build.gradle
index 50b67d5..f67ea50 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,18 +1,13 @@
-buildscript {
- ext {
- compose_ui_version = '1.4.2'
- }
-}
+buildscript { ext { compose_ui_version = "1.4.2" } }
plugins {
- id 'com.android.application' version '7.4.2'
- id 'org.jetbrains.kotlin.android' version '1.8.20'
+ id "com.android.application" version "7.4.2"
+ id "org.jetbrains.kotlin.android" version "1.8.20"
}
android {
- namespace 'ski.kramkow.paste'
+ namespace "ski.kramkow.paste"
compileSdk 33
-
defaultConfig {
applicationId "ski.kramkow.paste"
minSdk 21
@@ -20,22 +15,16 @@ android {
versionCode 1
versionName "1.0"
}
-
- buildFeatures {
- compose true
- }
- composeOptions {
- kotlinCompilerExtensionVersion '1.4.6'
- }
+ buildFeatures { compose true }
+ composeOptions { kotlinCompilerExtensionVersion "1.4.6" }
}
dependencies {
- implementation 'androidx.core:core-ktx:1.10.0'
- implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
- implementation 'androidx.activity:activity-compose:1.7.1'
+ implementation "androidx.core:core-ktx:1.10.0"
+ implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
+ implementation "androidx.activity:activity-compose:1.7.1"
implementation "androidx.compose.ui:ui:$compose_ui_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
- implementation 'androidx.compose.material:material:1.4.2'
+ implementation "androidx.compose.material:material:1.4.2"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
- debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
}