ESP32 | FLUTER | BLE | Data --* Server (feat. JoyPad)

This commit is contained in:
Eric
2019-08-17 20:20:52 -07:00
parent d2e9a1b362
commit 85ac79ccfc
61 changed files with 2006 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}