Advertisement
Guest User

Untitled

a guest
Mar 27th, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. apply plugin: 'android-apt'
  3.  
  4. android {
  5. compileSdkVersion 25
  6. buildToolsVersion "25.0.2"
  7. defaultConfig {
  8. applicationId "com.wolska.application1"
  9. minSdkVersion 15
  10. targetSdkVersion 25
  11. versionCode 1
  12. versionName "1.0"
  13. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21. packagingOptions {
  22. exclude 'LICENSE.txt'
  23. }
  24. lintOptions {
  25. abortOnError false
  26. }
  27. }
  28.  
  29. dependencies {
  30. compile fileTree(dir: 'libs', include: ['*.jar'])
  31. androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
  32. exclude group: 'com.android.support', module: 'support-annotations'
  33. })
  34. compile 'com.android.support:appcompat-v7:25.2.0'
  35. testCompile 'junit:junit:4.12'
  36. compile 'com.google.android.gms:play-services-appindexing:8.4.0'
  37.  
  38.  
  39.  
  40. compile 'com.jakewharton:butterknife:8.1.0'
  41. apt 'com.jakewharton:butterknife-compiler:8.2.1'
  42.  
  43. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement