elsemTim

module-level build.gradle(src)

May 2nd, 2017
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.77 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'kotlin-android'
  3. apply plugin: 'kotlin-android-extensions'
  4.  
  5. android {
  6.     compileSdkVersion 25
  7.     buildToolsVersion "25.0.2"
  8.     defaultConfig {
  9.         applicationId "com.indianlion.trainingtracker"
  10.         minSdkVersion 16
  11.         targetSdkVersion 25
  12.         versionCode 1
  13.         versionName "1.0"
  14.         testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  15.     }
  16.     buildTypes {
  17.         release {
  18.             minifyEnabled false
  19.             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20.         }
  21.     }
  22. }
  23.  
  24. dependencies {
  25.     compile fileTree(dir: 'libs', include: ['*.jar'])
  26.     androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  27.         exclude group: 'com.android.support', module: 'support-annotations'
  28.     })
  29.     compile 'com.android.support:appcompat-v7:25.3.1'
  30.     compile 'com.android.support.constraint:constraint-layout:1.0.2'
  31.     testCompile 'junit:junit:4.12'
  32.     compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
  33.     //ButterKnife
  34.     compile 'com.jakewharton:butterknife:8.5.1'
  35.     kapt 'com.jakewharton:butterknife-compiler:8.5.1'
  36.     //EventBus
  37.     compile 'org.greenrobot:eventbus:3.0.0'
  38.     //RxJava2
  39.     compile 'io.reactivex.rxjava2:rxjava:2.0.8'
  40.     //RxPermissions
  41.     compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.3@aar'
  42.     //MVP
  43.     compile 'com.hannesdorfmann.mosby3:mvp:3.0.2'
  44.     //OpenStreetMap
  45.     compile 'org.osmdroid:osmdroid-android:5.6.4'
  46.     //FloatingButton
  47.     compile 'com.github.clans:fab:1.6.4'
  48.     //CircleImageView
  49.     compile 'de.hdodenhof:circleimageview:2.1.0'
  50. }
  51.  
  52. kapt {
  53.     generateStubs = true
  54. }
  55.  
  56. repositories {
  57.     mavenCentral()
  58. }
Advertisement
Add Comment
Please, Sign In to add comment