From dcdec54dd94bf39a873f2dda7d53d71571a09b91 Mon Sep 17 00:00:00 2001 From: dab246 Date: Tue, 15 Nov 2022 14:33:03 +0700 Subject: [PATCH] TF-1204 Create `fcm` module --- fcm/.gitignore | 29 ++++++++ fcm/.metadata | 10 +++ fcm/README.md | 3 + fcm/analysis_options.yaml | 4 ++ fcm/pubspec.lock | 146 ++++++++++++++++++++++++++++++++++++++ fcm/pubspec.yaml | 19 +++++ 6 files changed, 211 insertions(+) create mode 100644 fcm/.gitignore create mode 100644 fcm/.metadata create mode 100644 fcm/README.md create mode 100644 fcm/analysis_options.yaml create mode 100644 fcm/pubspec.lock create mode 100644 fcm/pubspec.yaml diff --git a/fcm/.gitignore b/fcm/.gitignore new file mode 100644 index 000000000..11bcaf4ae --- /dev/null +++ b/fcm/.gitignore @@ -0,0 +1,29 @@ +# Miscellaneous +*.class +*.log +*.pyc +*.swp +.DS_Store +.atom/ +.buildlog/ +.history +.svn/ +migrate_working_dir/ + +# IntelliJ related +*.iml +*.ipr +*.iws +.idea/ + +# The .vscode folder contains launch configuration and tasks you configure in +# VS Code which you may wish to be included in version control, so this line +# is commented out by default. +#.vscode/ + +# Flutter/Dart/Pub related +# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock. +**/doc/api/ +.dart_tool/ +.packages +build/ diff --git a/fcm/.metadata b/fcm/.metadata new file mode 100644 index 000000000..756df2804 --- /dev/null +++ b/fcm/.metadata @@ -0,0 +1,10 @@ +# This file tracks properties of this Flutter project. +# Used by Flutter tool to assess capabilities and perform upgrades etc. +# +# This file should be version controlled and should not be manually edited. + +version: + revision: fb57da5f945d02ef4f98dfd9409a72b7cce74268 + channel: stable + +project_type: package diff --git a/fcm/README.md b/fcm/README.md new file mode 100644 index 000000000..2bdcff902 --- /dev/null +++ b/fcm/README.md @@ -0,0 +1,3 @@ +# fcm + +TeamMail FCM extension \ No newline at end of file diff --git a/fcm/analysis_options.yaml b/fcm/analysis_options.yaml new file mode 100644 index 000000000..a5744c1cf --- /dev/null +++ b/fcm/analysis_options.yaml @@ -0,0 +1,4 @@ +include: package:flutter_lints/flutter.yaml + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/fcm/pubspec.lock b/fcm/pubspec.lock new file mode 100644 index 000000000..8a19e7393 --- /dev/null +++ b/fcm/pubspec.lock @@ -0,0 +1,146 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.8.2" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.1" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.16.0" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.11" + material_color_utilities: + dependency: transitive + description: + name: material_color_utilities + url: "https://pub.dartlang.org" + source: hosted + version: "0.1.4" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.7.0" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.1" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.2" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.10.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.4.9" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.2" +sdks: + dart: ">=2.17.0 <3.0.0" diff --git a/fcm/pubspec.yaml b/fcm/pubspec.yaml new file mode 100644 index 000000000..9c1ce8047 --- /dev/null +++ b/fcm/pubspec.yaml @@ -0,0 +1,19 @@ +name: fcm +description: TeamMail FCM extension +publish_to: 'none' + +version: 1.0.0+1 + +environment: + sdk: ">=2.17.0 <3.0.0" + +dependencies: + flutter: + sdk: flutter + +dev_dependencies: + flutter_test: + sdk: flutter + +flutter: + uses-material-design: true \ No newline at end of file