-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into foss
- Loading branch information
Showing
49 changed files
with
5,853 additions
and
2,773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,25 @@ | ||
include ':app' | ||
pluginManagement { | ||
def flutterSdkPath = { | ||
def properties = new Properties() | ||
file("local.properties").withInputStream { properties.load(it) } | ||
def flutterSdkPath = properties.getProperty("flutter.sdk") | ||
assert flutterSdkPath != null, "flutter.sdk not set in local.properties" | ||
return flutterSdkPath | ||
}() | ||
|
||
def localPropertiesFile = new File(rootProject.projectDir, "local.properties") | ||
def properties = new Properties() | ||
includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") | ||
|
||
assert localPropertiesFile.exists() | ||
localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } | ||
repositories { | ||
google() | ||
mavenCentral() | ||
gradlePluginPortal() | ||
} | ||
} | ||
|
||
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" | ||
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 "2.0.0" apply false | ||
} | ||
|
||
include ":app" |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/// Flutter icons OvermorrowWeatherIcons | ||
/// Copyright (C) 2024 by original authors @ fluttericon.com, fontello.com | ||
/// This font was generated by FlutterIcon.com, which is derived from Fontello. | ||
/// | ||
/// To use this font, place it in your fonts/ directory and include the | ||
/// following in your pubspec.yaml | ||
/// | ||
/// flutter: | ||
/// fonts: | ||
/// - family: OvermorrowWeatherIcons | ||
/// fonts: | ||
/// - asset: fonts/OvermorrowWeatherIcons.ttf | ||
/// | ||
/// | ||
/// | ||
import 'package:flutter/widgets.dart'; | ||
|
||
class OvermorrowWeatherIcons { | ||
OvermorrowWeatherIcons._(); | ||
|
||
static const _kFontFam = 'OvermorrowWeatherIcons'; | ||
static const String? _kFontPkg = null; | ||
|
||
static const IconData cloudy2 = IconData(0xe800, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData cloudy_night2 = IconData(0xe801, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData drizzle2 = IconData(0xe802, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData fog2 = IconData(0xe803, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData haze2 = IconData(0xe804, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData heavy_rain2 = IconData(0xe805, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData heavy_snow2 = IconData(0xe806, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData lightning2 = IconData(0xe807, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData moon2 = IconData(0xe808, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData partly_cloudy2 = IconData(0xe809, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData rain2 = IconData(0xe80a, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData sleet2 = IconData(0xe80b, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData snow2 = IconData(0xe80c, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
static const IconData sun2 = IconData(0xe80d, fontFamily: _kFontFam, fontPackage: _kFontPkg); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.