暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

settings.gradle 462B

1234567891011
  1. include ':app'
  2. def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
  3. def properties = new Properties()
  4. assert localPropertiesFile.exists()
  5. localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
  6. def flutterSdkPath = properties.getProperty("flutter.sdk")
  7. assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
  8. apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"