Masterarbeit Richard Stern. Flutter App, sich mit einem Bluetooth-Gerät verbindet und Berührungen auf einem Sensor visualisiert.
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 582B

12345678910111213141516171819202122232425262728293031
  1. buildscript {
  2. ext.kotlin_version = '1.2.30'
  3. repositories {
  4. google()
  5. jcenter()
  6. }
  7. dependencies {
  8. classpath 'com.android.tools.build:gradle:3.1.2'
  9. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  10. }
  11. }
  12. allprojects {
  13. repositories {
  14. google()
  15. jcenter()
  16. }
  17. }
  18. rootProject.buildDir = '../build'
  19. subprojects {
  20. project.buildDir = "${rootProject.buildDir}/${project.name}"
  21. }
  22. subprojects {
  23. project.evaluationDependsOn(':app')
  24. }
  25. task clean(type: Delete) {
  26. delete rootProject.buildDir
  27. }