We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2961096 commit e0c0d83Copy full SHA for e0c0d83
android/settings.gradle
@@ -1,3 +1,11 @@
1
+/* def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
2
+def properties = new Properties()
3
+assert localPropertiesFile.exists()
4
+localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
5
+def flutterSdkPath = properties.getProperty("flutter.sdk")
6
+assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
7
+apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
8
+*/
9
pluginManagement {
10
def flutterSdkPath = {
11
def properties = new Properties()
0 commit comments