// Copyright 2014 The Flutter Authors. All rights reserved.// Use of this source code is governed by a BSD-style license that can be// found in the LICENSE file.// This is the `settings.gradle` file that apps currently use.// This file has changed, so it must be migrated in existing projects.include':app'defflutterProjectRoot=rootProject.projectDir.parentFile.toPath()deflocalPropertiesFile=newFile(rootProject.projectDir,"local.properties")defproperties=newProperties()defplugins=newProperties()defpluginsFile=newFile(flutterProjectRoot.toFile(),'.flutter-plugins')if(pluginsFile.exists()){pluginsFile.withReader('UTF-8'){reader->plugins.load(reader)}}plugins.each{name,path->defpluginDirectory=flutterProjectRoot.resolve(path).resolve('android').toFile()include":$name"project(":$name").projectDir=pluginDirectory}