build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. apply plugin: 'com.android.application'
  2. //apply plugin: 'com.android.library'
  3. android {
  4. compileSdkVersion 26
  5. defaultConfig {
  6. applicationId "com.slam.bboxbleNext3"
  7. minSdkVersion 19
  8. targetSdkVersion 26
  9. versionCode 3
  10. versionName "3.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. compileOptions {
  20. sourceCompatibility JavaVersion.VERSION_1_8
  21. targetCompatibility JavaVersion.VERSION_1_8
  22. }
  23. }
  24. dependencies {
  25. implementation fileTree(include: ['*.jar'], dir: 'libs')
  26. implementation 'com.android.support:appcompat-v7:26.0.0-beta1'
  27. implementation 'com.android.support.constraint:constraint-layout:1.0.2'
  28. testImplementation 'junit:junit:4.12'
  29. androidTestImplementation 'com.android.support.test:runner:0.5'
  30. androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
  31. implementation 'org.greenrobot:eventbus:3.0.0'
  32. implementation project(':bboxblelib')
  33. }