This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
skyforce-app/android/settings.gradle

12 lines
462 B
Groovy
Raw Normal View History

2023-08-11 20:01:01 +02:00
include ':app'
2023-08-06 10:35:40 +02:00
2023-08-11 20:01:01 +02:00
def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
def properties = new Properties()
2023-08-06 10:35:40 +02:00
2023-08-11 20:01:01 +02:00
assert localPropertiesFile.exists()
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
2023-08-06 10:35:40 +02:00
2023-08-11 20:01:01 +02:00
def flutterSdkPath = properties.getProperty("flutter.sdk")
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"