build.gradle 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. plugins {
  2. id 'com.android.application'
  3. id 'org.jetbrains.kotlin.android'
  4. }
  5. android {
  6. namespace 'com.example.myapp.cryptoportfolioapp'
  7. compileSdk 33
  8. defaultConfig {
  9. applicationId "com.example.myapp.cryptoportfolioapp"
  10. minSdk 24
  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.material:material:1.2.0'
  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 "androidx.navigation:navigation-compose:2.5.3"
  58. implementation "com.squareup.retrofit2:retrofit:2.9.0"
  59. implementation "com.squareup.retrofit2:converter-gson:2.9.0"
  60. }