Advertisement
Guest User

Untitled

a guest
Nov 26th, 2015
1,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. apply plugin: 'com.android.application'
  2. //apply plugin: 'com.android.databinding'
  3.  
  4. android {
  5. compileSdkVersion 21
  6. buildToolsVersion '21.1.2'
  7.  
  8. defaultConfig {
  9. applicationId "ch.geomatic.geomaticreborn"
  10. minSdkVersion 15
  11. targetSdkVersion 22
  12. versionCode 1
  13. versionName "1.0"
  14. }
  15. buildTypes {
  16. release {
  17. minifyEnabled false
  18. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  19. }
  20. }
  21.  
  22. lintOptions {
  23. disable 'InvalidPackage'
  24. }
  25.  
  26. packagingOptions {
  27. exclude 'META-INF/services/javax.annotation.processing.Processor'
  28. }
  29.  
  30. dataBinding {
  31. enabled = true
  32. }
  33. }
  34.  
  35. repositories {
  36. mavenCentral()
  37. flatDir {
  38. dirs 'libs'
  39. }
  40. }
  41.  
  42. dependencies {
  43. compile fileTree(dir: 'libs', include: ['*.jar'])
  44. compile 'com.android.support:appcompat-v7:22.2.0'
  45. compile(name:'osmbonuspack_v5.4', ext:'aar')
  46. compile 'com.jakewharton:butterknife:7.0.1'
  47. compile project(':model')
  48. compile project(':viewextend')
  49. compile project(':map')
  50. compile project(':common')
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement