plugins { id 'com.android.application' id 'com.google.gms.google-services' } android { compileSdk 31 defaultConfig { applicationId "com.project.ilsaenterprise" minSdk 26 targetSdk 31 versionCode 1 versionName "1.0" 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 } } dependencies { implementation 'androidx.appcompat:appcompat:1.4.1' implementation 'com.google.android.material:material:1.5.0' implementation 'androidx.constraintlayout:constraintlayout:2.1.3' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation project(path: ':manufacturing') testImplementation 'junit:junit:' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' //Added implementation 'com.google.firebase:firebase-analytics:20.0.2' implementation 'com.google.firebase:firebase-core:20.0.2' implementation 'com.google.firebase:firebase-database:20.0.3' implementation 'com.google.firebase:firebase-auth:21.0.1' implementation 'com.google.android.gms:play-services-maps:18.0.2' implementation 'com.google.android.gms:play-services-location:19.0.1' implementation 'com.google.android.gms:play-services-auth:20.1.0' implementation 'com.google.firebase:firebase-functions:20.0.1' implementation 'com.google.firebase:firebase-storage:20.0.0' implementation 'com.google.firebase:firebase-firestore:24.0.1' implementation 'com.firebaseui:firebase-ui-database:3.2.2' implementation platform('com.google.firebase:firebase-bom:26.1.0') implementation 'com.google.firebase:firebase-inappmessaging-display' implementation 'com.google.android.material:material:1.5.0' implementation 'androidx.cardview:cardview:1.0.0' implementation 'androidmads.library.qrgenearator:QRGenearator:1.0.3' implementation 'com.github.thekhaeng:pushdown-anim-click:1.1.1' implementation 'com.airbnb.android:lottie:3.4.0' implementation 'com.amitshekhar.android:android-networking:1.0.2' implementation 'de.hdodenhof:circleimageview:3.1.0' implementation 'com.getbase:floatingactionbutton:1.10.1' implementation 'com.theartofdev.edmodo:android-image-cropper:2.8.+' implementation 'com.github.bumptech.glide:glide:4.11.0' implementation 'org.greenrobot:eventbus:3.1.1' implementation 'com.github.denzcoskun:ImageSlideshow:0.0.7' implementation 'com.github.chrisbanes:PhotoView:2.1.3' implementation 'com.facebook.shimmer:shimmer:0.1.0@aar' implementation 'com.github.ittianyu:BottomNavigationViewEx:1.1.9' implementation 'com.nostra13.universalimageloader:universal-image-loader:1.9.5' implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0' implementation 'pl.pawelkleczkowski.customgauge:CustomGauge:1.0.4' implementation 'com.android.volley:volley:1.2.1' }