build.gradle 1.0 KB

12345678910111213141516171819202122232425262728293031
  1. apply plugin: 'com.android.application'
  2. //apply plugin: 'com.android.library'
  3. android {
  4. compileSdkVersion 26
  5. defaultConfig {
  6. applicationId "com.slam.bboxble"
  7. minSdkVersion 19
  8. targetSdkVersion 26
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. dependencies {
  21. implementation fileTree(include: ['*.jar'], dir: 'libs')
  22. implementation 'com.android.support:appcompat-v7:26.0.0-beta1'
  23. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  24. testImplementation 'junit:junit:4.12'
  25. androidTestImplementation 'com.android.support.test:runner:0.5'
  26. androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
  27. implementation 'org.greenrobot:eventbus:3.0.0'
  28. implementation project(':bboxblelib')
  29. }