Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2016
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 23
  5. buildToolsVersion "23.0.2"
  6.  
  7. packagingOptions {
  8. exclude 'META-INF/services/javax.annotation.processing.Processor'
  9. }
  10.  
  11. defaultConfig {
  12. applicationId "com.lukasz.jedrzejewski.bazyprojekt"
  13. minSdkVersion 15
  14. targetSdkVersion 23
  15. versionCode 1
  16. versionName "1.0"
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. }
  25.  
  26. dependencies {
  27. compile fileTree(dir: 'libs', include: ['*.jar'])
  28. compile 'com.android.support:appcompat-v7:23.1.0'
  29. compile 'com.jakewharton:butterknife:7.0.1'
  30. compile 'de.greenrobot:eventbus:2.4.0'
  31. compile 'se.emilsjolander:stickylistheaders:2.7.0'
  32. compile( 'com.dk.animation.circle:library:0.1.0@aar')
  33.  
  34. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement