build.gradle 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.2"
  5. defaultConfig {
  6. applicationId "com.androiddev.project.ili.wishurgift"
  7. minSdkVersion 21
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. compileOptions {
  20. sourceCompatibility = 1.8
  21. targetCompatibility = 1.8
  22. }
  23. }
  24. dependencies {
  25. implementation fileTree(dir: 'libs', include: ['*.jar'])
  26. implementation 'androidx.appcompat:appcompat:1.0.2'
  27. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  28. implementation 'androidx.cardview:cardview:1.0.0'
  29. implementation 'com.android.support.constraint:constraint-layout:1.1.3'
  30. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  32. implementation 'com.google.android.material:material:1.1.0'
  33. implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
  34. testImplementation 'junit:junit:4.12'
  35. androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
  36. implementation 'com.android.volley:volley:1.1.0'
  37. implementation 'com.google.code.gson:gson:2.8.0'
  38. implementation 'com.koushikdutta.ion:ion:2.1.7'
  39. implementation 'com.github.dmytrodanylyk.circular-progress-button:library:1.1.3'
  40. implementation 'com.android.support:design:29.0.2'
  41. //animated button for login
  42. implementation 'br.com.simplepass:loading-button-android:1.14.0'
  43. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  44. implementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'
  45. implementation 'de.hdodenhof:circleimageview:3.1.0'
  46. implementation 'com.github.bumptech.glide:glide:4.10.0'
  47. //Add Google Play services
  48. implementation 'com.google.android.gms:play-services-auth:17.0.0'
  49. // Validator
  50. implementation 'com.mobsandgeeks:android-saripaar:2.0.3'
  51. }