| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- plugins {
- id 'com.android.application'
- }
- android {
- compileSdk 30
- buildToolsVersion "30.0.3"
- defaultConfig {
- applicationId "com.izouma.booster"
- minSdk 23
- targetSdk 30
- versionCode 6
- versionName "1.0"
- ndk.abiFilters 'armeabi-v7a','arm64-v8a'
- testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- viewBinding {
- enabled = true
- }
- buildFeatures {
- viewBinding true
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'androidx.appcompat:appcompat:1.3.0'
- implementation 'com.google.android.material:material:1.3.0'
- implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.3.1'
- implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1'
- implementation 'androidx.recyclerview:recyclerview:1.2.1'
- implementation 'androidx.viewpager2:viewpager2:1.0.0'
- implementation 'com.google.android.flexbox:flexbox:3.0.0'
- implementation "com.airbnb.android:lottie:3.7.0"
- implementation 'androidx.navigation:navigation-fragment:2.3.5'
- implementation 'androidx.navigation:navigation-ui:2.3.5'
- implementation files('libs/cloudscan_sdk_5.0.5.20210521.aar')
- implementation 'com.yqritc:recyclerview-flexibledivider:1.4.0'
- implementation 'com.google.android.gms:play-services-ads:20.2.0'
- testImplementation 'junit:junit:4.+'
- androidTestImplementation 'androidx.test.ext:junit:1.1.2'
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- }
|