mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-04-04 21:35:44 -04:00
minor cleanups
This commit is contained in:
parent
230978b297
commit
604ec9cfdd
@ -5,10 +5,9 @@ pluginManagement {
|
||||
def flutterSdkPath = properties.getProperty("flutter.sdk")
|
||||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
|
||||
return flutterSdkPath
|
||||
}
|
||||
settings.ext.flutterSdkPath = flutterSdkPath()
|
||||
}()
|
||||
|
||||
includeBuild("${settings.ext.flutterSdkPath}/packages/flutter_tools/gradle")
|
||||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle")
|
||||
|
||||
repositories {
|
||||
google()
|
||||
@ -19,8 +18,8 @@ pluginManagement {
|
||||
|
||||
plugins {
|
||||
id "dev.flutter.flutter-plugin-loader" version "1.0.0"
|
||||
id "com.android.application" version "7.3.0" apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.7.10" apply false
|
||||
id "com.android.application" version "8.8.0" apply false
|
||||
id "org.jetbrains.kotlin.android" version "1.9.25" apply false
|
||||
}
|
||||
|
||||
include ":app"
|
||||
include ":app"
|
@ -49,8 +49,7 @@ Future<Map<String, dynamic>> getDefaultVeilidPlatformConfig(
|
||||
return VeilidFFIConfig(
|
||||
logging: VeilidFFIConfigLogging(
|
||||
terminal: VeilidFFIConfigLoggingTerminal(
|
||||
enabled:
|
||||
kIsDebugMode && (Platform.isIOS || Platform.isAndroid),
|
||||
enabled: false,
|
||||
level: kIsDebugMode
|
||||
? VeilidConfigLogLevel.debug
|
||||
: VeilidConfigLogLevel.info,
|
||||
|
Loading…
x
Reference in New Issue
Block a user