Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- buildscript {
- repositories {
- maven { url 'https://maven.fabric.io/public' }
- }
- dependencies {
- classpath 'io.fabric.tools:gradle:1.27.1'
- }
- }
- apply plugin: 'com.android.application'
- apply plugin: 'io.fabric'
- repositories {
- maven { url 'https://maven.fabric.io/public' }
- }
- android {
- compileSdkVersion 28
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- lintOptions {
- disable 'RestrictedApi'
- }
- defaultConfig {
- applicationId "com.guide"
- minSdkVersion 23
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support:appcompat-v7:28.0.0'
- implementation 'com.android.support:support-v4:28.0.0'
- implementation 'com.android.support:design:28.0.0'
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- testImplementation 'junit:junit:4.12'
- //rxjava
- implementation 'io.reactivex.rxjava2:rxjava:2.2.3'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
- implementation 'com.jakewharton.rxbinding2:rxbinding:2.0.0'
- implementation 'com.jakewharton.rxbinding2:rxbinding-appcompat-v7:2.0.0'
- // retrofit
- implementation 'com.squareup.retrofit2:retrofit:2.5.0'
- implementation 'com.squareup.retrofit2:converter-jackson:2.3.0'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
- implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1'
- implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
- implementation 'com.jakewharton:butterknife:8.8.1'
- annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
- implementation 'org.glassfish:javax.annotation:10.0-b28'
- implementation 'com.google.code.gson:gson:2.8.5'
- //stetho
- implementation 'com.facebook.stetho:stetho:1.5.0'
- implementation 'com.google.android.gms:play-services-maps:16.1.0'
- implementation 'com.mapbox.mapboxsdk:mapbox-android-sdk:7.2.0'
- implementation 'com.google.android.gms:play-services-location:16.0.0'
- implementation 'com.android.support:recyclerview-v7:28.0.0'
- implementation 'com.github.bumptech.glide:glide:4.8.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
- implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.8.1'
- implementation 'com.crashlytics.sdk.android:crashlytics:2.9.9'
- //jsoup
- implementation 'org.jsoup:jsoup:1.11.3'
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement