├── ios
├── Runner
│ ├── Runner-Bridging-Header.h
│ ├── Assets.xcassets
│ │ ├── LaunchImage.imageset
│ │ │ ├── LaunchImage.png
│ │ │ ├── LaunchImage@2x.png
│ │ │ ├── LaunchImage@3x.png
│ │ │ ├── README.md
│ │ │ └── Contents.json
│ │ └── AppIcon.appiconset
│ │ │ ├── Icon-App-20x20@1x.png
│ │ │ ├── Icon-App-20x20@2x.png
│ │ │ ├── Icon-App-20x20@3x.png
│ │ │ ├── Icon-App-29x29@1x.png
│ │ │ ├── Icon-App-29x29@2x.png
│ │ │ ├── Icon-App-29x29@3x.png
│ │ │ ├── Icon-App-40x40@1x.png
│ │ │ ├── Icon-App-40x40@2x.png
│ │ │ ├── Icon-App-40x40@3x.png
│ │ │ ├── Icon-App-60x60@2x.png
│ │ │ ├── Icon-App-60x60@3x.png
│ │ │ ├── Icon-App-76x76@1x.png
│ │ │ ├── Icon-App-76x76@2x.png
│ │ │ ├── Icon-App-1024x1024@1x.png
│ │ │ ├── Icon-App-83.5x83.5@2x.png
│ │ │ └── Contents.json
│ ├── AppDelegate.swift
│ ├── GoogleService-Info.plist
│ ├── Base.lproj
│ │ ├── Main.storyboard
│ │ └── LaunchScreen.storyboard
│ └── Info.plist
├── Flutter
│ ├── Debug.xcconfig
│ ├── Release.xcconfig
│ └── AppFrameworkInfo.plist
├── Runner.xcodeproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ ├── WorkspaceSettings.xcsettings
│ │ │ └── IDEWorkspaceChecks.plist
│ ├── xcshareddata
│ │ └── xcschemes
│ │ │ └── Runner.xcscheme
│ └── project.pbxproj
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ ├── WorkspaceSettings.xcsettings
│ │ └── IDEWorkspaceChecks.plist
├── firebase_app_id_file.json
├── RunnerTests
│ └── RunnerTests.swift
├── .gitignore
├── Podfile
└── Podfile.lock
├── app.png
├── firestore.PNG
├── assets
├── camera.svg
└── computer.jpg
├── android
├── gradle.properties
├── app
│ ├── src
│ │ ├── main
│ │ │ ├── res
│ │ │ │ ├── mipmap-hdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-mdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── mipmap-xxxhdpi
│ │ │ │ │ └── ic_launcher.png
│ │ │ │ ├── drawable
│ │ │ │ │ └── launch_background.xml
│ │ │ │ ├── drawable-v21
│ │ │ │ │ └── launch_background.xml
│ │ │ │ ├── values
│ │ │ │ │ └── styles.xml
│ │ │ │ └── values-night
│ │ │ │ │ └── styles.xml
│ │ │ ├── kotlin
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ ├── multi_cam_dashboard
│ │ │ │ │ └── MainActivity.kt
│ │ │ │ │ └── multi_camera_dashboard
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── AndroidManifest.xml
│ │ ├── debug
│ │ │ └── AndroidManifest.xml
│ │ └── profile
│ │ │ └── AndroidManifest.xml
│ ├── google-services.json
│ └── build.gradle
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
├── .gitignore
├── settings.gradle
└── build.gradle
├── lib
├── locator.dart
├── core
│ ├── models
│ │ └── CameraStream.dart
│ ├── services
│ │ └── FirestoreApiService.dart
│ └── viewmodels
│ │ └── CameraStreamsViewModel.dart
├── router.dart
├── main.dart
├── ui
│ ├── widgets
│ │ ├── CameraStreamCard.dart
│ │ └── CameraVLCStreamCard.dart
│ └── views
│ │ ├── HomeView.dart
│ │ ├── CameraStreamDetails.dart
│ │ ├── AddCameraStreamCard.dart
│ │ └── ModifyCameraStream.dart
└── firebase_options.dart
├── .gitignore
├── test
└── widget_test.dart
├── analysis_options.yaml
├── README.md
├── .metadata
├── pubspec.yaml
├── pubspec.lock
└── LICENSE
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/app.png
--------------------------------------------------------------------------------
/firestore.PNG:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/firestore.PNG
--------------------------------------------------------------------------------
/assets/camera.svg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/assets/camera.svg
--------------------------------------------------------------------------------
/assets/computer.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/assets/computer.jpg
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
2 | #include "Generated.xcconfig"
3 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/mitchross/multi_camera_dashboard/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/example/multi_cam_dashboard/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.example.multi_cam_dashboard
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/com/example/multi_camera_dashboard/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.example.multi_camera_dashboard
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Fri Jun 23 08:50:38 CEST 2017
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-all.zip
7 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/firebase_app_id_file.json:
--------------------------------------------------------------------------------
1 | {
2 | "file_generated_by": "FlutterFire CLI",
3 | "purpose": "FirebaseAppID & ProjectID for this Firebase app in this directory",
4 | "GOOGLE_APP_ID": "1:152974899925:ios:f5601a786bc8b16675005c",
5 | "FIREBASE_PROJECT_ID": "multicamdemo-f11b0",
6 | "GCM_SENDER_ID": "152974899925"
7 | }
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/android/.gitignore:
--------------------------------------------------------------------------------
1 | gradle-wrapper.jar
2 | /.gradle
3 | /captures/
4 | /gradlew
5 | /gradlew.bat
6 | /local.properties
7 | GeneratedPluginRegistrant.java
8 |
9 | # Remember to never publicly share your keystore.
10 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app
11 | key.properties
12 | **/*.keystore
13 | **/*.jks
14 |
--------------------------------------------------------------------------------
/ios/RunnerTests/RunnerTests.swift:
--------------------------------------------------------------------------------
1 | import Flutter
2 | import UIKit
3 | import XCTest
4 |
5 | class RunnerTests: XCTestCase {
6 |
7 | func testExample() {
8 | // If you add code to the Runner application, consider adding tests here.
9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest.
10 | }
11 |
12 | }
13 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md:
--------------------------------------------------------------------------------
1 | # Launch Screen Assets
2 |
3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory.
4 |
5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images.
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner/AppDelegate.swift:
--------------------------------------------------------------------------------
1 | import UIKit
2 | import Flutter
3 |
4 | @UIApplicationMain
5 | @objc class AppDelegate: FlutterAppDelegate {
6 | override func application(
7 | _ application: UIApplication,
8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
9 | ) -> Bool {
10 | GeneratedPluginRegistrant.register(with: self)
11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions)
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/lib/locator.dart:
--------------------------------------------------------------------------------
1 | import 'package:get_it/get_it.dart';
2 | import 'package:muticam_dashboard/core/services/FirestoreApiService.dart';
3 | import 'package:muticam_dashboard/core/viewmodels/CameraStreamsViewModel.dart';
4 |
5 | GetIt locator = GetIt.instance;
6 | void setupLocator() {
7 | locator.registerLazySingleton(
8 | () => FireStoreApiService('camerastreams'));
9 | locator.registerLazySingleton(
10 | () => CameraStreamsViewModel());
11 | }
12 |
--------------------------------------------------------------------------------
/android/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
3 | def localPropertiesFile = new File(rootProject.projectDir, "local.properties")
4 | def properties = new Properties()
5 |
6 | assert localPropertiesFile.exists()
7 | localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) }
8 |
9 | def flutterSdkPath = properties.getProperty("flutter.sdk")
10 | assert flutterSdkPath != null, "flutter.sdk not set in local.properties"
11 | apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle"
12 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "idiom" : "universal",
5 | "filename" : "LaunchImage.png",
6 | "scale" : "1x"
7 | },
8 | {
9 | "idiom" : "universal",
10 | "filename" : "LaunchImage@2x.png",
11 | "scale" : "2x"
12 | },
13 | {
14 | "idiom" : "universal",
15 | "filename" : "LaunchImage@3x.png",
16 | "scale" : "3x"
17 | }
18 | ],
19 | "info" : {
20 | "version" : 1,
21 | "author" : "xcode"
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/lib/core/models/CameraStream.dart:
--------------------------------------------------------------------------------
1 | class CameraStream {
2 | String? id;
3 | String? cameraStreamUrl;
4 | String? cameraStreamTitle;
5 |
6 | CameraStream({this.id, this.cameraStreamUrl, this.cameraStreamTitle});
7 |
8 | CameraStream.fromMap(Map snapshot, String id)
9 | : id = id ?? '',
10 | cameraStreamUrl = snapshot['cameraStreamUrl'] ?? '',
11 | cameraStreamTitle = snapshot['cameraStreamTitle'];
12 |
13 | toJson() {
14 | return {
15 | "cameraStreamUrl": cameraStreamUrl,
16 | "cameraStreamTitle": cameraStreamTitle,
17 | };
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | **/dgph
2 | *.mode1v3
3 | *.mode2v3
4 | *.moved-aside
5 | *.pbxuser
6 | *.perspectivev3
7 | **/*sync/
8 | .sconsign.dblite
9 | .tags*
10 | **/.vagrant/
11 | **/DerivedData/
12 | Icon?
13 | **/Pods/
14 | **/.symlinks/
15 | profile
16 | xcuserdata
17 | **/.generated/
18 | Flutter/App.framework
19 | Flutter/Flutter.framework
20 | Flutter/Flutter.podspec
21 | Flutter/Generated.xcconfig
22 | Flutter/ephemeral/
23 | Flutter/app.flx
24 | Flutter/app.zip
25 | Flutter/flutter_assets/
26 | Flutter/flutter_export_environment.sh
27 | ServiceDefinitions.json
28 | Runner/GeneratedPluginRegistrant.*
29 |
30 | # Exceptions to above rules.
31 | !default.mode1v3
32 | !default.mode2v3
33 | !default.pbxuser
34 | !default.perspectivev3
35 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.6.21'
3 | repositories {
4 | google()
5 | mavenCentral()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:7.4.2'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | }
12 | }
13 |
14 | allprojects {
15 | repositories {
16 | google()
17 | mavenCentral()
18 | }
19 | }
20 |
21 | rootProject.buildDir = '../build'
22 | subprojects {
23 | project.buildDir = "${rootProject.buildDir}/${project.name}"
24 | }
25 | subprojects {
26 | project.evaluationDependsOn(':app')
27 | }
28 |
29 | tasks.register("clean", Delete) {
30 | delete rootProject.buildDir
31 | }
32 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # Miscellaneous
2 | *.class
3 | *.log
4 | *.pyc
5 | *.swp
6 | .DS_Store
7 | .atom/
8 | .buildlog/
9 | .history
10 | .svn/
11 |
12 | # IntelliJ related
13 | *.iml
14 | *.ipr
15 | *.iws
16 | .idea/
17 |
18 | # The .vscode folder contains launch configuration and tasks you configure in
19 | # VS Code which you may wish to be included in version control, so this line
20 | # is commented out by default.
21 | #.vscode/
22 |
23 | # Flutter/Dart/Pub related
24 | **/doc/api/
25 | .dart_tool/
26 | .flutter-plugins
27 | .flutter-plugins-dependencies
28 | .packages
29 | .pub-cache/
30 | .pub/
31 | /build/
32 |
33 | # Web related
34 | lib/generated_plugin_registrant.dart
35 |
36 | # Exceptions to above rules.
37 | !/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
38 |
39 |
--------------------------------------------------------------------------------
/lib/router.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:muticam_dashboard/ui/views/AddCameraStreamCard.dart';
3 | import 'package:muticam_dashboard/ui/views/HomeView.dart';
4 |
5 | class InternalRouter {
6 | static Route generateRoute(RouteSettings settings) {
7 | switch (settings.name) {
8 | case '/':
9 | return MaterialPageRoute(builder: (_) => HomeView());
10 | case '/addCameraStream':
11 | return MaterialPageRoute(builder: (_) => AddCameraStreamCard());
12 | default:
13 | return MaterialPageRoute(
14 | builder: (_) => Scaffold(
15 | body: Center(
16 | child: Text('No route defined for ${settings.name}'),
17 | ),
18 | ));
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/ios/Flutter/AppFrameworkInfo.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | en
7 | CFBundleExecutable
8 | App
9 | CFBundleIdentifier
10 | io.flutter.flutter.app
11 | CFBundleInfoDictionaryVersion
12 | 6.0
13 | CFBundleName
14 | App
15 | CFBundlePackageType
16 | FMWK
17 | CFBundleShortVersionString
18 | 1.0
19 | CFBundleSignature
20 | ????
21 | CFBundleVersion
22 | 1.0
23 | MinimumOSVersion
24 | 11.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/lib/core/services/FirestoreApiService.dart:
--------------------------------------------------------------------------------
1 | import 'package:cloud_firestore/cloud_firestore.dart';
2 |
3 | class FireStoreApiService {
4 | final FirebaseFirestore firestore = FirebaseFirestore.instance;
5 | final String path;
6 | late CollectionReference ref;
7 |
8 | FireStoreApiService(this.path) {
9 | ref = firestore.collection(path);
10 | }
11 |
12 | Future getAllCameraStreams() {
13 | return ref.get();
14 | }
15 |
16 | Stream getStreamDataCollection() {
17 | return ref.snapshots();
18 | }
19 |
20 | Future getCameraStreamById(String id) {
21 | return ref.doc(id).get();
22 | }
23 |
24 | Future removeCameraStream(String? id) {
25 | return ref.doc(id).delete();
26 | }
27 |
28 | Future addCameraStream(Map data) {
29 | return ref.add(data);
30 | }
31 |
32 | Future updateCameraStream(Map data, String? id) {
33 | return ref.doc(id).update(data as Map);
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/test/widget_test.dart:
--------------------------------------------------------------------------------
1 | // This is a basic Flutter widget test.
2 | //
3 | // To perform an interaction with a widget in your test, use the WidgetTester
4 | // utility that Flutter provides. For example, you can send tap and scroll
5 | // gestures. You can also use WidgetTester to find child ui.views.widgets in the widget
6 | // tree, read text, and verify that the values of widget properties are correct.
7 |
8 | import 'package:flutter/material.dart';
9 | import 'package:flutter_test/flutter_test.dart';
10 | import 'package:muticam_dashboard/main.dart';
11 |
12 | void main() {
13 | testWidgets('Counter increments smoke test', (WidgetTester tester) async {
14 | // Build our app and trigger a frame.
15 | await tester.pumpWidget(MultiCameraStreamApp());
16 |
17 | // Verify that our counter starts at 0.
18 | expect(find.text('0'), findsOneWidget);
19 | expect(find.text('1'), findsNothing);
20 |
21 | // Tap the '+' icon and trigger a frame.
22 | await tester.tap(find.byIcon(Icons.add));
23 | await tester.pump();
24 |
25 | // Verify that our counter has incremented.
26 | expect(find.text('0'), findsNothing);
27 | expect(find.text('1'), findsOneWidget);
28 | });
29 | }
30 |
--------------------------------------------------------------------------------
/lib/main.dart:
--------------------------------------------------------------------------------
1 |
2 | import 'package:firebase_core/firebase_core.dart';
3 | import 'package:flutter/material.dart';
4 | import 'package:get_it/get_it.dart';
5 | import 'package:muticam_dashboard/core/viewmodels/CameraStreamsViewModel.dart';
6 | import 'package:muticam_dashboard/locator.dart';
7 | import 'package:muticam_dashboard/router.dart';
8 | import 'package:provider/provider.dart';
9 |
10 | import 'firebase_options.dart';
11 |
12 | Future main() async {
13 | WidgetsFlutterBinding.ensureInitialized();
14 |
15 | await Firebase.initializeApp(
16 | options: DefaultFirebaseOptions.currentPlatform,
17 | );
18 | setupLocator();
19 | runApp(MultiCameraStreamApp());
20 | }
21 |
22 | class MultiCameraStreamApp extends StatelessWidget {
23 | @override
24 | Widget build(BuildContext context) {
25 | return MultiProvider(
26 | providers: [
27 | ChangeNotifierProvider(
28 | create: (_) => GetIt.I(),
29 | )
30 | ],
31 | child: MaterialApp(
32 | initialRoute: "/",
33 | title: "Multi Stream Camera App",
34 | theme: ThemeData(),
35 | onGenerateRoute: InternalRouter.generateRoute,
36 | ),
37 | );
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/ios/Runner/GoogleService-Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CLIENT_ID
6 | 152974899925-03phpvcbmovarj2jbgo4ce18685bag38.apps.googleusercontent.com
7 | REVERSED_CLIENT_ID
8 | com.googleusercontent.apps.152974899925-03phpvcbmovarj2jbgo4ce18685bag38
9 | API_KEY
10 | AIzaSyCwjIw0tYSZ4zRy8jmXZpFuB9KcML4nv_A
11 | GCM_SENDER_ID
12 | 152974899925
13 | PLIST_VERSION
14 | 1
15 | BUNDLE_ID
16 | com.example.multiCamDashboard
17 | PROJECT_ID
18 | multicamdemo-f11b0
19 | STORAGE_BUCKET
20 | multicamdemo-f11b0.appspot.com
21 | IS_ADS_ENABLED
22 |
23 | IS_ANALYTICS_ENABLED
24 |
25 | IS_APPINVITE_ENABLED
26 |
27 | IS_GCM_ENABLED
28 |
29 | IS_SIGNIN_ENABLED
30 |
31 | GOOGLE_APP_ID
32 | 1:152974899925:ios:f5601a786bc8b16675005c
33 | DATABASE_URL
34 | https://multicamdemo-f11b0.firebaseio.com
35 |
36 |
--------------------------------------------------------------------------------
/android/app/google-services.json:
--------------------------------------------------------------------------------
1 | {
2 | "project_info": {
3 | "project_number": "152974899925",
4 | "firebase_url": "https://multicamdemo-f11b0.firebaseio.com",
5 | "project_id": "multicamdemo-f11b0",
6 | "storage_bucket": "multicamdemo-f11b0.appspot.com"
7 | },
8 | "client": [
9 | {
10 | "client_info": {
11 | "mobilesdk_app_id": "1:152974899925:android:107b7245c7d6226a75005c",
12 | "android_client_info": {
13 | "package_name": "com.example.multi_cam_dashboard"
14 | }
15 | },
16 | "oauth_client": [
17 | {
18 | "client_id": "152974899925-kil7rdv80lqdvhku1gcmtv0s65abscdv.apps.googleusercontent.com",
19 | "client_type": 3
20 | }
21 | ],
22 | "api_key": [
23 | {
24 | "current_key": "AIzaSyCjzxQqqUmWheCFsfsGlxaLSrHTACynJLU"
25 | }
26 | ],
27 | "services": {
28 | "appinvite_service": {
29 | "other_platform_oauth_client": [
30 | {
31 | "client_id": "152974899925-kil7rdv80lqdvhku1gcmtv0s65abscdv.apps.googleusercontent.com",
32 | "client_type": 3
33 | },
34 | {
35 | "client_id": "152974899925-03phpvcbmovarj2jbgo4ce18685bag38.apps.googleusercontent.com",
36 | "client_type": 2,
37 | "ios_info": {
38 | "bundle_id": "com.example.multiCamDashboard"
39 | }
40 | }
41 | ]
42 | }
43 | }
44 | }
45 | ],
46 | "configuration_version": "1"
47 | }
--------------------------------------------------------------------------------
/analysis_options.yaml:
--------------------------------------------------------------------------------
1 | # This file configures the analyzer, which statically analyzes Dart code to
2 | # check for errors, warnings, and lints.
3 | #
4 | # The issues identified by the analyzer are surfaced in the UI of Dart-enabled
5 | # IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be
6 | # invoked from the command line by running `flutter analyze`.
7 |
8 | # The following line activates a set of recommended lints for Flutter apps,
9 | # packages, and plugins designed to encourage good coding practices.
10 | include: package:flutter_lints/flutter.yaml
11 |
12 | linter:
13 | # The lint rules applied to this project can be customized in the
14 | # section below to disable rules from the `package:flutter_lints/flutter.yaml`
15 | # included above or to enable additional rules. A list of all available lints
16 | # and their documentation is published at
17 | # https://dart-lang.github.io/linter/lints/index.html.
18 | #
19 | # Instead of disabling a lint rule for the entire project in the
20 | # section below, it can also be suppressed for a single line of code
21 | # or a specific dart file by using the `// ignore: name_of_lint` and
22 | # `// ignore_for_file: name_of_lint` syntax on the line or in the file
23 | # producing the lint.
24 | rules:
25 | # avoid_print: false # Uncomment to disable the `avoid_print` rule
26 | # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule
27 |
28 | # Additional information about this file can be found at
29 | # https://dart.dev/guides/language/analysis-options
30 |
--------------------------------------------------------------------------------
/ios/Podfile:
--------------------------------------------------------------------------------
1 | # Uncomment this line to define a global platform for your project
2 | # platform :ios, '11.0'
3 |
4 | # CocoaPods analytics sends network stats synchronously affecting flutter build latency.
5 | ENV['COCOAPODS_DISABLE_STATS'] = 'true'
6 |
7 | project 'Runner', {
8 | 'Debug' => :debug,
9 | 'Profile' => :release,
10 | 'Release' => :release,
11 | }
12 |
13 | def flutter_root
14 | generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
15 | unless File.exist?(generated_xcode_build_settings_path)
16 | raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
17 | end
18 |
19 | File.foreach(generated_xcode_build_settings_path) do |line|
20 | matches = line.match(/FLUTTER_ROOT\=(.*)/)
21 | return matches[1].strip if matches
22 | end
23 | raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
24 | end
25 |
26 | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)
27 |
28 | flutter_ios_podfile_setup
29 |
30 | target 'Runner' do
31 | use_frameworks!
32 | use_modular_headers!
33 |
34 | flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
35 | target 'RunnerTests' do
36 | inherit! :search_paths
37 | end
38 | end
39 |
40 | post_install do |installer|
41 | installer.pods_project.targets.each do |target|
42 | flutter_additional_ios_build_settings(target)
43 | end
44 | end
45 |
--------------------------------------------------------------------------------
/lib/core/viewmodels/CameraStreamsViewModel.dart:
--------------------------------------------------------------------------------
1 |
2 |
3 | import 'package:cloud_firestore/cloud_firestore.dart';
4 | import 'package:flutter/cupertino.dart';
5 | import 'package:get_it/get_it.dart';
6 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
7 | import 'package:muticam_dashboard/core/services/FirestoreApiService.dart';
8 |
9 | class CameraStreamsViewModel extends ChangeNotifier {
10 | FireStoreApiService? firestoreAPI = GetIt.I();
11 | List? cameraStreams;
12 |
13 | Future?> fetchCameraStreams() async {
14 | var result = await firestoreAPI!.getAllCameraStreams();
15 |
16 | cameraStreams = result.docs
17 | .map((doc) => CameraStream.fromMap(doc.data() as Map, doc.id))
18 | .toList();
19 | return cameraStreams;
20 | }
21 |
22 | Stream fetchCameraDataStream() {
23 | return firestoreAPI!.getStreamDataCollection();
24 | }
25 |
26 | Future getCameraStreambyID(String id) async {
27 | var doc = await firestoreAPI!.getCameraStreamById(id);
28 | return CameraStream.fromMap(doc.data() as Map, doc.id);
29 | }
30 |
31 | Future removeCameraStreamByID(String? id) async {
32 | await firestoreAPI!.removeCameraStream(id);
33 | return;
34 | }
35 |
36 | Future updateCameraStreamByID(CameraStream data, String? id) async {
37 | await firestoreAPI!.updateCameraStream(data.toJson(), id);
38 | return;
39 | }
40 |
41 | Future addCameraStream(CameraStream data) async {
42 | var result = await firestoreAPI!.addCameraStream(data.toJson());
43 |
44 | return;
45 | }
46 | }
47 |
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/Main.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # 8.23.2022 update
2 |
3 | Made firebase work again with latest flutter and flutterfire. Follow https://firebase.google.com/docs/flutter/setup?platform=ios on your own.
4 |
5 | # 9.9.2021 update
6 |
7 | I have updated the firebase db to be read only due to abuse. The save operation works if you import your own firebase and modify project files to include your own configs. I prefer batteries included approach to demo app, so I will continue providing my firebase for helping out.
8 |
9 | I plan to migrate this project off MVVM to Bloc soon.
10 |
11 | # muticam_dashboard
12 | This app is inspired by this post https://medium.com/@tattwei46/flutter-how-to-do-crud-with-firebase-rtdb-ce61e3ce53a
13 |
14 | A app to view multiple RTSP Streams in Flutter!
15 |
16 | 
17 |
18 |
19 | ## Getting Started
20 | Create a firebase account and create a firestore https://firebase.google.com/docs/flutter/setup
21 |
22 | Create a fire store with a store called "camerastreams"
23 | 
24 |
25 |
26 | ## Running
27 |
28 | In the root of directory run "flutter run" from the terminal
29 |
30 | ## Getting Started With Flutter
31 |
32 | This project is a starting point for a Flutter application.
33 |
34 | A few resources to get you started if this is your first Flutter project:
35 |
36 | - [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab)
37 | - [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook)
38 |
39 | For help getting started with Flutter, view our
40 | [online documentation](https://flutter.dev/docs), which offers tutorials,
41 | samples, guidance on mobile development, and a full API reference.
42 |
43 |
44 |
45 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
15 |
19 |
23 |
24 |
25 |
26 |
27 |
28 |
30 |
33 |
34 |
35 |
--------------------------------------------------------------------------------
/.metadata:
--------------------------------------------------------------------------------
1 | # This file tracks properties of this Flutter project.
2 | # Used by Flutter tool to assess capabilities and perform upgrades etc.
3 | #
4 | # This file should be version controlled and should not be manually edited.
5 |
6 | version:
7 | revision: "e1e47221e86272429674bec4f1bd36acc4fc7b77"
8 | channel: "stable"
9 |
10 | project_type: app
11 |
12 | # Tracks metadata for the flutter migrate command
13 | migration:
14 | platforms:
15 | - platform: root
16 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
17 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
18 | - platform: android
19 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
20 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
21 | - platform: ios
22 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
23 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
24 | - platform: linux
25 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
26 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
27 | - platform: macos
28 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
29 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
30 | - platform: web
31 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
32 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
33 | - platform: windows
34 | create_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
35 | base_revision: e1e47221e86272429674bec4f1bd36acc4fc7b77
36 |
37 | # User provided section
38 |
39 | # List of Local paths (relative to this file) that should be
40 | # ignored by the migrate tool.
41 | #
42 | # Files that are not part of the templates will be ignored by default.
43 | unmanaged_files:
44 | - 'lib/main.dart'
45 | - 'ios/Runner.xcodeproj/project.pbxproj'
46 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | Multi Cam Dashboard
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | multi_cam_dashboard
17 | CFBundlePackageType
18 | APPL
19 | CFBundleShortVersionString
20 | $(FLUTTER_BUILD_NAME)
21 | CFBundleSignature
22 | ????
23 | CFBundleVersion
24 | $(FLUTTER_BUILD_NUMBER)
25 | LSRequiresIPhoneOS
26 |
27 | UILaunchStoryboardName
28 | LaunchScreen
29 | UIMainStoryboardFile
30 | Main
31 | UISupportedInterfaceOrientations
32 |
33 | UIInterfaceOrientationPortrait
34 | UIInterfaceOrientationLandscapeLeft
35 | UIInterfaceOrientationLandscapeRight
36 |
37 | UISupportedInterfaceOrientations~ipad
38 |
39 | UIInterfaceOrientationPortrait
40 | UIInterfaceOrientationPortraitUpsideDown
41 | UIInterfaceOrientationLandscapeLeft
42 | UIInterfaceOrientationLandscapeRight
43 |
44 | UIViewControllerBasedStatusBarAppearance
45 |
46 | CADisableMinimumFrameDurationOnPhone
47 |
48 | UIApplicationSupportsIndirectInputEvents
49 |
50 |
51 |
52 |
--------------------------------------------------------------------------------
/lib/ui/widgets/CameraStreamCard.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
3 | import 'package:muticam_dashboard/ui/views/CameraStreamDetails.dart';
4 |
5 | class CameraStreamCard extends StatelessWidget {
6 | final CameraStream cameraStreamDetails;
7 |
8 | CameraStreamCard({required this.cameraStreamDetails});
9 |
10 | @override
11 | Widget build(BuildContext context) {
12 | return GestureDetector(
13 | onTap: () {
14 | Navigator.push(
15 | context,
16 | MaterialPageRoute(
17 | builder: (_) => CameraStreamDetails(
18 | cameraStream: cameraStreamDetails,
19 | )));
20 | },
21 | child: Padding(
22 | padding: EdgeInsets.all(8),
23 | child: Card(
24 | elevation: 5,
25 | child: Container(
26 | height: MediaQuery.of(context).size.height * 0.45,
27 | width: MediaQuery.of(context).size.height * 0.9,
28 | child: Column(
29 | children: [
30 | Hero(
31 | tag: cameraStreamDetails.id!,
32 | child: Image.asset(
33 | 'assets/camera.svg',
34 | height: MediaQuery.of(context).size.height * 0.35,
35 | width: MediaQuery.of(context).size.height * 0.35,
36 | ),
37 | ),
38 | Padding(
39 | padding: EdgeInsets.all(16),
40 | child: Row(
41 | mainAxisAlignment: MainAxisAlignment.spaceBetween,
42 | children: [
43 | Text(cameraStreamDetails.cameraStreamTitle ?? '',
44 | style: TextStyle(
45 | fontWeight: FontWeight.w900,
46 | fontSize: 22,
47 | fontStyle: FontStyle.italic,
48 | )),
49 | ],
50 | ),
51 | )
52 | ],
53 | ),
54 | ),
55 | ),
56 | ),
57 | );
58 | }
59 | }
60 |
--------------------------------------------------------------------------------
/lib/ui/views/HomeView.dart:
--------------------------------------------------------------------------------
1 | import 'dart:typed_data';
2 |
3 | import 'package:cloud_firestore/cloud_firestore.dart';
4 | import 'package:flutter/material.dart';
5 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
6 | import 'package:muticam_dashboard/core/viewmodels/CameraStreamsViewModel.dart';
7 | import 'package:muticam_dashboard/ui/widgets/CameraVLCStreamCard.dart';
8 | import 'package:provider/provider.dart';
9 |
10 | class HomeView extends StatefulWidget {
11 | @override
12 | HomeViewState createState() => HomeViewState();
13 | }
14 |
15 | class HomeViewState extends State {
16 | late List cameraStreams;
17 |
18 | Uint8List? image;
19 | GlobalKey? imageKey;
20 |
21 |
22 |
23 | @override
24 | void initState() {
25 | imageKey = new GlobalKey();
26 | super.initState();
27 | }
28 |
29 | @override
30 | Widget build(BuildContext context) {
31 | final cameraStreamProvider = Provider.of(context);
32 |
33 | return Scaffold(
34 |
35 | floatingActionButton: FloatingActionButton(
36 | onPressed: () {
37 | Navigator.pushNamed(context, '/addCameraStream');
38 | },
39 | child: Icon(Icons.add),
40 | ),
41 | appBar: AppBar(
42 | title: Center(child: Text("Home")),
43 | ),
44 | body: Container(
45 | child: StreamBuilder(
46 | stream: cameraStreamProvider.fetchCameraDataStream(),
47 | builder: (context, AsyncSnapshot snapshot) {
48 | if (snapshot.hasData) {
49 | cameraStreams = snapshot.data!.docs
50 | .map(
51 | (doc) => CameraStream.fromMap(doc.data() as Map, doc.id))
52 | .toList();
53 |
54 | return ListView.builder(
55 | itemCount: cameraStreams.length,
56 | itemBuilder: (buildContext, index) => CameraStreamVLCCard(
57 | cameraStreamInfo: cameraStreams[index]),
58 | );
59 | } else {
60 | return Text('fetching');
61 | }
62 | }),
63 | ),
64 | );
65 | }
66 | }
67 |
--------------------------------------------------------------------------------
/android/app/build.gradle:
--------------------------------------------------------------------------------
1 | def localProperties = new Properties()
2 | def localPropertiesFile = rootProject.file('local.properties')
3 | if (localPropertiesFile.exists()) {
4 | localPropertiesFile.withReader('UTF-8') { reader ->
5 | localProperties.load(reader)
6 | }
7 | }
8 |
9 | def flutterRoot = localProperties.getProperty('flutter.sdk')
10 | if (flutterRoot == null) {
11 | throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
12 | }
13 |
14 | def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
15 | if (flutterVersionCode == null) {
16 | flutterVersionCode = '1'
17 | }
18 |
19 | def flutterVersionName = localProperties.getProperty('flutter.versionName')
20 | if (flutterVersionName == null) {
21 | flutterVersionName = '1.0'
22 | }
23 |
24 | apply plugin: 'com.android.application'
25 | apply plugin: 'kotlin-android'
26 | apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
27 |
28 | android {
29 | compileSdkVersion flutter.compileSdkVersion
30 | ndkVersion flutter.ndkVersion
31 |
32 | compileOptions {
33 | sourceCompatibility JavaVersion.VERSION_1_8
34 | targetCompatibility JavaVersion.VERSION_1_8
35 | }
36 |
37 | kotlinOptions {
38 | jvmTarget = '1.8'
39 | }
40 |
41 | sourceSets {
42 | main.java.srcDirs += 'src/main/kotlin'
43 | }
44 |
45 | defaultConfig {
46 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
47 | applicationId "com.example.multi_cam_dashboard"
48 | // You can update the following values to match your application needs.
49 | // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-build-configuration.
50 | minSdkVersion 21
51 | targetSdkVersion flutter.targetSdkVersion
52 | versionCode flutterVersionCode.toInteger()
53 | versionName flutterVersionName
54 | }
55 |
56 | buildTypes {
57 | release {
58 | // TODO: Add your own signing config for the release build.
59 | // Signing with the debug keys for now, so `flutter run --release` works.
60 | signingConfig signingConfigs.debug
61 | }
62 | }
63 | }
64 |
65 | flutter {
66 | source '../..'
67 | }
68 |
69 | dependencies {
70 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
71 | }
72 |
--------------------------------------------------------------------------------
/ios/Runner/Base.lproj/LaunchScreen.storyboard:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
--------------------------------------------------------------------------------
/lib/ui/views/CameraStreamDetails.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
3 | import 'package:muticam_dashboard/core/viewmodels/CameraStreamsViewModel.dart';
4 | import 'package:muticam_dashboard/ui/views/ModifyCameraStream.dart';
5 | import 'package:provider/provider.dart';
6 |
7 | class CameraStreamDetails extends StatelessWidget {
8 | final CameraStream cameraStream;
9 |
10 | CameraStreamDetails({required this.cameraStream});
11 |
12 | @override
13 | Widget build(BuildContext context) {
14 | var cameraStreamStoreProvider =
15 | Provider.of(context);
16 |
17 | return Scaffold(
18 | appBar: AppBar(
19 | title: Text('Camera Stream Details'),
20 | actions: [
21 | IconButton(
22 | iconSize: 35,
23 | icon: Icon(Icons.delete_forever),
24 | onPressed: () async {
25 | await cameraStreamStoreProvider
26 | .removeCameraStreamByID(cameraStream.id);
27 | Navigator.pop(context);
28 | },
29 | ),
30 | IconButton(
31 | iconSize: 35,
32 | icon: Icon(Icons.edit),
33 | onPressed: () {
34 | Navigator.push(
35 | context,
36 | MaterialPageRoute(
37 | builder: (_) => ModifyCameraStream(
38 | cameraStream: cameraStream,
39 | )));
40 | },
41 | )
42 | ],
43 | ),
44 | body: Column(
45 | mainAxisSize: MainAxisSize.max,
46 | crossAxisAlignment: CrossAxisAlignment.center,
47 | children: [
48 | Hero(
49 | tag: cameraStream.id!,
50 | child: Image.asset(
51 | 'assets/camera.svg',
52 | height: MediaQuery.of(context).size.height * 0.35,
53 | width: MediaQuery.of(context).size.width,
54 | ),
55 | ),
56 | SizedBox(
57 | height: 20,
58 | ),
59 | Text(
60 | cameraStream.cameraStreamTitle ?? '',
61 | style: TextStyle(
62 | fontWeight: FontWeight.w900,
63 | fontSize: 22,
64 | fontStyle: FontStyle.italic),
65 | ),
66 | Text(
67 | cameraStream.cameraStreamUrl!,
68 | style: TextStyle(
69 | fontWeight: FontWeight.w900,
70 | fontSize: 22,
71 | fontStyle: FontStyle.italic,
72 | color: Colors.orangeAccent),
73 | )
74 | ],
75 | ),
76 | );
77 | }
78 | }
79 |
--------------------------------------------------------------------------------
/lib/firebase_options.dart:
--------------------------------------------------------------------------------
1 | // File generated by FlutterFire CLI.
2 | // ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members
3 | import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
4 | import 'package:flutter/foundation.dart'
5 | show defaultTargetPlatform, kIsWeb, TargetPlatform;
6 |
7 | /// Default [FirebaseOptions] for use with your Firebase apps.
8 | ///
9 | /// Example:
10 | /// ```dart
11 | /// import 'firebase_options.dart';
12 | /// // ...
13 | /// await Firebase.initializeApp(
14 | /// options: DefaultFirebaseOptions.currentPlatform,
15 | /// );
16 | /// ```
17 | class DefaultFirebaseOptions {
18 | static FirebaseOptions get currentPlatform {
19 | if (kIsWeb) {
20 | throw UnsupportedError(
21 | 'DefaultFirebaseOptions have not been configured for web - '
22 | 'you can reconfigure this by running the FlutterFire CLI again.',
23 | );
24 | }
25 | switch (defaultTargetPlatform) {
26 | case TargetPlatform.android:
27 | return android;
28 | case TargetPlatform.iOS:
29 | return ios;
30 | case TargetPlatform.macOS:
31 | throw UnsupportedError(
32 | 'DefaultFirebaseOptions have not been configured for macos - '
33 | 'you can reconfigure this by running the FlutterFire CLI again.',
34 | );
35 | case TargetPlatform.windows:
36 | throw UnsupportedError(
37 | 'DefaultFirebaseOptions have not been configured for windows - '
38 | 'you can reconfigure this by running the FlutterFire CLI again.',
39 | );
40 | case TargetPlatform.linux:
41 | throw UnsupportedError(
42 | 'DefaultFirebaseOptions have not been configured for linux - '
43 | 'you can reconfigure this by running the FlutterFire CLI again.',
44 | );
45 | default:
46 | throw UnsupportedError(
47 | 'DefaultFirebaseOptions are not supported for this platform.',
48 | );
49 | }
50 | }
51 |
52 | static const FirebaseOptions android = FirebaseOptions(
53 | apiKey: 'AIzaSyCjzxQqqUmWheCFsfsGlxaLSrHTACynJLU',
54 | appId: '1:152974899925:android:107b7245c7d6226a75005c',
55 | messagingSenderId: '152974899925',
56 | projectId: 'multicamdemo-f11b0',
57 | databaseURL: 'https://multicamdemo-f11b0.firebaseio.com',
58 | storageBucket: 'multicamdemo-f11b0.appspot.com',
59 | );
60 |
61 | static const FirebaseOptions ios = FirebaseOptions(
62 | apiKey: 'AIzaSyCwjIw0tYSZ4zRy8jmXZpFuB9KcML4nv_A',
63 | appId: '1:152974899925:ios:f5601a786bc8b16675005c',
64 | messagingSenderId: '152974899925',
65 | projectId: 'multicamdemo-f11b0',
66 | databaseURL: 'https://multicamdemo-f11b0.firebaseio.com',
67 | storageBucket: 'multicamdemo-f11b0.appspot.com',
68 | iosClientId: '152974899925-03phpvcbmovarj2jbgo4ce18685bag38.apps.googleusercontent.com',
69 | iosBundleId: 'com.example.multiCamDashboard',
70 | );
71 | }
72 |
--------------------------------------------------------------------------------
/lib/ui/widgets/CameraVLCStreamCard.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:flutter_vlc_player/flutter_vlc_player.dart';
3 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
4 | import 'package:muticam_dashboard/ui/views/CameraStreamDetails.dart';
5 |
6 | class CameraStreamVLCCard extends StatefulWidget {
7 | final CameraStream cameraStreamInfo;
8 |
9 | CameraStreamVLCCard({required this.cameraStreamInfo});
10 |
11 | @override
12 | CameraStreamVLCCardState createState() => CameraStreamVLCCardState();
13 | }
14 |
15 | class CameraStreamVLCCardState extends State {
16 | late VlcPlayerController controller;
17 |
18 | @override
19 | void initState() {
20 | controller = new VlcPlayerController.network(
21 | widget.cameraStreamInfo.cameraStreamUrl!,
22 | autoPlay: true,);
23 | }
24 |
25 | @override
26 | Widget build(BuildContext context) {
27 | var _height = MediaQuery.of(context).size.height * 0.33;
28 | var _width = MediaQuery.of(context).size.width * 0.9;
29 |
30 | return GestureDetector(
31 | onTap: () {
32 | Navigator.push(
33 | context,
34 | MaterialPageRoute(
35 | builder: (_) => CameraStreamDetails(
36 | cameraStream: widget.cameraStreamInfo,
37 | )));
38 | },
39 | child: Padding(
40 | padding: EdgeInsets.all(8),
41 | child: Card(
42 | elevation: 5,
43 | child: Container(
44 | height: _height,
45 | width: _width,
46 | child: Column(
47 | children: [
48 | Expanded(child:
49 | Hero(
50 | tag: widget.cameraStreamInfo.id!,
51 |
52 | child: SizedBox(
53 | height: 360,
54 | width: _width,
55 | child: new VlcPlayer(
56 | aspectRatio: 16 / 9,
57 | controller: controller,
58 | placeholder: Center(child: CircularProgressIndicator()),
59 | ),
60 | ),
61 | )),
62 | Padding(
63 | padding: EdgeInsets.all(16),
64 | child: Row(
65 | mainAxisAlignment: MainAxisAlignment.spaceBetween,
66 | children: [
67 | Text(widget.cameraStreamInfo.cameraStreamTitle ?? '',
68 | style: TextStyle(
69 | fontWeight: FontWeight.w900,
70 | fontSize: 22,
71 | fontStyle: FontStyle.italic,
72 | )),
73 | ],
74 | ),
75 | )
76 | ],
77 | ),
78 | ),
79 | ),
80 | ),
81 | );
82 | }
83 | }
84 |
--------------------------------------------------------------------------------
/pubspec.yaml:
--------------------------------------------------------------------------------
1 | name: muticam_dashboard
2 | description: A app to view multiple RTSP Streams
3 |
4 | # The following defines the version and build number for your application.
5 | # A version number is three numbers separated by dots, like 1.2.43
6 | # followed by an optional build number separated by a +.
7 | # Both the version and the builder number may be overridden in flutter
8 | # build by specifying --build-name and --build-number, respectively.
9 | # In Android, build-name is used as versionName while build-number used as versionCode.
10 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
11 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
12 | # Read more about iOS versioning at
13 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
14 | version: 1.0.0+1
15 |
16 | environment:
17 | sdk: '>=3.0.0 <4.0.0'
18 |
19 | dependencies:
20 | flutter:
21 | sdk: flutter
22 |
23 | # The following adds the Cupertino Icons font to your application.
24 | # Use with the CupertinoIcons class for iOS style icons.
25 | cupertino_icons: ^1.0.5
26 | http: ^1.1.0
27 | cloud_firestore: ^4.9.0
28 | firebase_core: ^2.15.1
29 | provider: ^6.0.5
30 | get_it: ^7.6.0
31 | flutter_svg: ^2.0.7
32 | flutter_vlc_player: ^7.2.0
33 |
34 |
35 |
36 |
37 |
38 | dev_dependencies:
39 | flutter_test:
40 | sdk: flutter
41 |
42 | # For information on the generic Dart part of this file, see the
43 | # following page: https://dart.dev/tools/pub/pubspec
44 |
45 | # The following section is specific to Flutter.
46 | flutter:
47 |
48 | # The following line ensures that the Material Icons font is
49 | # included with your application, so that you can use the icons in
50 | # the material Icons class.
51 | uses-material-design: true
52 | assets:
53 | - assets/
54 |
55 | # To add assets to your application, add an assets section, like this:
56 | # assets:
57 | # - images/a_dot_burr.jpeg
58 | # - images/a_dot_ham.jpeg
59 |
60 | # An image asset can refer to one or more resolution-specific "variants", see
61 | # https://flutter.dev/assets-and-images/#resolution-aware.
62 |
63 | # For details regarding adding assets from package dependencies, see
64 | # https://flutter.dev/assets-and-images/#from-packages
65 |
66 | # To add custom fonts to your application, add a fonts section here,
67 | # in this "flutter" section. Each entry in this list should have a
68 | # "family" key with the font family name, and a "fonts" key with a
69 | # list giving the asset and other descriptors for the font. For
70 | # example:
71 | # fonts:
72 | # - family: Schyler
73 | # fonts:
74 | # - asset: fonts/Schyler-Regular.ttf
75 | # - asset: fonts/Schyler-Italic.ttf
76 | # style: italic
77 | # - family: Trajan Pro
78 | # fonts:
79 | # - asset: fonts/TrajanPro.ttf
80 | # - asset: fonts/TrajanPro_Bold.ttf
81 | # weight: 700
82 | #
83 | # For details regarding fonts from package dependencies,
84 | # see https://flutter.dev/custom-fonts/#from-packages
85 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {
2 | "images" : [
3 | {
4 | "size" : "20x20",
5 | "idiom" : "iphone",
6 | "filename" : "Icon-App-20x20@2x.png",
7 | "scale" : "2x"
8 | },
9 | {
10 | "size" : "20x20",
11 | "idiom" : "iphone",
12 | "filename" : "Icon-App-20x20@3x.png",
13 | "scale" : "3x"
14 | },
15 | {
16 | "size" : "29x29",
17 | "idiom" : "iphone",
18 | "filename" : "Icon-App-29x29@1x.png",
19 | "scale" : "1x"
20 | },
21 | {
22 | "size" : "29x29",
23 | "idiom" : "iphone",
24 | "filename" : "Icon-App-29x29@2x.png",
25 | "scale" : "2x"
26 | },
27 | {
28 | "size" : "29x29",
29 | "idiom" : "iphone",
30 | "filename" : "Icon-App-29x29@3x.png",
31 | "scale" : "3x"
32 | },
33 | {
34 | "size" : "40x40",
35 | "idiom" : "iphone",
36 | "filename" : "Icon-App-40x40@2x.png",
37 | "scale" : "2x"
38 | },
39 | {
40 | "size" : "40x40",
41 | "idiom" : "iphone",
42 | "filename" : "Icon-App-40x40@3x.png",
43 | "scale" : "3x"
44 | },
45 | {
46 | "size" : "60x60",
47 | "idiom" : "iphone",
48 | "filename" : "Icon-App-60x60@2x.png",
49 | "scale" : "2x"
50 | },
51 | {
52 | "size" : "60x60",
53 | "idiom" : "iphone",
54 | "filename" : "Icon-App-60x60@3x.png",
55 | "scale" : "3x"
56 | },
57 | {
58 | "size" : "20x20",
59 | "idiom" : "ipad",
60 | "filename" : "Icon-App-20x20@1x.png",
61 | "scale" : "1x"
62 | },
63 | {
64 | "size" : "20x20",
65 | "idiom" : "ipad",
66 | "filename" : "Icon-App-20x20@2x.png",
67 | "scale" : "2x"
68 | },
69 | {
70 | "size" : "29x29",
71 | "idiom" : "ipad",
72 | "filename" : "Icon-App-29x29@1x.png",
73 | "scale" : "1x"
74 | },
75 | {
76 | "size" : "29x29",
77 | "idiom" : "ipad",
78 | "filename" : "Icon-App-29x29@2x.png",
79 | "scale" : "2x"
80 | },
81 | {
82 | "size" : "40x40",
83 | "idiom" : "ipad",
84 | "filename" : "Icon-App-40x40@1x.png",
85 | "scale" : "1x"
86 | },
87 | {
88 | "size" : "40x40",
89 | "idiom" : "ipad",
90 | "filename" : "Icon-App-40x40@2x.png",
91 | "scale" : "2x"
92 | },
93 | {
94 | "size" : "76x76",
95 | "idiom" : "ipad",
96 | "filename" : "Icon-App-76x76@1x.png",
97 | "scale" : "1x"
98 | },
99 | {
100 | "size" : "76x76",
101 | "idiom" : "ipad",
102 | "filename" : "Icon-App-76x76@2x.png",
103 | "scale" : "2x"
104 | },
105 | {
106 | "size" : "83.5x83.5",
107 | "idiom" : "ipad",
108 | "filename" : "Icon-App-83.5x83.5@2x.png",
109 | "scale" : "2x"
110 | },
111 | {
112 | "size" : "1024x1024",
113 | "idiom" : "ios-marketing",
114 | "filename" : "Icon-App-1024x1024@1x.png",
115 | "scale" : "1x"
116 | }
117 | ],
118 | "info" : {
119 | "version" : 1,
120 | "author" : "xcode"
121 | }
122 | }
123 |
--------------------------------------------------------------------------------
/lib/ui/views/AddCameraStreamCard.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
3 | import 'package:muticam_dashboard/core/viewmodels/CameraStreamsViewModel.dart';
4 | import 'package:provider/provider.dart';
5 |
6 | class AddCameraStreamCard extends StatefulWidget {
7 | @override
8 | AddCameraStreamCardState createState() => AddCameraStreamCardState();
9 | }
10 |
11 | class AddCameraStreamCardState extends State {
12 | final _formKey = GlobalKey();
13 |
14 | String? title;
15 | String? streamURL;
16 |
17 | @override
18 | Widget build(BuildContext context) {
19 | var cameraStreamStoreProvider =
20 | Provider.of(context);
21 | return Scaffold(
22 | appBar: AppBar(
23 | title: Center(
24 | child: Text('Add Camera Stream'),
25 | ),
26 | ),
27 | body: Padding(
28 | padding: EdgeInsets.all(12),
29 | child: Form(
30 | key: _formKey,
31 | child: Column(
32 | children: [
33 | TextFormField(
34 | decoration: InputDecoration(
35 | border: InputBorder.none,
36 | hintText: 'Camera Stream Title',
37 | fillColor: Colors.grey[300],
38 | filled: true,
39 | ),
40 | validator: (value) {
41 | if (value!.isEmpty) {
42 | return 'Please enter Camera Stream Title';
43 | }
44 | return null;
45 | },
46 | onSaved: (value) => title = value),
47 | SizedBox(
48 | height: 16,
49 | ),
50 | TextFormField(
51 | decoration: InputDecoration(
52 | border: InputBorder.none,
53 | hintText: 'Stream URL',
54 | fillColor: Colors.grey[300],
55 | filled: true,
56 | ),
57 | validator: (value) {
58 | if (value!.isEmpty) {
59 | return 'Please enter a camera stream URL';
60 | }
61 | return null;
62 | },
63 | onSaved: (value) => streamURL = value),
64 | ElevatedButton(
65 | style: ElevatedButton.styleFrom(
66 | backgroundColor: Colors.blue, disabledForegroundColor: Colors
67 | .red.withOpacity(0.38), disabledBackgroundColor: Colors
68 | .red.withOpacity(0.12), // This can be used as a replacement for splashColor
69 | ),
70 | onPressed: () async {
71 | if (_formKey.currentState!.validate()) {
72 | _formKey.currentState!.save();
73 | await cameraStreamStoreProvider.addCameraStream(
74 | CameraStream(
75 | cameraStreamUrl: streamURL,
76 | cameraStreamTitle: title));
77 | Navigator.pop(context);
78 | }
79 | },
80 | child: Text('add camera stream url',
81 | style: TextStyle(color: Colors.white)),
82 | )
83 | ],
84 | ),
85 | ),
86 | ),
87 | );
88 | }
89 | }
90 |
--------------------------------------------------------------------------------
/lib/ui/views/ModifyCameraStream.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 | import 'package:muticam_dashboard/core/models/CameraStream.dart';
3 | import 'package:muticam_dashboard/core/viewmodels/CameraStreamsViewModel.dart';
4 | import 'package:provider/provider.dart';
5 |
6 | class ModifyCameraStream extends StatefulWidget {
7 | final CameraStream cameraStream;
8 |
9 | ModifyCameraStream({required this.cameraStream});
10 |
11 | @override
12 | ModifyCameraState createState() => ModifyCameraState();
13 | }
14 |
15 | class ModifyCameraState extends State {
16 | final _formKey = GlobalKey();
17 |
18 | String? title;
19 | String? streamURL;
20 | String? camera;
21 |
22 | @override
23 | Widget build(BuildContext context) {
24 | var cameraStreamStoreProvider =
25 | Provider.of(context);
26 | return Scaffold(
27 | appBar: AppBar(
28 | title: Center(
29 | child: Text('Modify Camera Stream Details'),
30 | ),
31 | ),
32 | body: Padding(
33 | padding: EdgeInsets.all(12),
34 | child: Form(
35 | key: _formKey,
36 | child: Column(
37 | children: [
38 | TextFormField(
39 | initialValue: widget.cameraStream.cameraStreamTitle,
40 | decoration: InputDecoration(
41 | border: InputBorder.none,
42 | hintText: 'Product Title',
43 | fillColor: Colors.grey[300],
44 | filled: true,
45 | ),
46 | validator: (value) {
47 | if (value!.isEmpty) {
48 | return 'Please enter Camera Stream Title';
49 | }
50 | return null;
51 | },
52 | onSaved: (value) => title = value),
53 | SizedBox(
54 | height: 16,
55 | ),
56 | TextFormField(
57 | initialValue: widget.cameraStream.cameraStreamUrl,
58 | decoration: InputDecoration(
59 | border: InputBorder.none,
60 | hintText: 'Camera Stream',
61 | fillColor: Colors.grey[300],
62 | filled: true,
63 | ),
64 | validator: (value) {
65 | if (value!.isEmpty) {
66 | return 'Please enter The Stream URL';
67 | }
68 | return null;
69 | },
70 | onSaved: (value) => streamURL = value),
71 | ElevatedButton(
72 | style: ElevatedButton.styleFrom(
73 | backgroundColor: Colors
74 | .blue, disabledForegroundColor: Colors
75 | .red.withOpacity(0.38), disabledBackgroundColor: Colors
76 | .red.withOpacity(0.12), // This can be used as a replacement for splashColor
77 | ),
78 | onPressed: () async {
79 | if (_formKey.currentState!.validate()) {
80 | _formKey.currentState!.save();
81 | await cameraStreamStoreProvider.updateCameraStreamByID(
82 | CameraStream(
83 | cameraStreamTitle: title,
84 | cameraStreamUrl: streamURL),
85 | widget.cameraStream.id);
86 | Navigator.pop(context);
87 | }
88 | },
89 | child: Text('Modify Camera Stream',
90 | style: TextStyle(color: Colors.white)),
91 | )
92 | ],
93 | ),
94 | ),
95 | ),
96 | );
97 | }
98 | }
99 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
43 |
49 |
50 |
51 |
52 |
53 |
63 |
65 |
71 |
72 |
73 |
74 |
80 |
82 |
88 |
89 |
90 |
91 |
93 |
94 |
97 |
98 |
99 |
--------------------------------------------------------------------------------
/pubspec.lock:
--------------------------------------------------------------------------------
1 | # Generated by pub
2 | # See https://dart.dev/tools/pub/glossary#lockfile
3 | packages:
4 | _flutterfire_internals:
5 | dependency: transitive
6 | description:
7 | name: _flutterfire_internals
8 | sha256: "1a5e13736d59235ce0139621b4bbe29bc89839e202409081bc667eb3cd20674c"
9 | url: "https://pub.dev"
10 | source: hosted
11 | version: "1.3.5"
12 | args:
13 | dependency: transitive
14 | description:
15 | name: args
16 | sha256: eef6c46b622e0494a36c5a12d10d77fb4e855501a91c1b9ef9339326e58f0596
17 | url: "https://pub.dev"
18 | source: hosted
19 | version: "2.4.2"
20 | async:
21 | dependency: transitive
22 | description:
23 | name: async
24 | sha256: "947bfcf187f74dbc5e146c9eb9c0f10c9f8b30743e341481c1e2ed3ecc18c20c"
25 | url: "https://pub.dev"
26 | source: hosted
27 | version: "2.11.0"
28 | boolean_selector:
29 | dependency: transitive
30 | description:
31 | name: boolean_selector
32 | sha256: "6cfb5af12253eaf2b368f07bacc5a80d1301a071c73360d746b7f2e32d762c66"
33 | url: "https://pub.dev"
34 | source: hosted
35 | version: "2.1.1"
36 | characters:
37 | dependency: transitive
38 | description:
39 | name: characters
40 | sha256: "04a925763edad70e8443c99234dc3328f442e811f1d8fd1a72f1c8ad0f69a605"
41 | url: "https://pub.dev"
42 | source: hosted
43 | version: "1.3.0"
44 | charcode:
45 | dependency: transitive
46 | description:
47 | name: charcode
48 | sha256: fb98c0f6d12c920a02ee2d998da788bca066ca5f148492b7085ee23372b12306
49 | url: "https://pub.dev"
50 | source: hosted
51 | version: "1.3.1"
52 | clock:
53 | dependency: transitive
54 | description:
55 | name: clock
56 | sha256: cb6d7f03e1de671e34607e909a7213e31d7752be4fb66a86d29fe1eb14bfb5cf
57 | url: "https://pub.dev"
58 | source: hosted
59 | version: "1.1.1"
60 | cloud_firestore:
61 | dependency: "direct main"
62 | description:
63 | name: cloud_firestore
64 | sha256: "21cffe06a212015950010ecb9adbf1eb9acaf294f2bd159bde7980aee37c997b"
65 | url: "https://pub.dev"
66 | source: hosted
67 | version: "4.9.0"
68 | cloud_firestore_platform_interface:
69 | dependency: transitive
70 | description:
71 | name: cloud_firestore_platform_interface
72 | sha256: "5749b81aea93afdce220e02d34369162010d210011054ac494b2c38c4e9ebeb7"
73 | url: "https://pub.dev"
74 | source: hosted
75 | version: "5.16.0"
76 | cloud_firestore_web:
77 | dependency: transitive
78 | description:
79 | name: cloud_firestore_web
80 | sha256: fef99ad0599e983092adb1bb01f14a596dba601a7a8efaaffd7b2721d64e2c51
81 | url: "https://pub.dev"
82 | source: hosted
83 | version: "3.7.0"
84 | collection:
85 | dependency: transitive
86 | description:
87 | name: collection
88 | sha256: f092b211a4319e98e5ff58223576de6c2803db36221657b46c82574721240687
89 | url: "https://pub.dev"
90 | source: hosted
91 | version: "1.17.2"
92 | cupertino_icons:
93 | dependency: "direct main"
94 | description:
95 | name: cupertino_icons
96 | sha256: e35129dc44c9118cee2a5603506d823bab99c68393879edb440e0090d07586be
97 | url: "https://pub.dev"
98 | source: hosted
99 | version: "1.0.5"
100 | fake_async:
101 | dependency: transitive
102 | description:
103 | name: fake_async
104 | sha256: "511392330127add0b769b75a987850d136345d9227c6b94c96a04cf4a391bf78"
105 | url: "https://pub.dev"
106 | source: hosted
107 | version: "1.3.1"
108 | firebase_core:
109 | dependency: "direct main"
110 | description:
111 | name: firebase_core
112 | sha256: c78132175edda4bc532a71e01a32964e4b4fcf53de7853a422d96dac3725f389
113 | url: "https://pub.dev"
114 | source: hosted
115 | version: "2.15.1"
116 | firebase_core_platform_interface:
117 | dependency: transitive
118 | description:
119 | name: firebase_core_platform_interface
120 | sha256: b63e3be6c96ef5c33bdec1aab23c91eb00696f6452f0519401d640938c94cba2
121 | url: "https://pub.dev"
122 | source: hosted
123 | version: "4.8.0"
124 | firebase_core_web:
125 | dependency: transitive
126 | description:
127 | name: firebase_core_web
128 | sha256: "4cf4d2161530332ddc3c562f19823fb897ff37a9a774090d28df99f47370e973"
129 | url: "https://pub.dev"
130 | source: hosted
131 | version: "2.7.0"
132 | flutter:
133 | dependency: "direct main"
134 | description: flutter
135 | source: sdk
136 | version: "0.0.0"
137 | flutter_svg:
138 | dependency: "direct main"
139 | description:
140 | name: flutter_svg
141 | sha256: "8c5d68a82add3ca76d792f058b186a0599414f279f00ece4830b9b231b570338"
142 | url: "https://pub.dev"
143 | source: hosted
144 | version: "2.0.7"
145 | flutter_test:
146 | dependency: "direct dev"
147 | description: flutter
148 | source: sdk
149 | version: "0.0.0"
150 | flutter_vlc_player:
151 | dependency: "direct main"
152 | description:
153 | name: flutter_vlc_player
154 | sha256: "0fbe714db09646617e46610195f5d81086d41d065a6301f2bb728a07f09f96b9"
155 | url: "https://pub.dev"
156 | source: hosted
157 | version: "7.2.0"
158 | flutter_vlc_player_platform_interface:
159 | dependency: transitive
160 | description:
161 | name: flutter_vlc_player_platform_interface
162 | sha256: "8562d5c31213a44cc5e009cb6776a030e0a0c8cbfb825da4fdf27b730170563c"
163 | url: "https://pub.dev"
164 | source: hosted
165 | version: "2.0.2"
166 | flutter_web_plugins:
167 | dependency: transitive
168 | description: flutter
169 | source: sdk
170 | version: "0.0.0"
171 | get_it:
172 | dependency: "direct main"
173 | description:
174 | name: get_it
175 | sha256: "529de303c739fca98cd7ece5fca500d8ff89649f1bb4b4e94fb20954abcd7468"
176 | url: "https://pub.dev"
177 | source: hosted
178 | version: "7.6.0"
179 | http:
180 | dependency: "direct main"
181 | description:
182 | name: http
183 | sha256: "759d1a329847dd0f39226c688d3e06a6b8679668e350e2891a6474f8b4bb8525"
184 | url: "https://pub.dev"
185 | source: hosted
186 | version: "1.1.0"
187 | http_parser:
188 | dependency: transitive
189 | description:
190 | name: http_parser
191 | sha256: e362d639ba3bc07d5a71faebb98cde68c05bfbcfbbb444b60b6f60bb67719185
192 | url: "https://pub.dev"
193 | source: hosted
194 | version: "4.0.0"
195 | js:
196 | dependency: transitive
197 | description:
198 | name: js
199 | sha256: a5e201311cb08bf3912ebbe9a2be096e182d703f881136ec1e81a2338a9e120d
200 | url: "https://pub.dev"
201 | source: hosted
202 | version: "0.6.4"
203 | matcher:
204 | dependency: transitive
205 | description:
206 | name: matcher
207 | sha256: "1803e76e6653768d64ed8ff2e1e67bea3ad4b923eb5c56a295c3e634bad5960e"
208 | url: "https://pub.dev"
209 | source: hosted
210 | version: "0.12.16"
211 | material_color_utilities:
212 | dependency: transitive
213 | description:
214 | name: material_color_utilities
215 | sha256: "9528f2f296073ff54cb9fee677df673ace1218163c3bc7628093e7eed5203d41"
216 | url: "https://pub.dev"
217 | source: hosted
218 | version: "0.5.0"
219 | meta:
220 | dependency: transitive
221 | description:
222 | name: meta
223 | sha256: "3c74dbf8763d36539f114c799d8a2d87343b5067e9d796ca22b5eb8437090ee3"
224 | url: "https://pub.dev"
225 | source: hosted
226 | version: "1.9.1"
227 | nested:
228 | dependency: transitive
229 | description:
230 | name: nested
231 | sha256: "03bac4c528c64c95c722ec99280375a6f2fc708eec17c7b3f07253b626cd2a20"
232 | url: "https://pub.dev"
233 | source: hosted
234 | version: "1.0.0"
235 | path:
236 | dependency: transitive
237 | description:
238 | name: path
239 | sha256: "8829d8a55c13fc0e37127c29fedf290c102f4e40ae94ada574091fe0ff96c917"
240 | url: "https://pub.dev"
241 | source: hosted
242 | version: "1.8.3"
243 | path_parsing:
244 | dependency: transitive
245 | description:
246 | name: path_parsing
247 | sha256: e3e67b1629e6f7e8100b367d3db6ba6af4b1f0bb80f64db18ef1fbabd2fa9ccf
248 | url: "https://pub.dev"
249 | source: hosted
250 | version: "1.0.1"
251 | petitparser:
252 | dependency: transitive
253 | description:
254 | name: petitparser
255 | sha256: cb3798bef7fc021ac45b308f4b51208a152792445cce0448c9a4ba5879dd8750
256 | url: "https://pub.dev"
257 | source: hosted
258 | version: "5.4.0"
259 | plugin_platform_interface:
260 | dependency: transitive
261 | description:
262 | name: plugin_platform_interface
263 | sha256: "43798d895c929056255600343db8f049921cbec94d31ec87f1dc5c16c01935dd"
264 | url: "https://pub.dev"
265 | source: hosted
266 | version: "2.1.5"
267 | provider:
268 | dependency: "direct main"
269 | description:
270 | name: provider
271 | sha256: cdbe7530b12ecd9eb455bdaa2fcb8d4dad22e80b8afb4798b41479d5ce26847f
272 | url: "https://pub.dev"
273 | source: hosted
274 | version: "6.0.5"
275 | sky_engine:
276 | dependency: transitive
277 | description: flutter
278 | source: sdk
279 | version: "0.0.99"
280 | source_span:
281 | dependency: transitive
282 | description:
283 | name: source_span
284 | sha256: "53e943d4206a5e30df338fd4c6e7a077e02254531b138a15aec3bd143c1a8b3c"
285 | url: "https://pub.dev"
286 | source: hosted
287 | version: "1.10.0"
288 | stack_trace:
289 | dependency: transitive
290 | description:
291 | name: stack_trace
292 | sha256: c3c7d8edb15bee7f0f74debd4b9c5f3c2ea86766fe4178eb2a18eb30a0bdaed5
293 | url: "https://pub.dev"
294 | source: hosted
295 | version: "1.11.0"
296 | stream_channel:
297 | dependency: transitive
298 | description:
299 | name: stream_channel
300 | sha256: "83615bee9045c1d322bbbd1ba209b7a749c2cbcdcb3fdd1df8eb488b3279c1c8"
301 | url: "https://pub.dev"
302 | source: hosted
303 | version: "2.1.1"
304 | string_scanner:
305 | dependency: transitive
306 | description:
307 | name: string_scanner
308 | sha256: "556692adab6cfa87322a115640c11f13cb77b3f076ddcc5d6ae3c20242bedcde"
309 | url: "https://pub.dev"
310 | source: hosted
311 | version: "1.2.0"
312 | term_glyph:
313 | dependency: transitive
314 | description:
315 | name: term_glyph
316 | sha256: a29248a84fbb7c79282b40b8c72a1209db169a2e0542bce341da992fe1bc7e84
317 | url: "https://pub.dev"
318 | source: hosted
319 | version: "1.2.1"
320 | test_api:
321 | dependency: transitive
322 | description:
323 | name: test_api
324 | sha256: "75760ffd7786fffdfb9597c35c5b27eaeec82be8edfb6d71d32651128ed7aab8"
325 | url: "https://pub.dev"
326 | source: hosted
327 | version: "0.6.0"
328 | typed_data:
329 | dependency: transitive
330 | description:
331 | name: typed_data
332 | sha256: "53bdf7e979cfbf3e28987552fd72f637e63f3c8724c9e56d9246942dc2fa36ee"
333 | url: "https://pub.dev"
334 | source: hosted
335 | version: "1.3.0"
336 | vector_graphics:
337 | dependency: transitive
338 | description:
339 | name: vector_graphics
340 | sha256: "670f6e07aca990b4a2bcdc08a784193c4ccdd1932620244c3a86bb72a0eac67f"
341 | url: "https://pub.dev"
342 | source: hosted
343 | version: "1.1.7"
344 | vector_graphics_codec:
345 | dependency: transitive
346 | description:
347 | name: vector_graphics_codec
348 | sha256: "7451721781d967db9933b63f5733b1c4533022c0ba373a01bdd79d1a5457f69f"
349 | url: "https://pub.dev"
350 | source: hosted
351 | version: "1.1.7"
352 | vector_graphics_compiler:
353 | dependency: transitive
354 | description:
355 | name: vector_graphics_compiler
356 | sha256: "80a13c613c8bde758b1464a1755a7b3a8f2b6cec61fbf0f5a53c94c30f03ba2e"
357 | url: "https://pub.dev"
358 | source: hosted
359 | version: "1.1.7"
360 | vector_math:
361 | dependency: transitive
362 | description:
363 | name: vector_math
364 | sha256: "80b3257d1492ce4d091729e3a67a60407d227c27241d6927be0130c98e741803"
365 | url: "https://pub.dev"
366 | source: hosted
367 | version: "2.1.4"
368 | web:
369 | dependency: transitive
370 | description:
371 | name: web
372 | sha256: dc8ccd225a2005c1be616fe02951e2e342092edf968cf0844220383757ef8f10
373 | url: "https://pub.dev"
374 | source: hosted
375 | version: "0.1.4-beta"
376 | xml:
377 | dependency: transitive
378 | description:
379 | name: xml
380 | sha256: "5bc72e1e45e941d825fd7468b9b4cc3b9327942649aeb6fc5cdbf135f0a86e84"
381 | url: "https://pub.dev"
382 | source: hosted
383 | version: "6.3.0"
384 | sdks:
385 | dart: ">=3.1.0-185.0.dev <4.0.0"
386 | flutter: ">=3.7.0-0"
387 |
--------------------------------------------------------------------------------
/ios/Podfile.lock:
--------------------------------------------------------------------------------
1 | PODS:
2 | - abseil/algorithm (1.20220623.0):
3 | - abseil/algorithm/algorithm (= 1.20220623.0)
4 | - abseil/algorithm/container (= 1.20220623.0)
5 | - abseil/algorithm/algorithm (1.20220623.0):
6 | - abseil/base/config
7 | - abseil/algorithm/container (1.20220623.0):
8 | - abseil/algorithm/algorithm
9 | - abseil/base/core_headers
10 | - abseil/meta/type_traits
11 | - abseil/base (1.20220623.0):
12 | - abseil/base/atomic_hook (= 1.20220623.0)
13 | - abseil/base/base (= 1.20220623.0)
14 | - abseil/base/base_internal (= 1.20220623.0)
15 | - abseil/base/config (= 1.20220623.0)
16 | - abseil/base/core_headers (= 1.20220623.0)
17 | - abseil/base/dynamic_annotations (= 1.20220623.0)
18 | - abseil/base/endian (= 1.20220623.0)
19 | - abseil/base/errno_saver (= 1.20220623.0)
20 | - abseil/base/fast_type_id (= 1.20220623.0)
21 | - abseil/base/log_severity (= 1.20220623.0)
22 | - abseil/base/malloc_internal (= 1.20220623.0)
23 | - abseil/base/prefetch (= 1.20220623.0)
24 | - abseil/base/pretty_function (= 1.20220623.0)
25 | - abseil/base/raw_logging_internal (= 1.20220623.0)
26 | - abseil/base/spinlock_wait (= 1.20220623.0)
27 | - abseil/base/strerror (= 1.20220623.0)
28 | - abseil/base/throw_delegate (= 1.20220623.0)
29 | - abseil/base/atomic_hook (1.20220623.0):
30 | - abseil/base/config
31 | - abseil/base/core_headers
32 | - abseil/base/base (1.20220623.0):
33 | - abseil/base/atomic_hook
34 | - abseil/base/base_internal
35 | - abseil/base/config
36 | - abseil/base/core_headers
37 | - abseil/base/dynamic_annotations
38 | - abseil/base/log_severity
39 | - abseil/base/raw_logging_internal
40 | - abseil/base/spinlock_wait
41 | - abseil/meta/type_traits
42 | - abseil/base/base_internal (1.20220623.0):
43 | - abseil/base/config
44 | - abseil/meta/type_traits
45 | - abseil/base/config (1.20220623.0)
46 | - abseil/base/core_headers (1.20220623.0):
47 | - abseil/base/config
48 | - abseil/base/dynamic_annotations (1.20220623.0):
49 | - abseil/base/config
50 | - abseil/base/core_headers
51 | - abseil/base/endian (1.20220623.0):
52 | - abseil/base/base
53 | - abseil/base/config
54 | - abseil/base/core_headers
55 | - abseil/base/errno_saver (1.20220623.0):
56 | - abseil/base/config
57 | - abseil/base/fast_type_id (1.20220623.0):
58 | - abseil/base/config
59 | - abseil/base/log_severity (1.20220623.0):
60 | - abseil/base/config
61 | - abseil/base/core_headers
62 | - abseil/base/malloc_internal (1.20220623.0):
63 | - abseil/base/base
64 | - abseil/base/base_internal
65 | - abseil/base/config
66 | - abseil/base/core_headers
67 | - abseil/base/dynamic_annotations
68 | - abseil/base/raw_logging_internal
69 | - abseil/base/prefetch (1.20220623.0):
70 | - abseil/base/config
71 | - abseil/base/pretty_function (1.20220623.0)
72 | - abseil/base/raw_logging_internal (1.20220623.0):
73 | - abseil/base/atomic_hook
74 | - abseil/base/config
75 | - abseil/base/core_headers
76 | - abseil/base/errno_saver
77 | - abseil/base/log_severity
78 | - abseil/base/spinlock_wait (1.20220623.0):
79 | - abseil/base/base_internal
80 | - abseil/base/core_headers
81 | - abseil/base/errno_saver
82 | - abseil/base/strerror (1.20220623.0):
83 | - abseil/base/config
84 | - abseil/base/core_headers
85 | - abseil/base/errno_saver
86 | - abseil/base/throw_delegate (1.20220623.0):
87 | - abseil/base/config
88 | - abseil/base/raw_logging_internal
89 | - abseil/cleanup/cleanup (1.20220623.0):
90 | - abseil/base/config
91 | - abseil/base/core_headers
92 | - abseil/cleanup/cleanup_internal
93 | - abseil/cleanup/cleanup_internal (1.20220623.0):
94 | - abseil/base/base_internal
95 | - abseil/base/core_headers
96 | - abseil/utility/utility
97 | - abseil/container/common (1.20220623.0):
98 | - abseil/meta/type_traits
99 | - abseil/types/optional
100 | - abseil/container/compressed_tuple (1.20220623.0):
101 | - abseil/utility/utility
102 | - abseil/container/container_memory (1.20220623.0):
103 | - abseil/base/config
104 | - abseil/memory/memory
105 | - abseil/meta/type_traits
106 | - abseil/utility/utility
107 | - abseil/container/fixed_array (1.20220623.0):
108 | - abseil/algorithm/algorithm
109 | - abseil/base/config
110 | - abseil/base/core_headers
111 | - abseil/base/dynamic_annotations
112 | - abseil/base/throw_delegate
113 | - abseil/container/compressed_tuple
114 | - abseil/memory/memory
115 | - abseil/container/flat_hash_map (1.20220623.0):
116 | - abseil/algorithm/container
117 | - abseil/base/core_headers
118 | - abseil/container/container_memory
119 | - abseil/container/hash_function_defaults
120 | - abseil/container/raw_hash_map
121 | - abseil/memory/memory
122 | - abseil/container/flat_hash_set (1.20220623.0):
123 | - abseil/algorithm/container
124 | - abseil/base/core_headers
125 | - abseil/container/container_memory
126 | - abseil/container/hash_function_defaults
127 | - abseil/container/raw_hash_set
128 | - abseil/memory/memory
129 | - abseil/container/hash_function_defaults (1.20220623.0):
130 | - abseil/base/config
131 | - abseil/hash/hash
132 | - abseil/strings/cord
133 | - abseil/strings/strings
134 | - abseil/container/hash_policy_traits (1.20220623.0):
135 | - abseil/meta/type_traits
136 | - abseil/container/hashtable_debug_hooks (1.20220623.0):
137 | - abseil/base/config
138 | - abseil/container/hashtablez_sampler (1.20220623.0):
139 | - abseil/base/base
140 | - abseil/base/config
141 | - abseil/base/core_headers
142 | - abseil/debugging/stacktrace
143 | - abseil/memory/memory
144 | - abseil/profiling/exponential_biased
145 | - abseil/profiling/sample_recorder
146 | - abseil/synchronization/synchronization
147 | - abseil/utility/utility
148 | - abseil/container/inlined_vector (1.20220623.0):
149 | - abseil/algorithm/algorithm
150 | - abseil/base/core_headers
151 | - abseil/base/throw_delegate
152 | - abseil/container/inlined_vector_internal
153 | - abseil/memory/memory
154 | - abseil/container/inlined_vector_internal (1.20220623.0):
155 | - abseil/base/core_headers
156 | - abseil/container/compressed_tuple
157 | - abseil/memory/memory
158 | - abseil/meta/type_traits
159 | - abseil/types/span
160 | - abseil/container/layout (1.20220623.0):
161 | - abseil/base/config
162 | - abseil/base/core_headers
163 | - abseil/meta/type_traits
164 | - abseil/strings/strings
165 | - abseil/types/span
166 | - abseil/utility/utility
167 | - abseil/container/raw_hash_map (1.20220623.0):
168 | - abseil/base/throw_delegate
169 | - abseil/container/container_memory
170 | - abseil/container/raw_hash_set
171 | - abseil/container/raw_hash_set (1.20220623.0):
172 | - abseil/base/config
173 | - abseil/base/core_headers
174 | - abseil/base/endian
175 | - abseil/base/prefetch
176 | - abseil/container/common
177 | - abseil/container/compressed_tuple
178 | - abseil/container/container_memory
179 | - abseil/container/hash_policy_traits
180 | - abseil/container/hashtable_debug_hooks
181 | - abseil/container/hashtablez_sampler
182 | - abseil/memory/memory
183 | - abseil/meta/type_traits
184 | - abseil/numeric/bits
185 | - abseil/utility/utility
186 | - abseil/debugging/debugging_internal (1.20220623.0):
187 | - abseil/base/config
188 | - abseil/base/core_headers
189 | - abseil/base/dynamic_annotations
190 | - abseil/base/errno_saver
191 | - abseil/base/raw_logging_internal
192 | - abseil/debugging/demangle_internal (1.20220623.0):
193 | - abseil/base/base
194 | - abseil/base/config
195 | - abseil/base/core_headers
196 | - abseil/debugging/stacktrace (1.20220623.0):
197 | - abseil/base/config
198 | - abseil/base/core_headers
199 | - abseil/debugging/debugging_internal
200 | - abseil/debugging/symbolize (1.20220623.0):
201 | - abseil/base/base
202 | - abseil/base/config
203 | - abseil/base/core_headers
204 | - abseil/base/dynamic_annotations
205 | - abseil/base/malloc_internal
206 | - abseil/base/raw_logging_internal
207 | - abseil/debugging/debugging_internal
208 | - abseil/debugging/demangle_internal
209 | - abseil/strings/strings
210 | - abseil/functional/any_invocable (1.20220623.0):
211 | - abseil/base/base_internal
212 | - abseil/base/config
213 | - abseil/base/core_headers
214 | - abseil/meta/type_traits
215 | - abseil/utility/utility
216 | - abseil/functional/bind_front (1.20220623.0):
217 | - abseil/base/base_internal
218 | - abseil/container/compressed_tuple
219 | - abseil/meta/type_traits
220 | - abseil/utility/utility
221 | - abseil/functional/function_ref (1.20220623.0):
222 | - abseil/base/base_internal
223 | - abseil/base/core_headers
224 | - abseil/meta/type_traits
225 | - abseil/hash/city (1.20220623.0):
226 | - abseil/base/config
227 | - abseil/base/core_headers
228 | - abseil/base/endian
229 | - abseil/hash/hash (1.20220623.0):
230 | - abseil/base/config
231 | - abseil/base/core_headers
232 | - abseil/base/endian
233 | - abseil/container/fixed_array
234 | - abseil/functional/function_ref
235 | - abseil/hash/city
236 | - abseil/hash/low_level_hash
237 | - abseil/meta/type_traits
238 | - abseil/numeric/int128
239 | - abseil/strings/strings
240 | - abseil/types/optional
241 | - abseil/types/variant
242 | - abseil/utility/utility
243 | - abseil/hash/low_level_hash (1.20220623.0):
244 | - abseil/base/config
245 | - abseil/base/endian
246 | - abseil/numeric/bits
247 | - abseil/numeric/int128
248 | - abseil/memory (1.20220623.0):
249 | - abseil/memory/memory (= 1.20220623.0)
250 | - abseil/memory/memory (1.20220623.0):
251 | - abseil/base/core_headers
252 | - abseil/meta/type_traits
253 | - abseil/meta (1.20220623.0):
254 | - abseil/meta/type_traits (= 1.20220623.0)
255 | - abseil/meta/type_traits (1.20220623.0):
256 | - abseil/base/config
257 | - abseil/numeric/bits (1.20220623.0):
258 | - abseil/base/config
259 | - abseil/base/core_headers
260 | - abseil/numeric/int128 (1.20220623.0):
261 | - abseil/base/config
262 | - abseil/base/core_headers
263 | - abseil/numeric/bits
264 | - abseil/numeric/representation (1.20220623.0):
265 | - abseil/base/config
266 | - abseil/profiling/exponential_biased (1.20220623.0):
267 | - abseil/base/config
268 | - abseil/base/core_headers
269 | - abseil/profiling/sample_recorder (1.20220623.0):
270 | - abseil/base/config
271 | - abseil/base/core_headers
272 | - abseil/synchronization/synchronization
273 | - abseil/time/time
274 | - abseil/random/distributions (1.20220623.0):
275 | - abseil/base/base_internal
276 | - abseil/base/config
277 | - abseil/base/core_headers
278 | - abseil/meta/type_traits
279 | - abseil/numeric/bits
280 | - abseil/random/internal/distribution_caller
281 | - abseil/random/internal/fast_uniform_bits
282 | - abseil/random/internal/fastmath
283 | - abseil/random/internal/generate_real
284 | - abseil/random/internal/iostream_state_saver
285 | - abseil/random/internal/traits
286 | - abseil/random/internal/uniform_helper
287 | - abseil/random/internal/wide_multiply
288 | - abseil/strings/strings
289 | - abseil/random/internal/distribution_caller (1.20220623.0):
290 | - abseil/base/config
291 | - abseil/base/fast_type_id
292 | - abseil/utility/utility
293 | - abseil/random/internal/fast_uniform_bits (1.20220623.0):
294 | - abseil/base/config
295 | - abseil/meta/type_traits
296 | - abseil/random/internal/traits
297 | - abseil/random/internal/fastmath (1.20220623.0):
298 | - abseil/numeric/bits
299 | - abseil/random/internal/generate_real (1.20220623.0):
300 | - abseil/meta/type_traits
301 | - abseil/numeric/bits
302 | - abseil/random/internal/fastmath
303 | - abseil/random/internal/traits
304 | - abseil/random/internal/iostream_state_saver (1.20220623.0):
305 | - abseil/meta/type_traits
306 | - abseil/numeric/int128
307 | - abseil/random/internal/nonsecure_base (1.20220623.0):
308 | - abseil/base/core_headers
309 | - abseil/container/inlined_vector
310 | - abseil/meta/type_traits
311 | - abseil/random/internal/pool_urbg
312 | - abseil/random/internal/salted_seed_seq
313 | - abseil/random/internal/seed_material
314 | - abseil/types/span
315 | - abseil/random/internal/pcg_engine (1.20220623.0):
316 | - abseil/base/config
317 | - abseil/meta/type_traits
318 | - abseil/numeric/bits
319 | - abseil/numeric/int128
320 | - abseil/random/internal/fastmath
321 | - abseil/random/internal/iostream_state_saver
322 | - abseil/random/internal/platform (1.20220623.0):
323 | - abseil/base/config
324 | - abseil/random/internal/pool_urbg (1.20220623.0):
325 | - abseil/base/base
326 | - abseil/base/config
327 | - abseil/base/core_headers
328 | - abseil/base/endian
329 | - abseil/base/raw_logging_internal
330 | - abseil/random/internal/randen
331 | - abseil/random/internal/seed_material
332 | - abseil/random/internal/traits
333 | - abseil/random/seed_gen_exception
334 | - abseil/types/span
335 | - abseil/random/internal/randen (1.20220623.0):
336 | - abseil/base/raw_logging_internal
337 | - abseil/random/internal/platform
338 | - abseil/random/internal/randen_hwaes
339 | - abseil/random/internal/randen_slow
340 | - abseil/random/internal/randen_engine (1.20220623.0):
341 | - abseil/base/endian
342 | - abseil/meta/type_traits
343 | - abseil/random/internal/iostream_state_saver
344 | - abseil/random/internal/randen
345 | - abseil/random/internal/randen_hwaes (1.20220623.0):
346 | - abseil/base/config
347 | - abseil/random/internal/platform
348 | - abseil/random/internal/randen_hwaes_impl
349 | - abseil/random/internal/randen_hwaes_impl (1.20220623.0):
350 | - abseil/base/config
351 | - abseil/base/core_headers
352 | - abseil/numeric/int128
353 | - abseil/random/internal/platform
354 | - abseil/random/internal/randen_slow (1.20220623.0):
355 | - abseil/base/config
356 | - abseil/base/core_headers
357 | - abseil/base/endian
358 | - abseil/numeric/int128
359 | - abseil/random/internal/platform
360 | - abseil/random/internal/salted_seed_seq (1.20220623.0):
361 | - abseil/container/inlined_vector
362 | - abseil/meta/type_traits
363 | - abseil/random/internal/seed_material
364 | - abseil/types/optional
365 | - abseil/types/span
366 | - abseil/random/internal/seed_material (1.20220623.0):
367 | - abseil/base/core_headers
368 | - abseil/base/dynamic_annotations
369 | - abseil/base/raw_logging_internal
370 | - abseil/random/internal/fast_uniform_bits
371 | - abseil/strings/strings
372 | - abseil/types/optional
373 | - abseil/types/span
374 | - abseil/random/internal/traits (1.20220623.0):
375 | - abseil/base/config
376 | - abseil/numeric/bits
377 | - abseil/numeric/int128
378 | - abseil/random/internal/uniform_helper (1.20220623.0):
379 | - abseil/base/config
380 | - abseil/meta/type_traits
381 | - abseil/numeric/int128
382 | - abseil/random/internal/traits
383 | - abseil/random/internal/wide_multiply (1.20220623.0):
384 | - abseil/base/config
385 | - abseil/numeric/bits
386 | - abseil/numeric/int128
387 | - abseil/random/internal/traits
388 | - abseil/random/random (1.20220623.0):
389 | - abseil/random/distributions
390 | - abseil/random/internal/nonsecure_base
391 | - abseil/random/internal/pcg_engine
392 | - abseil/random/internal/pool_urbg
393 | - abseil/random/internal/randen_engine
394 | - abseil/random/seed_sequences
395 | - abseil/random/seed_gen_exception (1.20220623.0):
396 | - abseil/base/config
397 | - abseil/random/seed_sequences (1.20220623.0):
398 | - abseil/base/config
399 | - abseil/random/internal/pool_urbg
400 | - abseil/random/internal/salted_seed_seq
401 | - abseil/random/internal/seed_material
402 | - abseil/random/seed_gen_exception
403 | - abseil/types/span
404 | - abseil/status/status (1.20220623.0):
405 | - abseil/base/atomic_hook
406 | - abseil/base/core_headers
407 | - abseil/base/raw_logging_internal
408 | - abseil/base/strerror
409 | - abseil/container/inlined_vector
410 | - abseil/debugging/stacktrace
411 | - abseil/debugging/symbolize
412 | - abseil/functional/function_ref
413 | - abseil/strings/cord
414 | - abseil/strings/str_format
415 | - abseil/strings/strings
416 | - abseil/types/optional
417 | - abseil/status/statusor (1.20220623.0):
418 | - abseil/base/base
419 | - abseil/base/core_headers
420 | - abseil/base/raw_logging_internal
421 | - abseil/meta/type_traits
422 | - abseil/status/status
423 | - abseil/strings/strings
424 | - abseil/types/variant
425 | - abseil/utility/utility
426 | - abseil/strings/cord (1.20220623.0):
427 | - abseil/base/base
428 | - abseil/base/config
429 | - abseil/base/core_headers
430 | - abseil/base/endian
431 | - abseil/base/raw_logging_internal
432 | - abseil/container/fixed_array
433 | - abseil/container/inlined_vector
434 | - abseil/functional/function_ref
435 | - abseil/meta/type_traits
436 | - abseil/numeric/bits
437 | - abseil/strings/cord_internal
438 | - abseil/strings/cordz_functions
439 | - abseil/strings/cordz_info
440 | - abseil/strings/cordz_statistics
441 | - abseil/strings/cordz_update_scope
442 | - abseil/strings/cordz_update_tracker
443 | - abseil/strings/internal
444 | - abseil/strings/str_format
445 | - abseil/strings/strings
446 | - abseil/types/optional
447 | - abseil/types/span
448 | - abseil/strings/cord_internal (1.20220623.0):
449 | - abseil/base/base_internal
450 | - abseil/base/config
451 | - abseil/base/core_headers
452 | - abseil/base/endian
453 | - abseil/base/raw_logging_internal
454 | - abseil/base/throw_delegate
455 | - abseil/container/compressed_tuple
456 | - abseil/container/inlined_vector
457 | - abseil/container/layout
458 | - abseil/functional/function_ref
459 | - abseil/meta/type_traits
460 | - abseil/strings/strings
461 | - abseil/types/span
462 | - abseil/strings/cordz_functions (1.20220623.0):
463 | - abseil/base/config
464 | - abseil/base/core_headers
465 | - abseil/base/raw_logging_internal
466 | - abseil/profiling/exponential_biased
467 | - abseil/strings/cordz_handle (1.20220623.0):
468 | - abseil/base/base
469 | - abseil/base/config
470 | - abseil/base/raw_logging_internal
471 | - abseil/synchronization/synchronization
472 | - abseil/strings/cordz_info (1.20220623.0):
473 | - abseil/base/base
474 | - abseil/base/config
475 | - abseil/base/core_headers
476 | - abseil/base/raw_logging_internal
477 | - abseil/container/inlined_vector
478 | - abseil/debugging/stacktrace
479 | - abseil/strings/cord_internal
480 | - abseil/strings/cordz_functions
481 | - abseil/strings/cordz_handle
482 | - abseil/strings/cordz_statistics
483 | - abseil/strings/cordz_update_tracker
484 | - abseil/synchronization/synchronization
485 | - abseil/types/span
486 | - abseil/strings/cordz_statistics (1.20220623.0):
487 | - abseil/base/config
488 | - abseil/strings/cordz_update_tracker
489 | - abseil/strings/cordz_update_scope (1.20220623.0):
490 | - abseil/base/config
491 | - abseil/base/core_headers
492 | - abseil/strings/cord_internal
493 | - abseil/strings/cordz_info
494 | - abseil/strings/cordz_update_tracker
495 | - abseil/strings/cordz_update_tracker (1.20220623.0):
496 | - abseil/base/config
497 | - abseil/strings/internal (1.20220623.0):
498 | - abseil/base/config
499 | - abseil/base/core_headers
500 | - abseil/base/endian
501 | - abseil/base/raw_logging_internal
502 | - abseil/meta/type_traits
503 | - abseil/strings/str_format (1.20220623.0):
504 | - abseil/strings/str_format_internal
505 | - abseil/strings/str_format_internal (1.20220623.0):
506 | - abseil/base/config
507 | - abseil/base/core_headers
508 | - abseil/functional/function_ref
509 | - abseil/meta/type_traits
510 | - abseil/numeric/bits
511 | - abseil/numeric/int128
512 | - abseil/numeric/representation
513 | - abseil/strings/strings
514 | - abseil/types/optional
515 | - abseil/types/span
516 | - abseil/utility/utility
517 | - abseil/strings/strings (1.20220623.0):
518 | - abseil/base/base
519 | - abseil/base/config
520 | - abseil/base/core_headers
521 | - abseil/base/endian
522 | - abseil/base/raw_logging_internal
523 | - abseil/base/throw_delegate
524 | - abseil/memory/memory
525 | - abseil/meta/type_traits
526 | - abseil/numeric/bits
527 | - abseil/numeric/int128
528 | - abseil/strings/internal
529 | - abseil/synchronization/graphcycles_internal (1.20220623.0):
530 | - abseil/base/base
531 | - abseil/base/base_internal
532 | - abseil/base/config
533 | - abseil/base/core_headers
534 | - abseil/base/malloc_internal
535 | - abseil/base/raw_logging_internal
536 | - abseil/synchronization/kernel_timeout_internal (1.20220623.0):
537 | - abseil/base/core_headers
538 | - abseil/base/raw_logging_internal
539 | - abseil/time/time
540 | - abseil/synchronization/synchronization (1.20220623.0):
541 | - abseil/base/atomic_hook
542 | - abseil/base/base
543 | - abseil/base/base_internal
544 | - abseil/base/config
545 | - abseil/base/core_headers
546 | - abseil/base/dynamic_annotations
547 | - abseil/base/malloc_internal
548 | - abseil/base/raw_logging_internal
549 | - abseil/debugging/stacktrace
550 | - abseil/debugging/symbolize
551 | - abseil/synchronization/graphcycles_internal
552 | - abseil/synchronization/kernel_timeout_internal
553 | - abseil/time/time
554 | - abseil/time (1.20220623.0):
555 | - abseil/time/internal (= 1.20220623.0)
556 | - abseil/time/time (= 1.20220623.0)
557 | - abseil/time/internal (1.20220623.0):
558 | - abseil/time/internal/cctz (= 1.20220623.0)
559 | - abseil/time/internal/cctz (1.20220623.0):
560 | - abseil/time/internal/cctz/civil_time (= 1.20220623.0)
561 | - abseil/time/internal/cctz/time_zone (= 1.20220623.0)
562 | - abseil/time/internal/cctz/civil_time (1.20220623.0):
563 | - abseil/base/config
564 | - abseil/time/internal/cctz/time_zone (1.20220623.0):
565 | - abseil/base/config
566 | - abseil/time/internal/cctz/civil_time
567 | - abseil/time/time (1.20220623.0):
568 | - abseil/base/base
569 | - abseil/base/core_headers
570 | - abseil/base/raw_logging_internal
571 | - abseil/numeric/int128
572 | - abseil/strings/strings
573 | - abseil/time/internal/cctz/civil_time
574 | - abseil/time/internal/cctz/time_zone
575 | - abseil/types (1.20220623.0):
576 | - abseil/types/any (= 1.20220623.0)
577 | - abseil/types/bad_any_cast (= 1.20220623.0)
578 | - abseil/types/bad_any_cast_impl (= 1.20220623.0)
579 | - abseil/types/bad_optional_access (= 1.20220623.0)
580 | - abseil/types/bad_variant_access (= 1.20220623.0)
581 | - abseil/types/compare (= 1.20220623.0)
582 | - abseil/types/optional (= 1.20220623.0)
583 | - abseil/types/span (= 1.20220623.0)
584 | - abseil/types/variant (= 1.20220623.0)
585 | - abseil/types/any (1.20220623.0):
586 | - abseil/base/config
587 | - abseil/base/core_headers
588 | - abseil/base/fast_type_id
589 | - abseil/meta/type_traits
590 | - abseil/types/bad_any_cast
591 | - abseil/utility/utility
592 | - abseil/types/bad_any_cast (1.20220623.0):
593 | - abseil/base/config
594 | - abseil/types/bad_any_cast_impl
595 | - abseil/types/bad_any_cast_impl (1.20220623.0):
596 | - abseil/base/config
597 | - abseil/base/raw_logging_internal
598 | - abseil/types/bad_optional_access (1.20220623.0):
599 | - abseil/base/config
600 | - abseil/base/raw_logging_internal
601 | - abseil/types/bad_variant_access (1.20220623.0):
602 | - abseil/base/config
603 | - abseil/base/raw_logging_internal
604 | - abseil/types/compare (1.20220623.0):
605 | - abseil/base/core_headers
606 | - abseil/meta/type_traits
607 | - abseil/types/optional (1.20220623.0):
608 | - abseil/base/base_internal
609 | - abseil/base/config
610 | - abseil/base/core_headers
611 | - abseil/memory/memory
612 | - abseil/meta/type_traits
613 | - abseil/types/bad_optional_access
614 | - abseil/utility/utility
615 | - abseil/types/span (1.20220623.0):
616 | - abseil/algorithm/algorithm
617 | - abseil/base/core_headers
618 | - abseil/base/throw_delegate
619 | - abseil/meta/type_traits
620 | - abseil/types/variant (1.20220623.0):
621 | - abseil/base/base_internal
622 | - abseil/base/config
623 | - abseil/base/core_headers
624 | - abseil/meta/type_traits
625 | - abseil/types/bad_variant_access
626 | - abseil/utility/utility
627 | - abseil/utility/utility (1.20220623.0):
628 | - abseil/base/base_internal
629 | - abseil/base/config
630 | - abseil/meta/type_traits
631 | - BoringSSL-GRPC (0.0.24):
632 | - BoringSSL-GRPC/Implementation (= 0.0.24)
633 | - BoringSSL-GRPC/Interface (= 0.0.24)
634 | - BoringSSL-GRPC/Implementation (0.0.24):
635 | - BoringSSL-GRPC/Interface (= 0.0.24)
636 | - BoringSSL-GRPC/Interface (0.0.24)
637 | - cloud_firestore (4.9.0):
638 | - Firebase/Firestore (= 10.12.0)
639 | - firebase_core
640 | - Flutter
641 | - nanopb (< 2.30910.0, >= 2.30908.0)
642 | - Firebase/CoreOnly (10.12.0):
643 | - FirebaseCore (= 10.12.0)
644 | - Firebase/Firestore (10.12.0):
645 | - Firebase/CoreOnly
646 | - FirebaseFirestore (~> 10.12.0)
647 | - firebase_core (2.15.1):
648 | - Firebase/CoreOnly (= 10.12.0)
649 | - Flutter
650 | - FirebaseCore (10.12.0):
651 | - FirebaseCoreInternal (~> 10.0)
652 | - GoogleUtilities/Environment (~> 7.8)
653 | - GoogleUtilities/Logger (~> 7.8)
654 | - FirebaseCoreInternal (10.14.0):
655 | - "GoogleUtilities/NSData+zlib (~> 7.8)"
656 | - FirebaseFirestore (10.12.0):
657 | - abseil/algorithm (~> 1.20220623.0)
658 | - abseil/base (~> 1.20220623.0)
659 | - abseil/container/flat_hash_map (~> 1.20220623.0)
660 | - abseil/memory (~> 1.20220623.0)
661 | - abseil/meta (~> 1.20220623.0)
662 | - abseil/strings/strings (~> 1.20220623.0)
663 | - abseil/time (~> 1.20220623.0)
664 | - abseil/types (~> 1.20220623.0)
665 | - FirebaseCore (~> 10.0)
666 | - "gRPC-C++ (~> 1.50.1)"
667 | - leveldb-library (~> 1.22)
668 | - nanopb (< 2.30910.0, >= 2.30908.0)
669 | - Flutter (1.0.0)
670 | - flutter_vlc_player (3.0.3):
671 | - Flutter
672 | - MobileVLCKit (~> 3.5.1)
673 | - GoogleUtilities/Environment (7.11.5):
674 | - PromisesObjC (< 3.0, >= 1.2)
675 | - GoogleUtilities/Logger (7.11.5):
676 | - GoogleUtilities/Environment
677 | - "GoogleUtilities/NSData+zlib (7.11.5)"
678 | - "gRPC-C++ (1.50.1)":
679 | - "gRPC-C++/Implementation (= 1.50.1)"
680 | - "gRPC-C++/Interface (= 1.50.1)"
681 | - "gRPC-C++/Implementation (1.50.1)":
682 | - abseil/base/base (= 1.20220623.0)
683 | - abseil/base/core_headers (= 1.20220623.0)
684 | - abseil/cleanup/cleanup (= 1.20220623.0)
685 | - abseil/container/flat_hash_map (= 1.20220623.0)
686 | - abseil/container/flat_hash_set (= 1.20220623.0)
687 | - abseil/container/inlined_vector (= 1.20220623.0)
688 | - abseil/functional/any_invocable (= 1.20220623.0)
689 | - abseil/functional/bind_front (= 1.20220623.0)
690 | - abseil/functional/function_ref (= 1.20220623.0)
691 | - abseil/hash/hash (= 1.20220623.0)
692 | - abseil/memory/memory (= 1.20220623.0)
693 | - abseil/meta/type_traits (= 1.20220623.0)
694 | - abseil/random/random (= 1.20220623.0)
695 | - abseil/status/status (= 1.20220623.0)
696 | - abseil/status/statusor (= 1.20220623.0)
697 | - abseil/strings/cord (= 1.20220623.0)
698 | - abseil/strings/str_format (= 1.20220623.0)
699 | - abseil/strings/strings (= 1.20220623.0)
700 | - abseil/synchronization/synchronization (= 1.20220623.0)
701 | - abseil/time/time (= 1.20220623.0)
702 | - abseil/types/optional (= 1.20220623.0)
703 | - abseil/types/span (= 1.20220623.0)
704 | - abseil/types/variant (= 1.20220623.0)
705 | - abseil/utility/utility (= 1.20220623.0)
706 | - "gRPC-C++/Interface (= 1.50.1)"
707 | - gRPC-Core (= 1.50.1)
708 | - "gRPC-C++/Interface (1.50.1)"
709 | - gRPC-Core (1.50.1):
710 | - gRPC-Core/Implementation (= 1.50.1)
711 | - gRPC-Core/Interface (= 1.50.1)
712 | - gRPC-Core/Implementation (1.50.1):
713 | - abseil/base/base (= 1.20220623.0)
714 | - abseil/base/core_headers (= 1.20220623.0)
715 | - abseil/container/flat_hash_map (= 1.20220623.0)
716 | - abseil/container/flat_hash_set (= 1.20220623.0)
717 | - abseil/container/inlined_vector (= 1.20220623.0)
718 | - abseil/functional/any_invocable (= 1.20220623.0)
719 | - abseil/functional/bind_front (= 1.20220623.0)
720 | - abseil/functional/function_ref (= 1.20220623.0)
721 | - abseil/hash/hash (= 1.20220623.0)
722 | - abseil/memory/memory (= 1.20220623.0)
723 | - abseil/meta/type_traits (= 1.20220623.0)
724 | - abseil/random/random (= 1.20220623.0)
725 | - abseil/status/status (= 1.20220623.0)
726 | - abseil/status/statusor (= 1.20220623.0)
727 | - abseil/strings/cord (= 1.20220623.0)
728 | - abseil/strings/str_format (= 1.20220623.0)
729 | - abseil/strings/strings (= 1.20220623.0)
730 | - abseil/synchronization/synchronization (= 1.20220623.0)
731 | - abseil/time/time (= 1.20220623.0)
732 | - abseil/types/optional (= 1.20220623.0)
733 | - abseil/types/span (= 1.20220623.0)
734 | - abseil/types/variant (= 1.20220623.0)
735 | - abseil/utility/utility (= 1.20220623.0)
736 | - BoringSSL-GRPC (= 0.0.24)
737 | - gRPC-Core/Interface (= 1.50.1)
738 | - gRPC-Core/Interface (1.50.1)
739 | - leveldb-library (1.22.2)
740 | - MobileVLCKit (3.5.1)
741 | - nanopb (2.30909.0):
742 | - nanopb/decode (= 2.30909.0)
743 | - nanopb/encode (= 2.30909.0)
744 | - nanopb/decode (2.30909.0)
745 | - nanopb/encode (2.30909.0)
746 | - PromisesObjC (2.3.1)
747 |
748 | DEPENDENCIES:
749 | - cloud_firestore (from `.symlinks/plugins/cloud_firestore/ios`)
750 | - firebase_core (from `.symlinks/plugins/firebase_core/ios`)
751 | - Flutter (from `Flutter`)
752 | - flutter_vlc_player (from `.symlinks/plugins/flutter_vlc_player/ios`)
753 |
754 | SPEC REPOS:
755 | trunk:
756 | - abseil
757 | - BoringSSL-GRPC
758 | - Firebase
759 | - FirebaseCore
760 | - FirebaseCoreInternal
761 | - FirebaseFirestore
762 | - GoogleUtilities
763 | - "gRPC-C++"
764 | - gRPC-Core
765 | - leveldb-library
766 | - MobileVLCKit
767 | - nanopb
768 | - PromisesObjC
769 |
770 | EXTERNAL SOURCES:
771 | cloud_firestore:
772 | :path: ".symlinks/plugins/cloud_firestore/ios"
773 | firebase_core:
774 | :path: ".symlinks/plugins/firebase_core/ios"
775 | Flutter:
776 | :path: Flutter
777 | flutter_vlc_player:
778 | :path: ".symlinks/plugins/flutter_vlc_player/ios"
779 |
780 | SPEC CHECKSUMS:
781 | abseil: 926fb7a82dc6d2b8e1f2ed7f3a718bce691d1e46
782 | BoringSSL-GRPC: 3175b25143e648463a56daeaaa499c6cb86dad33
783 | cloud_firestore: 2d219f5d2eec836c5525699e777f907c9d3cd3eb
784 | Firebase: 07150e75d142fb9399f6777fa56a187b17f833a0
785 | firebase_core: 4a3246a02f828a01c74a2c26427037786d90f17f
786 | FirebaseCore: f86a1394906b97ac445ae49c92552a9425831bed
787 | FirebaseCoreInternal: d558159ee6cc4b823c2296ecc193de9f6d9a5bb3
788 | FirebaseFirestore: f94c9541515fa4a49af52269bbc50349009424b4
789 | Flutter: f04841e97a9d0b0a8025694d0796dd46242b2854
790 | flutter_vlc_player: e321a4dcfaa0b9018a644791231e3e24e73d2fc7
791 | GoogleUtilities: 13e2c67ede716b8741c7989e26893d151b2b2084
792 | "gRPC-C++": 0968bace703459fd3e5dcb0b2bed4c573dbff046
793 | gRPC-Core: 17108291d84332196d3c8466b48f016fc17d816d
794 | leveldb-library: f03246171cce0484482ec291f88b6d563699ee06
795 | MobileVLCKit: 144d5f565512d1147d63b0fa1379231b3fd66535
796 | nanopb: b552cce312b6c8484180ef47159bc0f65a1f0431
797 | PromisesObjC: c50d2056b5253dadbd6c2bea79b0674bd5a52fa4
798 |
799 | PODFILE CHECKSUM: 70d9d25280d0dd177a5f637cdb0f0b0b12c6a189
800 |
801 | COCOAPODS: 1.12.1
802 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 54;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; };
12 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
13 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
14 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
15 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
16 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
17 | 9C36D77111D67428EE27D19C /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9A51E89852BF99D43D5451A8 /* Pods_Runner.framework */; };
18 | F4518F8CC87760D582AF728A /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60CBA0A05D25BCB9DB2E4D60 /* Pods_RunnerTests.framework */; };
19 | /* End PBXBuildFile section */
20 |
21 | /* Begin PBXContainerItemProxy section */
22 | 331C8085294A63A400263BE5 /* PBXContainerItemProxy */ = {
23 | isa = PBXContainerItemProxy;
24 | containerPortal = 97C146E61CF9000F007C117D /* Project object */;
25 | proxyType = 1;
26 | remoteGlobalIDString = 97C146ED1CF9000F007C117D;
27 | remoteInfo = Runner;
28 | };
29 | /* End PBXContainerItemProxy section */
30 |
31 | /* Begin PBXCopyFilesBuildPhase section */
32 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
33 | isa = PBXCopyFilesBuildPhase;
34 | buildActionMask = 2147483647;
35 | dstPath = "";
36 | dstSubfolderSpec = 10;
37 | files = (
38 | );
39 | name = "Embed Frameworks";
40 | runOnlyForDeploymentPostprocessing = 0;
41 | };
42 | /* End PBXCopyFilesBuildPhase section */
43 |
44 | /* Begin PBXFileReference section */
45 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
46 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
47 | 331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = ""; };
48 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
49 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
50 | 3F80D2968E8D7528E472B46F /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = ""; };
51 | 51BE59DA7CE90CE47E984B61 /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = ""; };
52 | 60CBA0A05D25BCB9DB2E4D60 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
53 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
54 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
55 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
56 | 7D5D71B9677EAAA26DDC9F4B /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = ""; };
57 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
58 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
59 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
60 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
61 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
62 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
63 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
64 | 987E7ED9059661CFF118B7BE /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = ""; };
65 | 9A51E89852BF99D43D5451A8 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; };
66 | C1F7453348833C69425CEC02 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = ""; };
67 | FBE74D411D17D28352038373 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = ""; };
68 | /* End PBXFileReference section */
69 |
70 | /* Begin PBXFrameworksBuildPhase section */
71 | 4297795ABD482635F1C0F848 /* Frameworks */ = {
72 | isa = PBXFrameworksBuildPhase;
73 | buildActionMask = 2147483647;
74 | files = (
75 | F4518F8CC87760D582AF728A /* Pods_RunnerTests.framework in Frameworks */,
76 | );
77 | runOnlyForDeploymentPostprocessing = 0;
78 | };
79 | 97C146EB1CF9000F007C117D /* Frameworks */ = {
80 | isa = PBXFrameworksBuildPhase;
81 | buildActionMask = 2147483647;
82 | files = (
83 | 9C36D77111D67428EE27D19C /* Pods_Runner.framework in Frameworks */,
84 | );
85 | runOnlyForDeploymentPostprocessing = 0;
86 | };
87 | /* End PBXFrameworksBuildPhase section */
88 |
89 | /* Begin PBXGroup section */
90 | 331C8082294A63A400263BE5 /* RunnerTests */ = {
91 | isa = PBXGroup;
92 | children = (
93 | 331C807B294A618700263BE5 /* RunnerTests.swift */,
94 | );
95 | path = RunnerTests;
96 | sourceTree = "";
97 | };
98 | 5EAD0E58438A345C9E2E1C59 /* Pods */ = {
99 | isa = PBXGroup;
100 | children = (
101 | 987E7ED9059661CFF118B7BE /* Pods-Runner.debug.xcconfig */,
102 | C1F7453348833C69425CEC02 /* Pods-Runner.release.xcconfig */,
103 | FBE74D411D17D28352038373 /* Pods-Runner.profile.xcconfig */,
104 | 7D5D71B9677EAAA26DDC9F4B /* Pods-RunnerTests.debug.xcconfig */,
105 | 51BE59DA7CE90CE47E984B61 /* Pods-RunnerTests.release.xcconfig */,
106 | 3F80D2968E8D7528E472B46F /* Pods-RunnerTests.profile.xcconfig */,
107 | );
108 | name = Pods;
109 | path = Pods;
110 | sourceTree = "";
111 | };
112 | 92BCC66AE3D1C5965F2569B8 /* Frameworks */ = {
113 | isa = PBXGroup;
114 | children = (
115 | 9A51E89852BF99D43D5451A8 /* Pods_Runner.framework */,
116 | 60CBA0A05D25BCB9DB2E4D60 /* Pods_RunnerTests.framework */,
117 | );
118 | name = Frameworks;
119 | sourceTree = "";
120 | };
121 | 9740EEB11CF90186004384FC /* Flutter */ = {
122 | isa = PBXGroup;
123 | children = (
124 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
125 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
126 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
127 | 9740EEB31CF90195004384FC /* Generated.xcconfig */,
128 | );
129 | name = Flutter;
130 | sourceTree = "";
131 | };
132 | 97C146E51CF9000F007C117D = {
133 | isa = PBXGroup;
134 | children = (
135 | 9740EEB11CF90186004384FC /* Flutter */,
136 | 97C146F01CF9000F007C117D /* Runner */,
137 | 97C146EF1CF9000F007C117D /* Products */,
138 | 331C8082294A63A400263BE5 /* RunnerTests */,
139 | 5EAD0E58438A345C9E2E1C59 /* Pods */,
140 | 92BCC66AE3D1C5965F2569B8 /* Frameworks */,
141 | );
142 | sourceTree = "";
143 | };
144 | 97C146EF1CF9000F007C117D /* Products */ = {
145 | isa = PBXGroup;
146 | children = (
147 | 97C146EE1CF9000F007C117D /* Runner.app */,
148 | 331C8081294A63A400263BE5 /* RunnerTests.xctest */,
149 | );
150 | name = Products;
151 | sourceTree = "";
152 | };
153 | 97C146F01CF9000F007C117D /* Runner */ = {
154 | isa = PBXGroup;
155 | children = (
156 | 97C146FA1CF9000F007C117D /* Main.storyboard */,
157 | 97C146FD1CF9000F007C117D /* Assets.xcassets */,
158 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
159 | 97C147021CF9000F007C117D /* Info.plist */,
160 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
161 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
162 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
163 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
164 | );
165 | path = Runner;
166 | sourceTree = "";
167 | };
168 | /* End PBXGroup section */
169 |
170 | /* Begin PBXNativeTarget section */
171 | 331C8080294A63A400263BE5 /* RunnerTests */ = {
172 | isa = PBXNativeTarget;
173 | buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */;
174 | buildPhases = (
175 | 6749B5985E25356192A808B9 /* [CP] Check Pods Manifest.lock */,
176 | 331C807D294A63A400263BE5 /* Sources */,
177 | 331C807F294A63A400263BE5 /* Resources */,
178 | 4297795ABD482635F1C0F848 /* Frameworks */,
179 | );
180 | buildRules = (
181 | );
182 | dependencies = (
183 | 331C8086294A63A400263BE5 /* PBXTargetDependency */,
184 | );
185 | name = RunnerTests;
186 | productName = RunnerTests;
187 | productReference = 331C8081294A63A400263BE5 /* RunnerTests.xctest */;
188 | productType = "com.apple.product-type.bundle.unit-test";
189 | };
190 | 97C146ED1CF9000F007C117D /* Runner */ = {
191 | isa = PBXNativeTarget;
192 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
193 | buildPhases = (
194 | D0B57DEE0D83575B5B5BC1DD /* [CP] Check Pods Manifest.lock */,
195 | 9740EEB61CF901F6004384FC /* Run Script */,
196 | 97C146EA1CF9000F007C117D /* Sources */,
197 | 97C146EB1CF9000F007C117D /* Frameworks */,
198 | 97C146EC1CF9000F007C117D /* Resources */,
199 | 9705A1C41CF9048500538489 /* Embed Frameworks */,
200 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
201 | 266A99F592EE0F5AA627065F /* [CP] Embed Pods Frameworks */,
202 | );
203 | buildRules = (
204 | );
205 | dependencies = (
206 | );
207 | name = Runner;
208 | productName = Runner;
209 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
210 | productType = "com.apple.product-type.application";
211 | };
212 | /* End PBXNativeTarget section */
213 |
214 | /* Begin PBXProject section */
215 | 97C146E61CF9000F007C117D /* Project object */ = {
216 | isa = PBXProject;
217 | attributes = {
218 | BuildIndependentTargetsInParallel = YES;
219 | LastUpgradeCheck = 1430;
220 | ORGANIZATIONNAME = "";
221 | TargetAttributes = {
222 | 331C8080294A63A400263BE5 = {
223 | CreatedOnToolsVersion = 14.0;
224 | TestTargetID = 97C146ED1CF9000F007C117D;
225 | };
226 | 97C146ED1CF9000F007C117D = {
227 | CreatedOnToolsVersion = 7.3.1;
228 | LastSwiftMigration = 1100;
229 | };
230 | };
231 | };
232 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
233 | compatibilityVersion = "Xcode 9.3";
234 | developmentRegion = en;
235 | hasScannedForEncodings = 0;
236 | knownRegions = (
237 | en,
238 | Base,
239 | );
240 | mainGroup = 97C146E51CF9000F007C117D;
241 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
242 | projectDirPath = "";
243 | projectRoot = "";
244 | targets = (
245 | 97C146ED1CF9000F007C117D /* Runner */,
246 | 331C8080294A63A400263BE5 /* RunnerTests */,
247 | );
248 | };
249 | /* End PBXProject section */
250 |
251 | /* Begin PBXResourcesBuildPhase section */
252 | 331C807F294A63A400263BE5 /* Resources */ = {
253 | isa = PBXResourcesBuildPhase;
254 | buildActionMask = 2147483647;
255 | files = (
256 | );
257 | runOnlyForDeploymentPostprocessing = 0;
258 | };
259 | 97C146EC1CF9000F007C117D /* Resources */ = {
260 | isa = PBXResourcesBuildPhase;
261 | buildActionMask = 2147483647;
262 | files = (
263 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
264 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
265 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
266 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
267 | );
268 | runOnlyForDeploymentPostprocessing = 0;
269 | };
270 | /* End PBXResourcesBuildPhase section */
271 |
272 | /* Begin PBXShellScriptBuildPhase section */
273 | 266A99F592EE0F5AA627065F /* [CP] Embed Pods Frameworks */ = {
274 | isa = PBXShellScriptBuildPhase;
275 | buildActionMask = 2147483647;
276 | files = (
277 | );
278 | inputFileListPaths = (
279 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist",
280 | );
281 | name = "[CP] Embed Pods Frameworks";
282 | outputFileListPaths = (
283 | "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist",
284 | );
285 | runOnlyForDeploymentPostprocessing = 0;
286 | shellPath = /bin/sh;
287 | shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n";
288 | showEnvVarsInLog = 0;
289 | };
290 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
291 | isa = PBXShellScriptBuildPhase;
292 | alwaysOutOfDate = 1;
293 | buildActionMask = 2147483647;
294 | files = (
295 | );
296 | inputPaths = (
297 | "${TARGET_BUILD_DIR}/${INFOPLIST_PATH}",
298 | );
299 | name = "Thin Binary";
300 | outputPaths = (
301 | );
302 | runOnlyForDeploymentPostprocessing = 0;
303 | shellPath = /bin/sh;
304 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
305 | };
306 | 6749B5985E25356192A808B9 /* [CP] Check Pods Manifest.lock */ = {
307 | isa = PBXShellScriptBuildPhase;
308 | buildActionMask = 2147483647;
309 | files = (
310 | );
311 | inputFileListPaths = (
312 | );
313 | inputPaths = (
314 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
315 | "${PODS_ROOT}/Manifest.lock",
316 | );
317 | name = "[CP] Check Pods Manifest.lock";
318 | outputFileListPaths = (
319 | );
320 | outputPaths = (
321 | "$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt",
322 | );
323 | runOnlyForDeploymentPostprocessing = 0;
324 | shellPath = /bin/sh;
325 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
326 | showEnvVarsInLog = 0;
327 | };
328 | 9740EEB61CF901F6004384FC /* Run Script */ = {
329 | isa = PBXShellScriptBuildPhase;
330 | alwaysOutOfDate = 1;
331 | buildActionMask = 2147483647;
332 | files = (
333 | );
334 | inputPaths = (
335 | );
336 | name = "Run Script";
337 | outputPaths = (
338 | );
339 | runOnlyForDeploymentPostprocessing = 0;
340 | shellPath = /bin/sh;
341 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
342 | };
343 | D0B57DEE0D83575B5B5BC1DD /* [CP] Check Pods Manifest.lock */ = {
344 | isa = PBXShellScriptBuildPhase;
345 | buildActionMask = 2147483647;
346 | files = (
347 | );
348 | inputFileListPaths = (
349 | );
350 | inputPaths = (
351 | "${PODS_PODFILE_DIR_PATH}/Podfile.lock",
352 | "${PODS_ROOT}/Manifest.lock",
353 | );
354 | name = "[CP] Check Pods Manifest.lock";
355 | outputFileListPaths = (
356 | );
357 | outputPaths = (
358 | "$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt",
359 | );
360 | runOnlyForDeploymentPostprocessing = 0;
361 | shellPath = /bin/sh;
362 | shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
363 | showEnvVarsInLog = 0;
364 | };
365 | /* End PBXShellScriptBuildPhase section */
366 |
367 | /* Begin PBXSourcesBuildPhase section */
368 | 331C807D294A63A400263BE5 /* Sources */ = {
369 | isa = PBXSourcesBuildPhase;
370 | buildActionMask = 2147483647;
371 | files = (
372 | 331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */,
373 | );
374 | runOnlyForDeploymentPostprocessing = 0;
375 | };
376 | 97C146EA1CF9000F007C117D /* Sources */ = {
377 | isa = PBXSourcesBuildPhase;
378 | buildActionMask = 2147483647;
379 | files = (
380 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
381 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
382 | );
383 | runOnlyForDeploymentPostprocessing = 0;
384 | };
385 | /* End PBXSourcesBuildPhase section */
386 |
387 | /* Begin PBXTargetDependency section */
388 | 331C8086294A63A400263BE5 /* PBXTargetDependency */ = {
389 | isa = PBXTargetDependency;
390 | target = 97C146ED1CF9000F007C117D /* Runner */;
391 | targetProxy = 331C8085294A63A400263BE5 /* PBXContainerItemProxy */;
392 | };
393 | /* End PBXTargetDependency section */
394 |
395 | /* Begin PBXVariantGroup section */
396 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
397 | isa = PBXVariantGroup;
398 | children = (
399 | 97C146FB1CF9000F007C117D /* Base */,
400 | );
401 | name = Main.storyboard;
402 | sourceTree = "";
403 | };
404 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
405 | isa = PBXVariantGroup;
406 | children = (
407 | 97C147001CF9000F007C117D /* Base */,
408 | );
409 | name = LaunchScreen.storyboard;
410 | sourceTree = "";
411 | };
412 | /* End PBXVariantGroup section */
413 |
414 | /* Begin XCBuildConfiguration section */
415 | 249021D3217E4FDB00AE95B9 /* Profile */ = {
416 | isa = XCBuildConfiguration;
417 | buildSettings = {
418 | ALWAYS_SEARCH_USER_PATHS = NO;
419 | CLANG_ANALYZER_NONNULL = YES;
420 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
421 | CLANG_CXX_LIBRARY = "libc++";
422 | CLANG_ENABLE_MODULES = YES;
423 | CLANG_ENABLE_OBJC_ARC = YES;
424 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
425 | CLANG_WARN_BOOL_CONVERSION = YES;
426 | CLANG_WARN_COMMA = YES;
427 | CLANG_WARN_CONSTANT_CONVERSION = YES;
428 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
429 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
430 | CLANG_WARN_EMPTY_BODY = YES;
431 | CLANG_WARN_ENUM_CONVERSION = YES;
432 | CLANG_WARN_INFINITE_RECURSION = YES;
433 | CLANG_WARN_INT_CONVERSION = YES;
434 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
435 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
436 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
437 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
438 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
439 | CLANG_WARN_STRICT_PROTOTYPES = YES;
440 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
441 | CLANG_WARN_UNREACHABLE_CODE = YES;
442 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
443 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
444 | COPY_PHASE_STRIP = NO;
445 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
446 | ENABLE_NS_ASSERTIONS = NO;
447 | ENABLE_STRICT_OBJC_MSGSEND = YES;
448 | GCC_C_LANGUAGE_STANDARD = gnu99;
449 | GCC_NO_COMMON_BLOCKS = YES;
450 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
451 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
452 | GCC_WARN_UNDECLARED_SELECTOR = YES;
453 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
454 | GCC_WARN_UNUSED_FUNCTION = YES;
455 | GCC_WARN_UNUSED_VARIABLE = YES;
456 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
457 | MTL_ENABLE_DEBUG_INFO = NO;
458 | SDKROOT = iphoneos;
459 | SUPPORTED_PLATFORMS = iphoneos;
460 | TARGETED_DEVICE_FAMILY = "1,2";
461 | VALIDATE_PRODUCT = YES;
462 | };
463 | name = Profile;
464 | };
465 | 249021D4217E4FDB00AE95B9 /* Profile */ = {
466 | isa = XCBuildConfiguration;
467 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
468 | buildSettings = {
469 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
470 | CLANG_ENABLE_MODULES = YES;
471 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
472 | DEVELOPMENT_TEAM = FVU6RGL532;
473 | ENABLE_BITCODE = NO;
474 | INFOPLIST_FILE = Runner/Info.plist;
475 | LD_RUNPATH_SEARCH_PATHS = (
476 | "$(inherited)",
477 | "@executable_path/Frameworks",
478 | );
479 | PRODUCT_BUNDLE_IDENTIFIER = com.example.multiCameraDashboard;
480 | PRODUCT_NAME = "$(TARGET_NAME)";
481 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
482 | SWIFT_VERSION = 5.0;
483 | VERSIONING_SYSTEM = "apple-generic";
484 | };
485 | name = Profile;
486 | };
487 | 331C8088294A63A400263BE5 /* Debug */ = {
488 | isa = XCBuildConfiguration;
489 | baseConfigurationReference = 7D5D71B9677EAAA26DDC9F4B /* Pods-RunnerTests.debug.xcconfig */;
490 | buildSettings = {
491 | BUNDLE_LOADER = "$(TEST_HOST)";
492 | CODE_SIGN_STYLE = Automatic;
493 | CURRENT_PROJECT_VERSION = 1;
494 | GENERATE_INFOPLIST_FILE = YES;
495 | MARKETING_VERSION = 1.0;
496 | PRODUCT_BUNDLE_IDENTIFIER = com.example.multiCameraDashboard.RunnerTests;
497 | PRODUCT_NAME = "$(TARGET_NAME)";
498 | SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
499 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
500 | SWIFT_VERSION = 5.0;
501 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
502 | };
503 | name = Debug;
504 | };
505 | 331C8089294A63A400263BE5 /* Release */ = {
506 | isa = XCBuildConfiguration;
507 | baseConfigurationReference = 51BE59DA7CE90CE47E984B61 /* Pods-RunnerTests.release.xcconfig */;
508 | buildSettings = {
509 | BUNDLE_LOADER = "$(TEST_HOST)";
510 | CODE_SIGN_STYLE = Automatic;
511 | CURRENT_PROJECT_VERSION = 1;
512 | GENERATE_INFOPLIST_FILE = YES;
513 | MARKETING_VERSION = 1.0;
514 | PRODUCT_BUNDLE_IDENTIFIER = com.example.multiCameraDashboard.RunnerTests;
515 | PRODUCT_NAME = "$(TARGET_NAME)";
516 | SWIFT_VERSION = 5.0;
517 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
518 | };
519 | name = Release;
520 | };
521 | 331C808A294A63A400263BE5 /* Profile */ = {
522 | isa = XCBuildConfiguration;
523 | baseConfigurationReference = 3F80D2968E8D7528E472B46F /* Pods-RunnerTests.profile.xcconfig */;
524 | buildSettings = {
525 | BUNDLE_LOADER = "$(TEST_HOST)";
526 | CODE_SIGN_STYLE = Automatic;
527 | CURRENT_PROJECT_VERSION = 1;
528 | GENERATE_INFOPLIST_FILE = YES;
529 | MARKETING_VERSION = 1.0;
530 | PRODUCT_BUNDLE_IDENTIFIER = com.example.multiCameraDashboard.RunnerTests;
531 | PRODUCT_NAME = "$(TARGET_NAME)";
532 | SWIFT_VERSION = 5.0;
533 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/Runner.app/$(BUNDLE_EXECUTABLE_FOLDER_PATH)/Runner";
534 | };
535 | name = Profile;
536 | };
537 | 97C147031CF9000F007C117D /* Debug */ = {
538 | isa = XCBuildConfiguration;
539 | buildSettings = {
540 | ALWAYS_SEARCH_USER_PATHS = NO;
541 | CLANG_ANALYZER_NONNULL = YES;
542 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
543 | CLANG_CXX_LIBRARY = "libc++";
544 | CLANG_ENABLE_MODULES = YES;
545 | CLANG_ENABLE_OBJC_ARC = YES;
546 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
547 | CLANG_WARN_BOOL_CONVERSION = YES;
548 | CLANG_WARN_COMMA = YES;
549 | CLANG_WARN_CONSTANT_CONVERSION = YES;
550 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
551 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
552 | CLANG_WARN_EMPTY_BODY = YES;
553 | CLANG_WARN_ENUM_CONVERSION = YES;
554 | CLANG_WARN_INFINITE_RECURSION = YES;
555 | CLANG_WARN_INT_CONVERSION = YES;
556 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
557 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
558 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
559 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
560 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
561 | CLANG_WARN_STRICT_PROTOTYPES = YES;
562 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
563 | CLANG_WARN_UNREACHABLE_CODE = YES;
564 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
565 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
566 | COPY_PHASE_STRIP = NO;
567 | DEBUG_INFORMATION_FORMAT = dwarf;
568 | ENABLE_STRICT_OBJC_MSGSEND = YES;
569 | ENABLE_TESTABILITY = YES;
570 | GCC_C_LANGUAGE_STANDARD = gnu99;
571 | GCC_DYNAMIC_NO_PIC = NO;
572 | GCC_NO_COMMON_BLOCKS = YES;
573 | GCC_OPTIMIZATION_LEVEL = 0;
574 | GCC_PREPROCESSOR_DEFINITIONS = (
575 | "DEBUG=1",
576 | "$(inherited)",
577 | );
578 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
579 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
580 | GCC_WARN_UNDECLARED_SELECTOR = YES;
581 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
582 | GCC_WARN_UNUSED_FUNCTION = YES;
583 | GCC_WARN_UNUSED_VARIABLE = YES;
584 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
585 | MTL_ENABLE_DEBUG_INFO = YES;
586 | ONLY_ACTIVE_ARCH = YES;
587 | SDKROOT = iphoneos;
588 | TARGETED_DEVICE_FAMILY = "1,2";
589 | };
590 | name = Debug;
591 | };
592 | 97C147041CF9000F007C117D /* Release */ = {
593 | isa = XCBuildConfiguration;
594 | buildSettings = {
595 | ALWAYS_SEARCH_USER_PATHS = NO;
596 | CLANG_ANALYZER_NONNULL = YES;
597 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
598 | CLANG_CXX_LIBRARY = "libc++";
599 | CLANG_ENABLE_MODULES = YES;
600 | CLANG_ENABLE_OBJC_ARC = YES;
601 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
602 | CLANG_WARN_BOOL_CONVERSION = YES;
603 | CLANG_WARN_COMMA = YES;
604 | CLANG_WARN_CONSTANT_CONVERSION = YES;
605 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
606 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
607 | CLANG_WARN_EMPTY_BODY = YES;
608 | CLANG_WARN_ENUM_CONVERSION = YES;
609 | CLANG_WARN_INFINITE_RECURSION = YES;
610 | CLANG_WARN_INT_CONVERSION = YES;
611 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
612 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
613 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
614 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
615 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
616 | CLANG_WARN_STRICT_PROTOTYPES = YES;
617 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
618 | CLANG_WARN_UNREACHABLE_CODE = YES;
619 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
620 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
621 | COPY_PHASE_STRIP = NO;
622 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
623 | ENABLE_NS_ASSERTIONS = NO;
624 | ENABLE_STRICT_OBJC_MSGSEND = YES;
625 | GCC_C_LANGUAGE_STANDARD = gnu99;
626 | GCC_NO_COMMON_BLOCKS = YES;
627 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
628 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
629 | GCC_WARN_UNDECLARED_SELECTOR = YES;
630 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
631 | GCC_WARN_UNUSED_FUNCTION = YES;
632 | GCC_WARN_UNUSED_VARIABLE = YES;
633 | IPHONEOS_DEPLOYMENT_TARGET = 11.0;
634 | MTL_ENABLE_DEBUG_INFO = NO;
635 | SDKROOT = iphoneos;
636 | SUPPORTED_PLATFORMS = iphoneos;
637 | SWIFT_COMPILATION_MODE = wholemodule;
638 | SWIFT_OPTIMIZATION_LEVEL = "-O";
639 | TARGETED_DEVICE_FAMILY = "1,2";
640 | VALIDATE_PRODUCT = YES;
641 | };
642 | name = Release;
643 | };
644 | 97C147061CF9000F007C117D /* Debug */ = {
645 | isa = XCBuildConfiguration;
646 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
647 | buildSettings = {
648 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
649 | CLANG_ENABLE_MODULES = YES;
650 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
651 | DEVELOPMENT_TEAM = FVU6RGL532;
652 | ENABLE_BITCODE = NO;
653 | INFOPLIST_FILE = Runner/Info.plist;
654 | LD_RUNPATH_SEARCH_PATHS = (
655 | "$(inherited)",
656 | "@executable_path/Frameworks",
657 | );
658 | PRODUCT_BUNDLE_IDENTIFIER = com.example.multiCameraDashboard;
659 | PRODUCT_NAME = "$(TARGET_NAME)";
660 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
661 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
662 | SWIFT_VERSION = 5.0;
663 | VERSIONING_SYSTEM = "apple-generic";
664 | };
665 | name = Debug;
666 | };
667 | 97C147071CF9000F007C117D /* Release */ = {
668 | isa = XCBuildConfiguration;
669 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
670 | buildSettings = {
671 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
672 | CLANG_ENABLE_MODULES = YES;
673 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
674 | DEVELOPMENT_TEAM = FVU6RGL532;
675 | ENABLE_BITCODE = NO;
676 | INFOPLIST_FILE = Runner/Info.plist;
677 | LD_RUNPATH_SEARCH_PATHS = (
678 | "$(inherited)",
679 | "@executable_path/Frameworks",
680 | );
681 | PRODUCT_BUNDLE_IDENTIFIER = com.example.multiCameraDashboard;
682 | PRODUCT_NAME = "$(TARGET_NAME)";
683 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
684 | SWIFT_VERSION = 5.0;
685 | VERSIONING_SYSTEM = "apple-generic";
686 | };
687 | name = Release;
688 | };
689 | /* End XCBuildConfiguration section */
690 |
691 | /* Begin XCConfigurationList section */
692 | 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */ = {
693 | isa = XCConfigurationList;
694 | buildConfigurations = (
695 | 331C8088294A63A400263BE5 /* Debug */,
696 | 331C8089294A63A400263BE5 /* Release */,
697 | 331C808A294A63A400263BE5 /* Profile */,
698 | );
699 | defaultConfigurationIsVisible = 0;
700 | defaultConfigurationName = Release;
701 | };
702 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
703 | isa = XCConfigurationList;
704 | buildConfigurations = (
705 | 97C147031CF9000F007C117D /* Debug */,
706 | 97C147041CF9000F007C117D /* Release */,
707 | 249021D3217E4FDB00AE95B9 /* Profile */,
708 | );
709 | defaultConfigurationIsVisible = 0;
710 | defaultConfigurationName = Release;
711 | };
712 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
713 | isa = XCConfigurationList;
714 | buildConfigurations = (
715 | 97C147061CF9000F007C117D /* Debug */,
716 | 97C147071CF9000F007C117D /* Release */,
717 | 249021D4217E4FDB00AE95B9 /* Profile */,
718 | );
719 | defaultConfigurationIsVisible = 0;
720 | defaultConfigurationName = Release;
721 | };
722 | /* End XCConfigurationList section */
723 | };
724 | rootObject = 97C146E61CF9000F007C117D /* Project object */;
725 | }
726 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------