ESP32 | FLUTTER | FIREBASE - Temperature & Humidity Check App

This commit is contained in:
Eric
2019-07-22 00:40:06 -07:00
parent a4597ab575
commit e8b26483f5
65 changed files with 2895 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.2'
classpath 'com.google.gms:google-services:4.3.0'
}
}
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
}