build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. apply plugin: 'com.android.application'
  2. android {
  3. compileSdkVersion 29
  4. buildToolsVersion "29.0.0"
  5. defaultConfig {
  6. applicationId "com.example.bluetoothscanning"
  7. minSdkVersion 15
  8. targetSdkVersion 29
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android-optimize.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 'androidx.appcompat:appcompat:1.2.0'
  26. implementation 'androidx.constraintlayout:constraintlayout:2.0.2'
  27. implementation 'com.google.android.gms:play-services-location:17.0.0'
  28. testImplementation 'junit:junit:4.12'
  29. androidTestImplementation 'androidx.test:runner:1.3.0'
  30. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  31. implementation 'androidx.recyclerview:recyclerview:1.1.0'
  32. implementation 'android.arch.work:work-runtime:1.0.1'
  33. implementation 'com.github.helios-h2020:h.core-SocialEgoNetwork:1.0.3'
  34. }