您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字
 
 
 
 
 
 

26 行
727 B

  1. pluginManagement {
  2. def flutterSdkPath = {
  3. def properties = new Properties()
  4. file("local.properties").withInputStream { properties.load(it) }
  5. def flutterSdkPath = properties.getProperty("flutter.sdk")
  6. assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
  7. return flutterSdkPath
  8. }()
  9. includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
  10. repositories {
  11. google()
  12. mavenCentral()
  13. gradlePluginPortal()
  14. }
  15. }
  16. plugins {
  17. id "dev.flutter.flutter-plugin-loader" version "1.0.0"
  18. id "com.android.application" version "8.2.1" apply false
  19. id "org.jetbrains.kotlin.android" version "1.8.22" apply false
  20. }
  21. include ":app"