Skip to content

Instantly share code, notes, and snippets.

@sergrnz
Created October 11, 2016 05:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sergrnz/bceed32f08b8786216edd1f94549c5c8 to your computer and use it in GitHub Desktop.
Save sergrnz/bceed32f08b8786216edd1f94549c5c8 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'com.neenbedankt.android-apt'
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.7'
}
}
repositories {
mavenCentral()
}
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "someID"
minSdkVersion 16
targetSdkVersion 23
versionCode 5
versionName '1.2.3'
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
productFlavors {
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile ('com.google.android.gms:play-services-gcm:9.4.0')
compile ('com.android.support:appcompat-v7:23.1.1')
compile ('com.android.support:design:23.1.1')
compile ('com.android.support:cardview-v7:23.3.0')
compile ('com.android.support:recyclerview-v7:23.1.1')
compile ('com.j256.ormlite:ormlite-android:4.48')
compile ('de.greenrobot:eventbus:2.4.0')
apt ('com.google.dagger:dagger-compiler:2.0.1')
provided ('org.glassfish:javax.annotation:10.0-b28')
compile ('com.google.dagger:dagger:2.0.1')
compile ('com.jakewharton:butterknife:7.0.1')
compile ('com.squareup.retrofit2:retrofit:2.0.0')
compile ('com.squareup.retrofit2:converter-gson:2.0.0')
compile ('com.redmadrobot:chronos:1.0.7')
compile ('com.nostra13.universalimageloader:universal-image-loader:1.9.5')
compile ('com.isseiaoki:simplecropview:1.0.8')
compile ('com.bignerdranch.android:expandablerecyclerview:2.1.0')
compile ('com.bartoszlipinski.recyclerviewheader:library:1.2.1')
compile ('com.commit451:PhotoView:1.2.4')
compile ('me.zhanghai.android.materialprogressbar:library:1.1.4')
compile ('com.github.orangegangsters:swipy:1.2.2@aar')
compile ('me.relex:circleindicator:1.2.1')
compile ('com.facebook.android:facebook-android-sdk:4.15.0')
compile ('com.vk:androidsdk:1.6.7')
compile project(':odnoklassniki-android-sdk')
testCompile ('junit:junit:4.12')
compile ('com.github.bumptech.glide:glide:3.7.0')
compile 'com.android.support:multidex:1.0.1'
compile ("org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment