Advertisement
Guest User

main build

a guest
Aug 26th, 2013
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. buildscript {
  2. repositories {
  3. mavenCentral()
  4. }
  5. dependencies {
  6. classpath 'com.android.tools.build:gradle:0.5.+'
  7. }
  8. }
  9. apply plugin: 'android'
  10.  
  11. repositories {
  12. mavenCentral()
  13. }
  14.  
  15. android {
  16. compileSdkVersion 18
  17. buildToolsVersion "18.0.1"
  18.  
  19. defaultConfig {
  20. minSdkVersion 7
  21. targetSdkVersion 16
  22. }
  23. }
  24.  
  25. dependencies {
  26. compile 'com.android.support:support-v4:18.0.0'
  27. compile project(':sub:bp')
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement