Advertisement
Guest User

Untitled

a guest
Apr 27th, 2015
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2.  
  3. android {
  4. compileSdkVersion 22
  5. buildToolsVersion '22.0.1'
  6.  
  7. defaultConfig {
  8. applicationId "me.myapp"
  9. minSdkVersion 14
  10. targetSdkVersion 22
  11. versionCode 1
  12. versionName "1.0.0"
  13. }
  14.  
  15. compileOptions {
  16. sourceCompatibility JavaVersion.VERSION_1_7
  17. targetCompatibility JavaVersion.VERSION_1_7
  18. }
  19.  
  20. buildTypes {
  21. release {
  22. minifyEnabled false
  23. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  24. }
  25. }
  26. }
  27.  
  28. dependencies {
  29. compile 'org.jsoup:jsoup:1.8.2'
  30. compile 'com.android.support:recyclerview-v7:22.1.1'
  31. compile 'com.android.support:support-v4:22.1.1'
  32. compile 'com.android.support:appcompat-v7:22.1.1'
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement