Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. plugins {
  2. id 'com.android.application'
  3. }
  4. android {
  5. compileSdk 32
  6. defaultConfig {
  7. applicationId "com.example.lfrmobileapp"
  8. minSdk 22
  9. targetSdk 32
  10. versionCode 1
  11. versionName "1.0"
  12. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. compileOptions {
  21. sourceCompatibility JavaVersion.VERSION_1_8
  22. targetCompatibility JavaVersion.VERSION_1_8
  23. }
  24. buildFeatures {
  25. viewBinding true
  26. }
  27. }
  28. dependencies {
  29. implementation 'androidx.appcompat:appcompat:1.5.1'
  30. implementation 'com.google.android.material:material:1.7.0'
  31. implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
  32. implementation 'androidx.lifecycle:lifecycle-livedata-ktx:2.5.1'
  33. implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1'
  34. implementation 'androidx.navigation:navigation-fragment:2.5.3'
  35. implementation 'androidx.navigation:navigation-ui:2.5.3'
  36. implementation project(path: ':virtualjoystick')
  37. testImplementation 'junit:junit:4.13.2'
  38. androidTestImplementation 'androidx.test.ext:junit:1.1.5'
  39. androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
  40. }