Greg Spencer | 33403bd | 2021-08-25 09:45:12 -0700 | [diff] [blame] | 1 | // Copyright 2014 The Flutter Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | include ':app' |
| 6 | |
| 7 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties") |
| 8 | def properties = new Properties() |
| 9 | |
| 10 | assert localPropertiesFile.exists() |
| 11 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } |
| 12 | |
| 13 | def flutterSdkPath = properties.getProperty("flutter.sdk") |
| 14 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties" |
| 15 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" |