Projektteil 2
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

build.gradle 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. plugins {
  2. id 'com.android.application'
  3. id 'com.google.gms.google-services'
  4. }
  5. android {
  6. compileSdkVersion 30
  7. buildToolsVersion "30.0.3"
  8. defaultConfig {
  9. applicationId "de.edotzlaff.detection"
  10. minSdkVersion 23
  11. targetSdkVersion 30
  12. versionCode 1
  13. versionName "1.0"
  14. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation 'androidx.appcompat:appcompat:1.3.0'
  29. implementation 'com.google.android.material:material:1.3.0'
  30. implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
  31. implementation 'com.google.android.gms:play-services-maps:17.0.1'
  32. implementation 'com.google.firebase:firebase-database:20.0.0'
  33. testImplementation 'junit:junit:4.+'
  34. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  35. implementation "com.google.android.gms:play-services-location:15.0.1" //Important to find the location from the device
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  37. implementation("com.google.guava:guava:30.1.1-jre")
  38. implementation ('com.lemmingapex.trilateration:trilateration:1.0.2')
  39. }