Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- apply plugin: 'com.android.application'
- apply plugin: 'kotlin-android'
- apply plugin: 'kotlin-android-extensions'
- android {
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
- defaultConfig {
- applicationId "com.indianlion.trainingtracker"
- minSdkVersion 16
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- compile 'com.android.support:appcompat-v7:25.3.1'
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
- testCompile 'junit:junit:4.12'
- compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
- //ButterKnife
- compile 'com.jakewharton:butterknife:8.5.1'
- kapt 'com.jakewharton:butterknife-compiler:8.5.1'
- //EventBus
- compile 'org.greenrobot:eventbus:3.0.0'
- //RxJava2
- compile 'io.reactivex.rxjava2:rxjava:2.0.8'
- //RxPermissions
- compile 'com.tbruyelle.rxpermissions2:rxpermissions:0.9.3@aar'
- //MVP
- compile 'com.hannesdorfmann.mosby3:mvp:3.0.2'
- //OpenStreetMap
- compile 'org.osmdroid:osmdroid-android:5.6.4'
- //FloatingButton
- compile 'com.github.clans:fab:1.6.4'
- //CircleImageView
- compile 'de.hdodenhof:circleimageview:2.1.0'
- }
- kapt {
- generateStubs = true
- }
- repositories {
- mavenCentral()
- }
Advertisement
Add Comment
Please, Sign In to add comment