build.gradle 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 30
  6. buildToolsVersion "30.0.3"
  7. defaultConfig {
  8. applicationId "com.izouma.booster"
  9. minSdk 23
  10. targetSdk 30
  11. versionCode 6
  12. versionName "1.0"
  13. ndk.abiFilters 'armeabi-v7a','arm64-v8a'
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. viewBinding {
  27. enabled = true
  28. }
  29. buildFeatures {
  30. viewBinding true
  31. }
  32. }
  33. dependencies {
  34. implementation fileTree(include: ['*.jar'], dir: 'libs')
  35. implementation 'androidx.appcompat:appcompat:1.3.0'
  36. implementation 'com.google.android.material:material:1.3.0'
  37. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  38. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  39. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
  40. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
  41. implementation 'androidx.recyclerview:recyclerview:1.2.1'
  42. implementation 'androidx.viewpager2:viewpager2:1.0.0'
  43. implementation 'com.google.android.flexbox:flexbox:3.0.0'
  44. implementation "com.airbnb.android:lottie:3.7.0"
  45. implementation 'androidx.navigation:navigation-fragment:2.3.5'
  46. implementation 'androidx.navigation:navigation-ui:2.3.5'
  47. implementation files('libs/cloudscan_sdk_5.0.5.20210521.aar')
  48. implementation 'com.yqritc:recyclerview-flexibledivider:1.4.0'
  49. implementation 'com.google.android.gms:play-services-ads:20.2.0'
  50. testImplementation 'junit:junit:4.+'
  51. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  52. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  53. }