2021학년도 1학기 기업연계프로젝트(컴퓨터소프트웨어공학과) 13조 버뮤니티 팀 팀장 : 김태원 팀원 : 고병채 신현규 박성민 정송희 조예리
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
2.3 KiB

  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdkVersion 30
  6. buildToolsVersion "30.0.3"
  7. defaultConfig {
  8. applicationId "com.example.mave"
  9. minSdkVersion 23
  10. targetSdkVersion 30
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. }
  26. dependencies {
  27. implementation 'androidx.appcompat:appcompat:1.3.0'
  28. implementation 'com.google.android.material:material:1.2.0-alpha02'
  29. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  30. implementation 'com.airbnb.android:lottie:3.7.0'
  31. implementation 'com.ismaeldivita.chipnavigation:chip-navigation-bar:1.3.4'
  32. implementation "androidx.core:core-ktx:1.3.2"
  33. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  34. implementation 'com.makeramen:roundedimageview:2.3.0'
  35. implementation 'com.google.android.material:material:1.0.0-rc01'
  36. implementation 'androidx.appcompat:appcompat:1.3.0-rc01'
  37. implementation 'androidx.recyclerview:recyclerview:1.2.0'
  38. implementation 'com.github.bumptech.glide:glide:4.12.0'
  39. implementation "androidx.core:core:1.0.2"
  40. implementation 'com.google.firebase:firebase-database:19.2.1'
  41. implementation 'com.google.firebase:firebase-storage:19.1.1'
  42. implementation 'androidx.recyclerview:recyclerview:1.2.0'
  43. testImplementation 'junit:junit:4.13.2'
  44. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  45. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  46. implementation 'com.squareup.retrofit2:retrofit:2.6.4'
  47. implementation 'com.squareup.retrofit2:converter-gson:2.6.4'
  48. implementation 'com.squareup.retrofit2:converter-scalars:2.6.4'
  49. implementation 'com.royrodriguez:transitionbutton:0.2.0'
  50. implementation platform('com.google.firebase:firebase-bom:28.0.1')
  51. implementation 'com.google.firebase:firebase-analytics'
  52. implementation 'com.squareup.picasso:picasso:2.71828'
  53. }
  54. apply plugin: 'com.android.application'
  55. apply plugin: 'com.google.gms.google-services'