1
0
mirror of https://github.com/nisrulz/flutter-examples.git synced 2026-04-27 10:07:36 +00:00

Added infinite favourite list

This commit is contained in:
Dipansh Khandelwal
2018-04-05 16:58:10 +05:30
parent 6856898d8c
commit 9a98b3b87b
65 changed files with 1596 additions and 0 deletions

View File

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