Untitled
unknown
plain_text
3 years ago
4.1 kB
8
Indexable
apply plugin: 'com.android.application' apply plugin: 'com.google.gms.google-services' apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-android' android { compileSdkVersion 30 buildToolsVersion "29.0.3" defaultConfig { applicationId "com.example.munche" minSdkVersion 21 targetSdkVersion 30 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.3.0' implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'com.google.firebase:firebase-core:19.0.0' implementation 'com.google.firebase:firebase-auth:21.0.1' implementation 'com.google.android.gms:play-services-auth:19.0.0' implementation 'com.google.firebase:firebase-firestore:23.0.1' implementation 'com.google.firebase:firebase-messaging:22.0.0' implementation 'com.google.firebase:firebase-crashlytics:18.1.0' implementation 'com.google.firebase:firebase-storage:20.0.0' implementation 'com.google.firebase:firebase-analytics:19.0.0' // Firebase Phone Auth Now requires the below dependency to work. implementation 'androidx.browser:browser:1.3.0' implementation 'com.firebaseui:firebase-ui-auth:4.2.1' implementation 'com.firebaseui:firebase-ui-firestore:7.1.1' implementation 'com.firebaseui:firebase-ui-database:7.1.1' implementation 'com.google.android.gms:play-services-location:18.0.0' implementation 'androidx.legacy:legacy-support-v4:1.0.0' implementation 'com.google.android.gms:play-services-maps:18.0.2' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' implementation "androidx.core:core-ktx:+" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" //External Libraries implementation 'com.github.aabhasr1:OtpView:v1.1.2' //OTP implementation 'com.hbb20:ccp:2.4.0' //Country Code Picker implementation 'com.google.android.material:material:1.4.0' //Material implementation 'com.jakewharton:butterknife:10.2.1'//Binding annotationProcessor 'com.jakewharton:butterknife-compiler:10.2.1' implementation 'com.github.bumptech.glide:glide:4.12.0' //Glide Image Loading annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0' //Annotation Processor implementation 'com.cepheuen.elegant-number-button:lib:1.0.2'//NumberPicker implementation 'com.github.nikartm:image-support:1.0.5' //ItemBadge Count implementation 'com.airbnb.android:lottie:3.5.0'//Lottie Animation implementation 'com.shreyaspatil:EasyUpiPayment:2.2'//UPI Payment implementation('com.paytm:pgplussdk:1.4.4') {//Paytm Gateway Integration transitive = true; } implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:9.2.0'//MapBox implementation 'com.mapbox.mapboxsdk:mapbox-android-navigation:0.42.6'//MapBox Navigation implementation 'androidx.annotation:annotation:1.2.0' implementation 'ir.samanjafari.easycountdowntimer:easycountdowntimer:2.5.0'//Countdown Timer implementation 'com.myhexaville:smart-image-picker:1.0.4' //ImagePicker implementation 'de.hdodenhof:circleimageview:3.1.0'//CircleImageView implementation 'com.github.sujithkanna:smileyrating:2.0.0'//Smiley Rating Bar } apply plugin: 'com.google.gms.google-services' apply plugin: 'com.google.firebase.crashlytics' repositories { mavenCentral() }
Editor is loading...