Flutter Application that takes weather data to display information/alerts for the user
For help getting started with Flutter, view our online documentation.
Shouldn't cause issues
Will cause issues, if using work laptop adjust the code below in a file you create under the android folder (android/build.gradle)
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.2'
}
}
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
}