build.gradle 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. namespace 'com.example.open_gopro_tutorial'
  7. compileSdk 33
  8. defaultConfig {
  9. applicationId "com.example.open_gopro_tutorial"
  10. minSdk 31
  11. targetSdk 33
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. vectorDrawables {
  16. useSupportLibrary true
  17. }
  18. }
  19. buildTypes {
  20. release {
  21. minifyEnabled false
  22. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  23. }
  24. }
  25. compileOptions {
  26. sourceCompatibility JavaVersion.VERSION_1_8
  27. targetCompatibility JavaVersion.VERSION_1_8
  28. }
  29. kotlinOptions {
  30. jvmTarget = '1.8'
  31. }
  32. buildFeatures {
  33. compose true
  34. }
  35. composeOptions {
  36. kotlinCompilerExtensionVersion '1.2.0'
  37. }
  38. packagingOptions {
  39. resources {
  40. excludes += '/META-INF/{AL2.0,LGPL2.1}'
  41. }
  42. }
  43. }
  44. dependencies {
  45. implementation 'androidx.core:core-ktx:1.7.0'
  46. implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
  47. implementation 'androidx.activity:activity-compose:1.3.1'
  48. implementation "androidx.compose.ui:ui:$compose_ui_version"
  49. implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
  50. implementation("androidx.compose.material3:material3:1.0.1")
  51. testImplementation 'junit:junit:4.13.2'
  52. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  53. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  54. androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
  55. debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
  56. debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"
  57. implementation "com.google.accompanist:accompanist-permissions:0.28.0"
  58. implementation "androidx.compose.material:material-icons-extended:1.3.1"
  59. implementation("io.ktor:ktor-client-core:2.2.3")
  60. implementation("io.ktor:ktor-client-cio:2.2.3")
  61. implementation 'com.jakewharton.timber:timber:5.0.1'
  62. implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
  63. implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.4.1")
  64. implementation "org.jetbrains.kotlin:kotlin-reflect:1.7.20"
  65. implementation("io.coil-kt:coil-compose:2.2.2")
  66. }