Advertisement
artylem

gradle

Apr 8th, 2020
583
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.60 KB | None | 0 0
  1. buildscript {
  2.     repositories {
  3.         maven { url 'https://maven.fabric.io/public' }
  4.         jcenter()
  5.         mavenCentral()
  6.     }
  7.  
  8.     dependencies {
  9.         classpath 'io.fabric.tools:gradle:1.+'
  10.     }
  11. }
  12. apply plugin: 'com.android.application'
  13. apply plugin: 'io.fabric'
  14.  
  15. repositories {
  16.     maven { url 'https://maven.fabric.io/public' }
  17.     jcenter()
  18.     mavenCentral()
  19. }
  20.  
  21.  
  22. android {
  23.     signingConfigs {
  24.         release {
  25.             keyAlias '0'
  26.             keyPassword '0'
  27.             storeFile file('keys.jks')
  28.             storePassword '0'
  29.         }
  30.     }
  31.     compileSdkVersion 26
  32.     defaultConfig {
  33.         applicationId "com.vklikesapp.nat.vklikesapp"
  34.         minSdkVersion 15
  35.         targetSdkVersion 26
  36.         multiDexEnabled true
  37.         versionCode 20
  38.         versionName "1.1"
  39.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  40.     }
  41.     buildTypes {
  42.         release {
  43.             minifyEnabled false
  44.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  45.         }
  46.     }
  47.     compileOptions {
  48.         targetCompatibility 1.8
  49.         sourceCompatibility 1.8
  50.     }
  51.     dexOptions {
  52.         jumboMode = true
  53.     }
  54. }
  55.  
  56. dependencies {
  57.     implementation fileTree(dir: 'libs', include: ['*.jar'])
  58.     implementation 'com.android.support:appcompat-v7:26.1.0'
  59.     implementation 'com.google.firebase:firebase-ads:11.0.4'
  60.     implementation 'com.google.firebase:firebase-storage:11.0.4'
  61.     implementation 'com.firebaseui:firebase-ui-storage:0.6.0'
  62.     implementation 'com.android.support:design:26.1.0'
  63.     implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  64.     implementation project(':vksdk_library')
  65.     implementation project(':vklibrary')
  66.  
  67.     implementation 'com.google.dagger:dagger:2.11'
  68.     implementation 'com.google.firebase:firebase-database:11.0.4'
  69.     annotationProcessor 'com.google.dagger:dagger-compiler:2.11'
  70.  
  71.     implementation 'com.arello-mobile:moxy:1.5.3'
  72.     implementation 'com.arello-mobile:moxy-android:1.5.3'
  73.     implementation 'com.arello-mobile:moxy-app-compat:1.5.3'
  74.     annotationProcessor 'com.arello-mobile:moxy-compiler:1.5.3'
  75.     implementation 'com.squareup.retrofit2:retrofit:2.3.0'
  76.     implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
  77.     implementation 'com.android.support:cardview-v7:26.1.0'
  78.     implementation 'com.github.bumptech.glide:glide:4.3.1'
  79.     annotationProcessor 'com.github.bumptech.glide:compiler:4.3.1'
  80.     implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
  81.     implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
  82.     implementation 'io.reactivex.rxjava2:rxjava:2.1.3'
  83.     implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
  84.     implementation 'com.android.support:recyclerview-v7:26.1.0'
  85.     implementation 'com.jakewharton:butterknife:8.8.1'
  86.     implementation 'de.hdodenhof:circleimageview:2.1.0'
  87.     implementation 'com.daimajia.numberprogressbar:library:1.4@aar'
  88.     implementation 'com.karumi:dexter:4.2.0'
  89.  
  90.     //appodeal
  91.     implementation 'com.appodeal.ads:sdk:2.6.3.+'
  92.  
  93.  
  94.     implementation 'com.android.support:multidex:1.0.3'
  95. //    implementation 'com.android.billingclient:billing:1.1'
  96.     compile 'org.solovyev.android:checkout:1.2.1'
  97.  
  98.  
  99.     annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
  100.     implementation('com.crashlytics.sdk.android:crashlytics:2.9.5@aar') {
  101.         transitive = true
  102.     }
  103.     implementation('com.crashlytics.sdk.android:answers:1.4.3@aar') {
  104.         transitive = true
  105.     }
  106.  
  107. }
  108.  
  109. apply plugin: 'com.google.gms.google-services'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement