Die Android-App dient als Navigation eines mobilen Roboters mittels Machine Learning im Rahmen einer Masterarbeit.
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 726B

1234567891011121314151617181920212223242526272829
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. mavenCentral()
  6. //jcenter()
  7. mavenLocal()
  8. }
  9. dependencies {
  10. classpath 'com.android.tools.build:gradle:7.0.4'
  11. classpath 'de.undercouch:gradle-download-task:4.0.2'
  12. // NOTE: Do not place your application dependencies here; they belong
  13. // in the individual module build.gradle files
  14. }
  15. }
  16. allprojects {
  17. repositories {
  18. google()
  19. mavenCentral()
  20. //jcenter() //for Pydnet
  21. mavenLocal()
  22. }
  23. }
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }