├── .gitignore
├── .metadata
├── README.md
├── android
├── .gitignore
├── app
│ ├── build.gradle
│ └── src
│ │ ├── coffee
│ │ └── 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
│ │ │ └── values
│ │ │ └── strings.xml
│ │ ├── cookie
│ │ └── 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
│ │ │ └── values
│ │ │ └── strings.xml
│ │ ├── debug
│ │ └── AndroidManifest.xml
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── kotlin
│ │ │ └── dev
│ │ │ │ └── flutterexplained
│ │ │ │ └── flavour_example
│ │ │ │ └── MainActivity.kt
│ │ └── res
│ │ │ ├── drawable-v21
│ │ │ └── launch_background.xml
│ │ │ ├── drawable
│ │ │ └── launch_background.xml
│ │ │ ├── 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
│ │ │ ├── values-night
│ │ │ └── styles.xml
│ │ │ └── values
│ │ │ ├── strings.xml
│ │ │ └── styles.xml
│ │ └── profile
│ │ └── AndroidManifest.xml
├── build.gradle
├── gradle.properties
├── gradle
│ └── wrapper
│ │ └── gradle-wrapper.properties
└── settings.gradle
├── assets
├── app_icons
│ ├── app_icon_coffee.jpg
│ └── app_icon_cookie.jpg
└── images
│ ├── coffee_bean.jpg
│ └── munchy_crunchy.jpg
├── flutter_launcher_icons-coffee.yaml
├── flutter_launcher_icons-cookie.yaml
├── ios
├── .gitignore
├── Flutter
│ ├── AppFrameworkInfo.plist
│ ├── Debug.xcconfig
│ └── Release.xcconfig
├── Runner.xcodeproj
│ ├── project.pbxproj
│ ├── project.xcworkspace
│ │ ├── contents.xcworkspacedata
│ │ └── xcshareddata
│ │ │ ├── IDEWorkspaceChecks.plist
│ │ │ └── WorkspaceSettings.xcsettings
│ └── xcshareddata
│ │ └── xcschemes
│ │ ├── Runner.xcscheme
│ │ ├── coffee.xcscheme
│ │ └── cookie.xcscheme
├── Runner.xcworkspace
│ ├── contents.xcworkspacedata
│ └── xcshareddata
│ │ ├── IDEWorkspaceChecks.plist
│ │ └── WorkspaceSettings.xcsettings
└── Runner
│ ├── AppDelegate.swift
│ ├── Assets.xcassets
│ ├── AppIcon-coffee.appiconset
│ │ ├── AppIcon-coffee-1024x1024@1x.png
│ │ ├── AppIcon-coffee-20x20@1x.png
│ │ ├── AppIcon-coffee-20x20@2x.png
│ │ ├── AppIcon-coffee-20x20@3x.png
│ │ ├── AppIcon-coffee-29x29@1x.png
│ │ ├── AppIcon-coffee-29x29@2x.png
│ │ ├── AppIcon-coffee-29x29@3x.png
│ │ ├── AppIcon-coffee-40x40@1x.png
│ │ ├── AppIcon-coffee-40x40@2x.png
│ │ ├── AppIcon-coffee-40x40@3x.png
│ │ ├── AppIcon-coffee-60x60@2x.png
│ │ ├── AppIcon-coffee-60x60@3x.png
│ │ ├── AppIcon-coffee-76x76@1x.png
│ │ ├── AppIcon-coffee-76x76@2x.png
│ │ ├── AppIcon-coffee-83.5x83.5@2x.png
│ │ └── Contents.json
│ ├── AppIcon-cookie.appiconset
│ │ ├── AppIcon-cookie-1024x1024@1x.png
│ │ ├── AppIcon-cookie-20x20@1x.png
│ │ ├── AppIcon-cookie-20x20@2x.png
│ │ ├── AppIcon-cookie-20x20@3x.png
│ │ ├── AppIcon-cookie-29x29@1x.png
│ │ ├── AppIcon-cookie-29x29@2x.png
│ │ ├── AppIcon-cookie-29x29@3x.png
│ │ ├── AppIcon-cookie-40x40@1x.png
│ │ ├── AppIcon-cookie-40x40@2x.png
│ │ ├── AppIcon-cookie-40x40@3x.png
│ │ ├── AppIcon-cookie-60x60@2x.png
│ │ ├── AppIcon-cookie-60x60@3x.png
│ │ ├── AppIcon-cookie-76x76@1x.png
│ │ ├── AppIcon-cookie-76x76@2x.png
│ │ ├── AppIcon-cookie-83.5x83.5@2x.png
│ │ └── Contents.json
│ ├── AppIcon.appiconset
│ │ ├── Contents.json
│ │ ├── Icon-App-1024x1024@1x.png
│ │ ├── 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-83.5x83.5@2x.png
│ └── LaunchImage.imageset
│ │ ├── Contents.json
│ │ ├── LaunchImage.png
│ │ ├── LaunchImage@2x.png
│ │ ├── LaunchImage@3x.png
│ │ └── README.md
│ ├── Base.lproj
│ ├── LaunchScreen.storyboard
│ └── Main.storyboard
│ ├── Info.plist
│ └── Runner-Bridging-Header.h
├── lib
├── flavor_config.dart
├── main_coffee.dart
├── main_common.dart
└── main_cookie.dart
├── pubspec.lock
├── pubspec.yaml
├── test
└── widget_test.dart
└── tools
├── generate_flutter_icons.ps1
└── generate_flutter_icons.sh
/.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 | **/ios/Flutter/.last_build_id
26 | .dart_tool/
27 | .flutter-plugins
28 | .flutter-plugins-dependencies
29 | .packages
30 | .pub-cache/
31 | .pub/
32 | /build/
33 |
34 | # Web related
35 | lib/generated_plugin_registrant.dart
36 |
37 | # Symbolication related
38 | app.*.symbols
39 |
40 | # Obfuscation related
41 | app.*.map.json
42 |
43 | # Android Studio will place build artifacts here
44 | /android/app/debug
45 | /android/app/profile
46 | /android/app/release
47 |
--------------------------------------------------------------------------------
/.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: b1395592de68cc8ac4522094ae59956dd21a91db
8 | channel: stable
9 |
10 | project_type: app
11 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Flavor Tutorial for Flutter Explained
2 | [](https://youtube.com/c/flutterexplained?sub_confirmation=1)
3 | [](https://www.twitch.tv/maxflutter)
4 | [](https://flutter-explained.dev/)
5 |
6 | In this repository we collect everything that is related to Flavors.
7 |
8 | - [Flavors in Flutter - Multiple apps from one source code - Icon Generation](https://www.youtube.com/watch?v=4Y7WaeU3P60)
9 | - [Flutter Flavors - Live Stream](https://www.youtube.com/watch?v=nW2F4ao7gEM)
10 |
11 | ## Getting Started
12 | This project is build with Flavors in order to start the different flavors.
13 | You will need to setup two starter configurations.
14 |
15 | ### Beans Factory
16 |
17 |
18 | ```shell script
19 | flutter -run --flavor coffee -t ./lib/main_coffee.dart
20 | ```
21 |
22 | ### Munchy Crunchy
23 |
24 |
25 | ```shell script
26 | flutter -run --flavor cookie -t ./lib/main_cookie.dart
27 | ```
28 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 30
30 |
31 | sourceSets {
32 | main.java.srcDirs += 'src/main/kotlin'
33 | }
34 |
35 | defaultConfig {
36 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
37 | applicationId "dev.flutterexplained.flavour_example"
38 | minSdkVersion 16
39 | targetSdkVersion 30
40 | versionCode flutterVersionCode.toInteger()
41 | versionName flutterVersionName
42 | }
43 |
44 | flavorDimensions "app"
45 |
46 | productFlavors {
47 |
48 | cookie {
49 | dimension "app"
50 | applicationId "dev.flutterexplained.flavour_example.cookie"
51 | versionCode 1
52 | versionName "1.0"
53 | }
54 |
55 | coffee {
56 | dimension "app"
57 | applicationId "dev.flutterexplained.flavour_example.coffee"
58 | versionCode 1
59 | versionName "1.0"
60 | }
61 | }
62 |
63 | buildTypes {
64 | release {
65 | // TODO: Add your own signing config for the release build.
66 | // Signing with the debug keys for now, so `flutter run --release` works.
67 | signingConfig signingConfigs.debug
68 | }
69 | }
70 | }
71 |
72 | flutter {
73 | source '../..'
74 | }
75 |
76 | dependencies {
77 | implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
78 | }
79 |
--------------------------------------------------------------------------------
/android/app/src/coffee/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/coffee/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/coffee/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/coffee/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/coffee/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/coffee/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/coffee/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/coffee/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/coffee/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/coffee/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/coffee/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Beans Factory
4 |
--------------------------------------------------------------------------------
/android/app/src/cookie/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/cookie/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/cookie/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/cookie/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/cookie/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/cookie/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/cookie/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/cookie/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/cookie/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/cookie/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/cookie/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Munchy Crunchy
4 |
--------------------------------------------------------------------------------
/android/app/src/debug/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/app/src/main/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
4 |
7 |
14 |
18 |
21 |
26 |
29 |
30 |
31 |
32 |
33 |
34 |
36 |
39 |
40 |
41 |
--------------------------------------------------------------------------------
/android/app/src/main/kotlin/dev/flutterexplained/flavour_example/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package dev.flutterexplained.flavour_example
2 |
3 | import io.flutter.embedding.android.FlutterActivity
4 |
5 | class MainActivity: FlutterActivity() {
6 | }
7 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable-v21/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/drawable/launch_background.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
12 |
13 |
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/android/app/src/main/res/values-night/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | Default App Name
4 |
--------------------------------------------------------------------------------
/android/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
9 |
15 |
18 |
19 |
--------------------------------------------------------------------------------
/android/app/src/profile/AndroidManifest.xml:
--------------------------------------------------------------------------------
1 |
3 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/android/build.gradle:
--------------------------------------------------------------------------------
1 | buildscript {
2 | ext.kotlin_version = '1.3.50'
3 | repositories {
4 | google()
5 | jcenter()
6 | }
7 |
8 | dependencies {
9 | classpath 'com.android.tools.build:gradle:4.1.0'
10 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11 | }
12 | }
13 |
14 | allprojects {
15 | repositories {
16 | google()
17 | jcenter()
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 | task clean(type: Delete) {
30 | delete rootProject.buildDir
31 | }
32 |
--------------------------------------------------------------------------------
/android/gradle.properties:
--------------------------------------------------------------------------------
1 | org.gradle.jvmargs=-Xmx1536M
2 | android.useAndroidX=true
3 | android.enableJetifier=true
4 |
--------------------------------------------------------------------------------
/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-6.7-all.zip
7 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/assets/app_icons/app_icon_coffee.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/assets/app_icons/app_icon_coffee.jpg
--------------------------------------------------------------------------------
/assets/app_icons/app_icon_cookie.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/assets/app_icons/app_icon_cookie.jpg
--------------------------------------------------------------------------------
/assets/images/coffee_bean.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/assets/images/coffee_bean.jpg
--------------------------------------------------------------------------------
/assets/images/munchy_crunchy.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/assets/images/munchy_crunchy.jpg
--------------------------------------------------------------------------------
/flutter_launcher_icons-coffee.yaml:
--------------------------------------------------------------------------------
1 | flutter_icons:
2 | android: true
3 | ios: true
4 | image_path: "assets/app_icons/app_icon_coffee.jpg"
5 |
--------------------------------------------------------------------------------
/flutter_launcher_icons-cookie.yaml:
--------------------------------------------------------------------------------
1 | flutter_icons:
2 | android: true
3 | ios: true
4 | image_path: "assets/app_icons/app_icon_cookie.jpg"
5 |
--------------------------------------------------------------------------------
/ios/.gitignore:
--------------------------------------------------------------------------------
1 | *.mode1v3
2 | *.mode2v3
3 | *.moved-aside
4 | *.pbxuser
5 | *.perspectivev3
6 | **/*sync/
7 | .sconsign.dblite
8 | .tags*
9 | **/.vagrant/
10 | **/DerivedData/
11 | Icon?
12 | **/Pods/
13 | **/.symlinks/
14 | profile
15 | xcuserdata
16 | **/.generated/
17 | Flutter/App.framework
18 | Flutter/Flutter.framework
19 | Flutter/Flutter.podspec
20 | Flutter/Generated.xcconfig
21 | Flutter/app.flx
22 | Flutter/app.zip
23 | Flutter/flutter_assets/
24 | Flutter/flutter_export_environment.sh
25 | ServiceDefinitions.json
26 | Runner/GeneratedPluginRegistrant.*
27 |
28 | # Exceptions to above rules.
29 | !default.mode1v3
30 | !default.mode2v3
31 | !default.pbxuser
32 | !default.perspectivev3
33 |
--------------------------------------------------------------------------------
/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 | 8.0
25 |
26 |
27 |
--------------------------------------------------------------------------------
/ios/Flutter/Debug.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/ios/Flutter/Release.xcconfig:
--------------------------------------------------------------------------------
1 | #include "Generated.xcconfig"
2 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.pbxproj:
--------------------------------------------------------------------------------
1 | // !$*UTF8*$!
2 | {
3 | archiveVersion = 1;
4 | classes = {
5 | };
6 | objectVersion = 50;
7 | objects = {
8 |
9 | /* Begin PBXBuildFile section */
10 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; };
11 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; };
12 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; };
13 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; };
14 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; };
15 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; };
16 | /* End PBXBuildFile section */
17 |
18 | /* Begin PBXCopyFilesBuildPhase section */
19 | 9705A1C41CF9048500538489 /* Embed Frameworks */ = {
20 | isa = PBXCopyFilesBuildPhase;
21 | buildActionMask = 2147483647;
22 | dstPath = "";
23 | dstSubfolderSpec = 10;
24 | files = (
25 | );
26 | name = "Embed Frameworks";
27 | runOnlyForDeploymentPostprocessing = 0;
28 | };
29 | /* End PBXCopyFilesBuildPhase section */
30 |
31 | /* Begin PBXFileReference section */
32 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; };
33 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; };
34 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; };
35 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; };
36 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; };
37 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; };
38 | 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; };
39 | 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; };
40 | 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; };
41 | 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; };
42 | 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; };
43 | 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; };
44 | 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; };
45 | /* End PBXFileReference section */
46 |
47 | /* Begin PBXFrameworksBuildPhase section */
48 | 97C146EB1CF9000F007C117D /* Frameworks */ = {
49 | isa = PBXFrameworksBuildPhase;
50 | buildActionMask = 2147483647;
51 | files = (
52 | );
53 | runOnlyForDeploymentPostprocessing = 0;
54 | };
55 | /* End PBXFrameworksBuildPhase section */
56 |
57 | /* Begin PBXGroup section */
58 | 9740EEB11CF90186004384FC /* Flutter */ = {
59 | isa = PBXGroup;
60 | children = (
61 | 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */,
62 | 9740EEB21CF90195004384FC /* Debug.xcconfig */,
63 | 7AFA3C8E1D35360C0083082E /* Release.xcconfig */,
64 | 9740EEB31CF90195004384FC /* Generated.xcconfig */,
65 | );
66 | name = Flutter;
67 | sourceTree = "";
68 | };
69 | 97C146E51CF9000F007C117D = {
70 | isa = PBXGroup;
71 | children = (
72 | 9740EEB11CF90186004384FC /* Flutter */,
73 | 97C146F01CF9000F007C117D /* Runner */,
74 | 97C146EF1CF9000F007C117D /* Products */,
75 | );
76 | sourceTree = "";
77 | };
78 | 97C146EF1CF9000F007C117D /* Products */ = {
79 | isa = PBXGroup;
80 | children = (
81 | 97C146EE1CF9000F007C117D /* Runner.app */,
82 | );
83 | name = Products;
84 | sourceTree = "";
85 | };
86 | 97C146F01CF9000F007C117D /* Runner */ = {
87 | isa = PBXGroup;
88 | children = (
89 | 97C146FA1CF9000F007C117D /* Main.storyboard */,
90 | 97C146FD1CF9000F007C117D /* Assets.xcassets */,
91 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */,
92 | 97C147021CF9000F007C117D /* Info.plist */,
93 | 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */,
94 | 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */,
95 | 74858FAE1ED2DC5600515810 /* AppDelegate.swift */,
96 | 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */,
97 | );
98 | path = Runner;
99 | sourceTree = "";
100 | };
101 | /* End PBXGroup section */
102 |
103 | /* Begin PBXNativeTarget section */
104 | 97C146ED1CF9000F007C117D /* Runner */ = {
105 | isa = PBXNativeTarget;
106 | buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */;
107 | buildPhases = (
108 | 9740EEB61CF901F6004384FC /* Run Script */,
109 | 97C146EA1CF9000F007C117D /* Sources */,
110 | 97C146EB1CF9000F007C117D /* Frameworks */,
111 | 97C146EC1CF9000F007C117D /* Resources */,
112 | 9705A1C41CF9048500538489 /* Embed Frameworks */,
113 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */,
114 | );
115 | buildRules = (
116 | );
117 | dependencies = (
118 | );
119 | name = Runner;
120 | productName = Runner;
121 | productReference = 97C146EE1CF9000F007C117D /* Runner.app */;
122 | productType = "com.apple.product-type.application";
123 | };
124 | /* End PBXNativeTarget section */
125 |
126 | /* Begin PBXProject section */
127 | 97C146E61CF9000F007C117D /* Project object */ = {
128 | isa = PBXProject;
129 | attributes = {
130 | LastUpgradeCheck = 1020;
131 | ORGANIZATIONNAME = "";
132 | TargetAttributes = {
133 | 97C146ED1CF9000F007C117D = {
134 | CreatedOnToolsVersion = 7.3.1;
135 | LastSwiftMigration = 1100;
136 | };
137 | };
138 | };
139 | buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */;
140 | compatibilityVersion = "Xcode 9.3";
141 | developmentRegion = en;
142 | hasScannedForEncodings = 0;
143 | knownRegions = (
144 | en,
145 | Base,
146 | );
147 | mainGroup = 97C146E51CF9000F007C117D;
148 | productRefGroup = 97C146EF1CF9000F007C117D /* Products */;
149 | projectDirPath = "";
150 | projectRoot = "";
151 | targets = (
152 | 97C146ED1CF9000F007C117D /* Runner */,
153 | );
154 | };
155 | /* End PBXProject section */
156 |
157 | /* Begin PBXResourcesBuildPhase section */
158 | 97C146EC1CF9000F007C117D /* Resources */ = {
159 | isa = PBXResourcesBuildPhase;
160 | buildActionMask = 2147483647;
161 | files = (
162 | 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */,
163 | 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */,
164 | 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */,
165 | 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */,
166 | );
167 | runOnlyForDeploymentPostprocessing = 0;
168 | };
169 | /* End PBXResourcesBuildPhase section */
170 |
171 | /* Begin PBXShellScriptBuildPhase section */
172 | 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = {
173 | isa = PBXShellScriptBuildPhase;
174 | buildActionMask = 2147483647;
175 | files = (
176 | );
177 | inputPaths = (
178 | );
179 | name = "Thin Binary";
180 | outputPaths = (
181 | );
182 | runOnlyForDeploymentPostprocessing = 0;
183 | shellPath = /bin/sh;
184 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin";
185 | };
186 | 9740EEB61CF901F6004384FC /* Run Script */ = {
187 | isa = PBXShellScriptBuildPhase;
188 | buildActionMask = 2147483647;
189 | files = (
190 | );
191 | inputPaths = (
192 | );
193 | name = "Run Script";
194 | outputPaths = (
195 | );
196 | runOnlyForDeploymentPostprocessing = 0;
197 | shellPath = /bin/sh;
198 | shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build";
199 | };
200 | /* End PBXShellScriptBuildPhase section */
201 |
202 | /* Begin PBXSourcesBuildPhase section */
203 | 97C146EA1CF9000F007C117D /* Sources */ = {
204 | isa = PBXSourcesBuildPhase;
205 | buildActionMask = 2147483647;
206 | files = (
207 | 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */,
208 | 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */,
209 | );
210 | runOnlyForDeploymentPostprocessing = 0;
211 | };
212 | /* End PBXSourcesBuildPhase section */
213 |
214 | /* Begin PBXVariantGroup section */
215 | 97C146FA1CF9000F007C117D /* Main.storyboard */ = {
216 | isa = PBXVariantGroup;
217 | children = (
218 | 97C146FB1CF9000F007C117D /* Base */,
219 | );
220 | name = Main.storyboard;
221 | sourceTree = "";
222 | };
223 | 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = {
224 | isa = PBXVariantGroup;
225 | children = (
226 | 97C147001CF9000F007C117D /* Base */,
227 | );
228 | name = LaunchScreen.storyboard;
229 | sourceTree = "";
230 | };
231 | /* End PBXVariantGroup section */
232 |
233 | /* Begin XCBuildConfiguration section */
234 | 249021D3217E4FDB00AE95B9 /* Profile */ = {
235 | isa = XCBuildConfiguration;
236 | buildSettings = {
237 | ALWAYS_SEARCH_USER_PATHS = NO;
238 | CLANG_ANALYZER_NONNULL = YES;
239 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
240 | CLANG_CXX_LIBRARY = "libc++";
241 | CLANG_ENABLE_MODULES = YES;
242 | CLANG_ENABLE_OBJC_ARC = YES;
243 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
244 | CLANG_WARN_BOOL_CONVERSION = YES;
245 | CLANG_WARN_COMMA = YES;
246 | CLANG_WARN_CONSTANT_CONVERSION = YES;
247 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
248 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
249 | CLANG_WARN_EMPTY_BODY = YES;
250 | CLANG_WARN_ENUM_CONVERSION = YES;
251 | CLANG_WARN_INFINITE_RECURSION = YES;
252 | CLANG_WARN_INT_CONVERSION = YES;
253 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
254 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
255 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
256 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
257 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
258 | CLANG_WARN_STRICT_PROTOTYPES = YES;
259 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
260 | CLANG_WARN_UNREACHABLE_CODE = YES;
261 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
262 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
263 | COPY_PHASE_STRIP = NO;
264 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
265 | ENABLE_NS_ASSERTIONS = NO;
266 | ENABLE_STRICT_OBJC_MSGSEND = YES;
267 | GCC_C_LANGUAGE_STANDARD = gnu99;
268 | GCC_NO_COMMON_BLOCKS = YES;
269 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
270 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
271 | GCC_WARN_UNDECLARED_SELECTOR = YES;
272 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
273 | GCC_WARN_UNUSED_FUNCTION = YES;
274 | GCC_WARN_UNUSED_VARIABLE = YES;
275 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
276 | MTL_ENABLE_DEBUG_INFO = NO;
277 | NEW_SETTING = "";
278 | SDKROOT = iphoneos;
279 | SUPPORTED_PLATFORMS = iphoneos;
280 | TARGETED_DEVICE_FAMILY = "1,2";
281 | VALIDATE_PRODUCT = YES;
282 | };
283 | name = Profile;
284 | };
285 | 249021D4217E4FDB00AE95B9 /* Profile */ = {
286 | isa = XCBuildConfiguration;
287 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
288 | buildSettings = {
289 | APP_DISPLAY_NAME = "Default Flutter";
290 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
291 | CLANG_ENABLE_MODULES = YES;
292 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
293 | ENABLE_BITCODE = NO;
294 | INFOPLIST_FILE = Runner/Info.plist;
295 | LD_RUNPATH_SEARCH_PATHS = (
296 | "$(inherited)",
297 | "@executable_path/Frameworks",
298 | );
299 | NEW_SETTING1 = "";
300 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample;
301 | PRODUCT_NAME = "$(TARGET_NAME)";
302 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
303 | SWIFT_VERSION = 5.0;
304 | VERSIONING_SYSTEM = "apple-generic";
305 | };
306 | name = Profile;
307 | };
308 | 904FCFC52627150800EA9B62 /* Debug-cookie */ = {
309 | isa = XCBuildConfiguration;
310 | buildSettings = {
311 | ALWAYS_SEARCH_USER_PATHS = NO;
312 | CLANG_ANALYZER_NONNULL = YES;
313 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
314 | CLANG_CXX_LIBRARY = "libc++";
315 | CLANG_ENABLE_MODULES = YES;
316 | CLANG_ENABLE_OBJC_ARC = YES;
317 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
318 | CLANG_WARN_BOOL_CONVERSION = YES;
319 | CLANG_WARN_COMMA = YES;
320 | CLANG_WARN_CONSTANT_CONVERSION = YES;
321 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
322 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
323 | CLANG_WARN_EMPTY_BODY = YES;
324 | CLANG_WARN_ENUM_CONVERSION = YES;
325 | CLANG_WARN_INFINITE_RECURSION = YES;
326 | CLANG_WARN_INT_CONVERSION = YES;
327 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
328 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
329 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
330 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
331 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
332 | CLANG_WARN_STRICT_PROTOTYPES = YES;
333 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
334 | CLANG_WARN_UNREACHABLE_CODE = YES;
335 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
336 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
337 | COPY_PHASE_STRIP = NO;
338 | DEBUG_INFORMATION_FORMAT = dwarf;
339 | ENABLE_STRICT_OBJC_MSGSEND = YES;
340 | ENABLE_TESTABILITY = YES;
341 | GCC_C_LANGUAGE_STANDARD = gnu99;
342 | GCC_DYNAMIC_NO_PIC = NO;
343 | GCC_NO_COMMON_BLOCKS = YES;
344 | GCC_OPTIMIZATION_LEVEL = 0;
345 | GCC_PREPROCESSOR_DEFINITIONS = (
346 | "DEBUG=1",
347 | "$(inherited)",
348 | );
349 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
350 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
351 | GCC_WARN_UNDECLARED_SELECTOR = YES;
352 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
353 | GCC_WARN_UNUSED_FUNCTION = YES;
354 | GCC_WARN_UNUSED_VARIABLE = YES;
355 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
356 | MTL_ENABLE_DEBUG_INFO = YES;
357 | NEW_SETTING = "";
358 | ONLY_ACTIVE_ARCH = YES;
359 | SDKROOT = iphoneos;
360 | TARGETED_DEVICE_FAMILY = "1,2";
361 | };
362 | name = "Debug-cookie";
363 | };
364 | 904FCFC62627150800EA9B62 /* Debug-cookie */ = {
365 | isa = XCBuildConfiguration;
366 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
367 | buildSettings = {
368 | APP_DISPLAY_NAME = "Crunchy Munchy";
369 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
370 | CLANG_ENABLE_MODULES = YES;
371 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
372 | ENABLE_BITCODE = NO;
373 | INFOPLIST_FILE = Runner/Info.plist;
374 | LD_RUNPATH_SEARCH_PATHS = (
375 | "$(inherited)",
376 | "@executable_path/Frameworks",
377 | );
378 | NEW_SETTING1 = "";
379 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample.cookie;
380 | PRODUCT_NAME = "$(TARGET_NAME)";
381 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
382 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
383 | SWIFT_VERSION = 5.0;
384 | VERSIONING_SYSTEM = "apple-generic";
385 | };
386 | name = "Debug-cookie";
387 | };
388 | 904FCFC72627150D00EA9B62 /* Release-cookie */ = {
389 | isa = XCBuildConfiguration;
390 | buildSettings = {
391 | ALWAYS_SEARCH_USER_PATHS = NO;
392 | CLANG_ANALYZER_NONNULL = YES;
393 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
394 | CLANG_CXX_LIBRARY = "libc++";
395 | CLANG_ENABLE_MODULES = YES;
396 | CLANG_ENABLE_OBJC_ARC = YES;
397 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
398 | CLANG_WARN_BOOL_CONVERSION = YES;
399 | CLANG_WARN_COMMA = YES;
400 | CLANG_WARN_CONSTANT_CONVERSION = YES;
401 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
402 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
403 | CLANG_WARN_EMPTY_BODY = YES;
404 | CLANG_WARN_ENUM_CONVERSION = YES;
405 | CLANG_WARN_INFINITE_RECURSION = YES;
406 | CLANG_WARN_INT_CONVERSION = YES;
407 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
408 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
409 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
410 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
411 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
412 | CLANG_WARN_STRICT_PROTOTYPES = YES;
413 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
414 | CLANG_WARN_UNREACHABLE_CODE = YES;
415 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
416 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
417 | COPY_PHASE_STRIP = NO;
418 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
419 | ENABLE_NS_ASSERTIONS = NO;
420 | ENABLE_STRICT_OBJC_MSGSEND = YES;
421 | GCC_C_LANGUAGE_STANDARD = gnu99;
422 | GCC_NO_COMMON_BLOCKS = YES;
423 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
424 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
425 | GCC_WARN_UNDECLARED_SELECTOR = YES;
426 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
427 | GCC_WARN_UNUSED_FUNCTION = YES;
428 | GCC_WARN_UNUSED_VARIABLE = YES;
429 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
430 | MTL_ENABLE_DEBUG_INFO = NO;
431 | NEW_SETTING = "";
432 | SDKROOT = iphoneos;
433 | SUPPORTED_PLATFORMS = iphoneos;
434 | SWIFT_COMPILATION_MODE = wholemodule;
435 | SWIFT_OPTIMIZATION_LEVEL = "-O";
436 | TARGETED_DEVICE_FAMILY = "1,2";
437 | VALIDATE_PRODUCT = YES;
438 | };
439 | name = "Release-cookie";
440 | };
441 | 904FCFC82627150D00EA9B62 /* Release-cookie */ = {
442 | isa = XCBuildConfiguration;
443 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
444 | buildSettings = {
445 | APP_DISPLAY_NAME = "Crunchy Munchy";
446 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
447 | CLANG_ENABLE_MODULES = YES;
448 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
449 | ENABLE_BITCODE = NO;
450 | INFOPLIST_FILE = Runner/Info.plist;
451 | LD_RUNPATH_SEARCH_PATHS = (
452 | "$(inherited)",
453 | "@executable_path/Frameworks",
454 | );
455 | NEW_SETTING1 = "";
456 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample.cookie;
457 | PRODUCT_NAME = "$(TARGET_NAME)";
458 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
459 | SWIFT_VERSION = 5.0;
460 | VERSIONING_SYSTEM = "apple-generic";
461 | };
462 | name = "Release-cookie";
463 | };
464 | 904FCFC92627151400EA9B62 /* Profile-cookie */ = {
465 | isa = XCBuildConfiguration;
466 | buildSettings = {
467 | ALWAYS_SEARCH_USER_PATHS = NO;
468 | CLANG_ANALYZER_NONNULL = YES;
469 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
470 | CLANG_CXX_LIBRARY = "libc++";
471 | CLANG_ENABLE_MODULES = YES;
472 | CLANG_ENABLE_OBJC_ARC = YES;
473 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
474 | CLANG_WARN_BOOL_CONVERSION = YES;
475 | CLANG_WARN_COMMA = YES;
476 | CLANG_WARN_CONSTANT_CONVERSION = YES;
477 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
478 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
479 | CLANG_WARN_EMPTY_BODY = YES;
480 | CLANG_WARN_ENUM_CONVERSION = YES;
481 | CLANG_WARN_INFINITE_RECURSION = YES;
482 | CLANG_WARN_INT_CONVERSION = YES;
483 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
484 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
485 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
486 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
487 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
488 | CLANG_WARN_STRICT_PROTOTYPES = YES;
489 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
490 | CLANG_WARN_UNREACHABLE_CODE = YES;
491 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
492 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
493 | COPY_PHASE_STRIP = NO;
494 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
495 | ENABLE_NS_ASSERTIONS = NO;
496 | ENABLE_STRICT_OBJC_MSGSEND = YES;
497 | GCC_C_LANGUAGE_STANDARD = gnu99;
498 | GCC_NO_COMMON_BLOCKS = YES;
499 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
500 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
501 | GCC_WARN_UNDECLARED_SELECTOR = YES;
502 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
503 | GCC_WARN_UNUSED_FUNCTION = YES;
504 | GCC_WARN_UNUSED_VARIABLE = YES;
505 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
506 | MTL_ENABLE_DEBUG_INFO = NO;
507 | NEW_SETTING = "";
508 | SDKROOT = iphoneos;
509 | SUPPORTED_PLATFORMS = iphoneos;
510 | TARGETED_DEVICE_FAMILY = "1,2";
511 | VALIDATE_PRODUCT = YES;
512 | };
513 | name = "Profile-cookie";
514 | };
515 | 904FCFCA2627151400EA9B62 /* Profile-cookie */ = {
516 | isa = XCBuildConfiguration;
517 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
518 | buildSettings = {
519 | APP_DISPLAY_NAME = "Crunchy Munchy";
520 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
521 | CLANG_ENABLE_MODULES = YES;
522 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
523 | ENABLE_BITCODE = NO;
524 | INFOPLIST_FILE = Runner/Info.plist;
525 | LD_RUNPATH_SEARCH_PATHS = (
526 | "$(inherited)",
527 | "@executable_path/Frameworks",
528 | );
529 | NEW_SETTING1 = "";
530 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample.cookie;
531 | PRODUCT_NAME = "$(TARGET_NAME)";
532 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
533 | SWIFT_VERSION = 5.0;
534 | VERSIONING_SYSTEM = "apple-generic";
535 | };
536 | name = "Profile-cookie";
537 | };
538 | 904FCFCB2627151A00EA9B62 /* Debug-coffee */ = {
539 | isa = XCBuildConfiguration;
540 | buildSettings = {
541 | ALWAYS_SEARCH_USER_PATHS = NO;
542 | CLANG_ANALYZER_NONNULL = YES;
543 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
544 | CLANG_CXX_LIBRARY = "libc++";
545 | CLANG_ENABLE_MODULES = YES;
546 | CLANG_ENABLE_OBJC_ARC = YES;
547 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
548 | CLANG_WARN_BOOL_CONVERSION = YES;
549 | CLANG_WARN_COMMA = YES;
550 | CLANG_WARN_CONSTANT_CONVERSION = YES;
551 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
552 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
553 | CLANG_WARN_EMPTY_BODY = YES;
554 | CLANG_WARN_ENUM_CONVERSION = YES;
555 | CLANG_WARN_INFINITE_RECURSION = YES;
556 | CLANG_WARN_INT_CONVERSION = YES;
557 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
558 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
559 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
560 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
561 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
562 | CLANG_WARN_STRICT_PROTOTYPES = YES;
563 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
564 | CLANG_WARN_UNREACHABLE_CODE = YES;
565 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
566 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
567 | COPY_PHASE_STRIP = NO;
568 | DEBUG_INFORMATION_FORMAT = dwarf;
569 | ENABLE_STRICT_OBJC_MSGSEND = YES;
570 | ENABLE_TESTABILITY = YES;
571 | GCC_C_LANGUAGE_STANDARD = gnu99;
572 | GCC_DYNAMIC_NO_PIC = NO;
573 | GCC_NO_COMMON_BLOCKS = YES;
574 | GCC_OPTIMIZATION_LEVEL = 0;
575 | GCC_PREPROCESSOR_DEFINITIONS = (
576 | "DEBUG=1",
577 | "$(inherited)",
578 | );
579 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
580 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
581 | GCC_WARN_UNDECLARED_SELECTOR = YES;
582 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
583 | GCC_WARN_UNUSED_FUNCTION = YES;
584 | GCC_WARN_UNUSED_VARIABLE = YES;
585 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
586 | MTL_ENABLE_DEBUG_INFO = YES;
587 | NEW_SETTING = "";
588 | ONLY_ACTIVE_ARCH = YES;
589 | SDKROOT = iphoneos;
590 | TARGETED_DEVICE_FAMILY = "1,2";
591 | };
592 | name = "Debug-coffee";
593 | };
594 | 904FCFCC2627151A00EA9B62 /* Debug-coffee */ = {
595 | isa = XCBuildConfiguration;
596 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
597 | buildSettings = {
598 | APP_DISPLAY_NAME = "Bean Factory";
599 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
600 | CLANG_ENABLE_MODULES = YES;
601 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
602 | ENABLE_BITCODE = NO;
603 | INFOPLIST_FILE = Runner/Info.plist;
604 | LD_RUNPATH_SEARCH_PATHS = (
605 | "$(inherited)",
606 | "@executable_path/Frameworks",
607 | );
608 | NEW_SETTING1 = "";
609 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample.coffee;
610 | PRODUCT_NAME = "$(TARGET_NAME)";
611 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
612 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
613 | SWIFT_VERSION = 5.0;
614 | VERSIONING_SYSTEM = "apple-generic";
615 | };
616 | name = "Debug-coffee";
617 | };
618 | 904FCFCD2627152100EA9B62 /* Release-coffee */ = {
619 | isa = XCBuildConfiguration;
620 | buildSettings = {
621 | ALWAYS_SEARCH_USER_PATHS = NO;
622 | CLANG_ANALYZER_NONNULL = YES;
623 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
624 | CLANG_CXX_LIBRARY = "libc++";
625 | CLANG_ENABLE_MODULES = YES;
626 | CLANG_ENABLE_OBJC_ARC = YES;
627 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
628 | CLANG_WARN_BOOL_CONVERSION = YES;
629 | CLANG_WARN_COMMA = YES;
630 | CLANG_WARN_CONSTANT_CONVERSION = YES;
631 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
632 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
633 | CLANG_WARN_EMPTY_BODY = YES;
634 | CLANG_WARN_ENUM_CONVERSION = YES;
635 | CLANG_WARN_INFINITE_RECURSION = YES;
636 | CLANG_WARN_INT_CONVERSION = YES;
637 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
638 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
639 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
640 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
641 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
642 | CLANG_WARN_STRICT_PROTOTYPES = YES;
643 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
644 | CLANG_WARN_UNREACHABLE_CODE = YES;
645 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
646 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
647 | COPY_PHASE_STRIP = NO;
648 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
649 | ENABLE_NS_ASSERTIONS = NO;
650 | ENABLE_STRICT_OBJC_MSGSEND = YES;
651 | GCC_C_LANGUAGE_STANDARD = gnu99;
652 | GCC_NO_COMMON_BLOCKS = YES;
653 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
654 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
655 | GCC_WARN_UNDECLARED_SELECTOR = YES;
656 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
657 | GCC_WARN_UNUSED_FUNCTION = YES;
658 | GCC_WARN_UNUSED_VARIABLE = YES;
659 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
660 | MTL_ENABLE_DEBUG_INFO = NO;
661 | NEW_SETTING = "";
662 | SDKROOT = iphoneos;
663 | SUPPORTED_PLATFORMS = iphoneos;
664 | SWIFT_COMPILATION_MODE = wholemodule;
665 | SWIFT_OPTIMIZATION_LEVEL = "-O";
666 | TARGETED_DEVICE_FAMILY = "1,2";
667 | VALIDATE_PRODUCT = YES;
668 | };
669 | name = "Release-coffee";
670 | };
671 | 904FCFCE2627152100EA9B62 /* Release-coffee */ = {
672 | isa = XCBuildConfiguration;
673 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
674 | buildSettings = {
675 | APP_DISPLAY_NAME = "Bean Factory";
676 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
677 | CLANG_ENABLE_MODULES = YES;
678 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
679 | ENABLE_BITCODE = NO;
680 | INFOPLIST_FILE = Runner/Info.plist;
681 | LD_RUNPATH_SEARCH_PATHS = (
682 | "$(inherited)",
683 | "@executable_path/Frameworks",
684 | );
685 | NEW_SETTING1 = "";
686 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample.coffee;
687 | PRODUCT_NAME = "$(TARGET_NAME)";
688 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
689 | SWIFT_VERSION = 5.0;
690 | VERSIONING_SYSTEM = "apple-generic";
691 | };
692 | name = "Release-coffee";
693 | };
694 | 904FCFCF2627152700EA9B62 /* Profile-coffee */ = {
695 | isa = XCBuildConfiguration;
696 | buildSettings = {
697 | ALWAYS_SEARCH_USER_PATHS = NO;
698 | CLANG_ANALYZER_NONNULL = YES;
699 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
700 | CLANG_CXX_LIBRARY = "libc++";
701 | CLANG_ENABLE_MODULES = YES;
702 | CLANG_ENABLE_OBJC_ARC = YES;
703 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
704 | CLANG_WARN_BOOL_CONVERSION = YES;
705 | CLANG_WARN_COMMA = YES;
706 | CLANG_WARN_CONSTANT_CONVERSION = YES;
707 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
708 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
709 | CLANG_WARN_EMPTY_BODY = YES;
710 | CLANG_WARN_ENUM_CONVERSION = YES;
711 | CLANG_WARN_INFINITE_RECURSION = YES;
712 | CLANG_WARN_INT_CONVERSION = YES;
713 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
714 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
715 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
716 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
717 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
718 | CLANG_WARN_STRICT_PROTOTYPES = YES;
719 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
720 | CLANG_WARN_UNREACHABLE_CODE = YES;
721 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
722 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
723 | COPY_PHASE_STRIP = NO;
724 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
725 | ENABLE_NS_ASSERTIONS = NO;
726 | ENABLE_STRICT_OBJC_MSGSEND = YES;
727 | GCC_C_LANGUAGE_STANDARD = gnu99;
728 | GCC_NO_COMMON_BLOCKS = YES;
729 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
730 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
731 | GCC_WARN_UNDECLARED_SELECTOR = YES;
732 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
733 | GCC_WARN_UNUSED_FUNCTION = YES;
734 | GCC_WARN_UNUSED_VARIABLE = YES;
735 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
736 | MTL_ENABLE_DEBUG_INFO = NO;
737 | NEW_SETTING = "";
738 | SDKROOT = iphoneos;
739 | SUPPORTED_PLATFORMS = iphoneos;
740 | TARGETED_DEVICE_FAMILY = "1,2";
741 | VALIDATE_PRODUCT = YES;
742 | };
743 | name = "Profile-coffee";
744 | };
745 | 904FCFD02627152700EA9B62 /* Profile-coffee */ = {
746 | isa = XCBuildConfiguration;
747 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
748 | buildSettings = {
749 | APP_DISPLAY_NAME = "Bean Factory";
750 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
751 | CLANG_ENABLE_MODULES = YES;
752 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
753 | ENABLE_BITCODE = NO;
754 | INFOPLIST_FILE = Runner/Info.plist;
755 | LD_RUNPATH_SEARCH_PATHS = (
756 | "$(inherited)",
757 | "@executable_path/Frameworks",
758 | );
759 | NEW_SETTING1 = "";
760 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample.coffee;
761 | PRODUCT_NAME = "$(TARGET_NAME)";
762 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
763 | SWIFT_VERSION = 5.0;
764 | VERSIONING_SYSTEM = "apple-generic";
765 | };
766 | name = "Profile-coffee";
767 | };
768 | 97C147031CF9000F007C117D /* Debug */ = {
769 | isa = XCBuildConfiguration;
770 | buildSettings = {
771 | ALWAYS_SEARCH_USER_PATHS = NO;
772 | CLANG_ANALYZER_NONNULL = YES;
773 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
774 | CLANG_CXX_LIBRARY = "libc++";
775 | CLANG_ENABLE_MODULES = YES;
776 | CLANG_ENABLE_OBJC_ARC = YES;
777 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
778 | CLANG_WARN_BOOL_CONVERSION = YES;
779 | CLANG_WARN_COMMA = YES;
780 | CLANG_WARN_CONSTANT_CONVERSION = YES;
781 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
782 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
783 | CLANG_WARN_EMPTY_BODY = YES;
784 | CLANG_WARN_ENUM_CONVERSION = YES;
785 | CLANG_WARN_INFINITE_RECURSION = YES;
786 | CLANG_WARN_INT_CONVERSION = YES;
787 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
788 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
789 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
790 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
791 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
792 | CLANG_WARN_STRICT_PROTOTYPES = YES;
793 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
794 | CLANG_WARN_UNREACHABLE_CODE = YES;
795 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
796 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
797 | COPY_PHASE_STRIP = NO;
798 | DEBUG_INFORMATION_FORMAT = dwarf;
799 | ENABLE_STRICT_OBJC_MSGSEND = YES;
800 | ENABLE_TESTABILITY = YES;
801 | GCC_C_LANGUAGE_STANDARD = gnu99;
802 | GCC_DYNAMIC_NO_PIC = NO;
803 | GCC_NO_COMMON_BLOCKS = YES;
804 | GCC_OPTIMIZATION_LEVEL = 0;
805 | GCC_PREPROCESSOR_DEFINITIONS = (
806 | "DEBUG=1",
807 | "$(inherited)",
808 | );
809 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
810 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
811 | GCC_WARN_UNDECLARED_SELECTOR = YES;
812 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
813 | GCC_WARN_UNUSED_FUNCTION = YES;
814 | GCC_WARN_UNUSED_VARIABLE = YES;
815 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
816 | MTL_ENABLE_DEBUG_INFO = YES;
817 | NEW_SETTING = "";
818 | ONLY_ACTIVE_ARCH = YES;
819 | SDKROOT = iphoneos;
820 | TARGETED_DEVICE_FAMILY = "1,2";
821 | };
822 | name = Debug;
823 | };
824 | 97C147041CF9000F007C117D /* Release */ = {
825 | isa = XCBuildConfiguration;
826 | buildSettings = {
827 | ALWAYS_SEARCH_USER_PATHS = NO;
828 | CLANG_ANALYZER_NONNULL = YES;
829 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
830 | CLANG_CXX_LIBRARY = "libc++";
831 | CLANG_ENABLE_MODULES = YES;
832 | CLANG_ENABLE_OBJC_ARC = YES;
833 | CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
834 | CLANG_WARN_BOOL_CONVERSION = YES;
835 | CLANG_WARN_COMMA = YES;
836 | CLANG_WARN_CONSTANT_CONVERSION = YES;
837 | CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
838 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
839 | CLANG_WARN_EMPTY_BODY = YES;
840 | CLANG_WARN_ENUM_CONVERSION = YES;
841 | CLANG_WARN_INFINITE_RECURSION = YES;
842 | CLANG_WARN_INT_CONVERSION = YES;
843 | CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
844 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
845 | CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
846 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
847 | CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
848 | CLANG_WARN_STRICT_PROTOTYPES = YES;
849 | CLANG_WARN_SUSPICIOUS_MOVE = YES;
850 | CLANG_WARN_UNREACHABLE_CODE = YES;
851 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
852 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
853 | COPY_PHASE_STRIP = NO;
854 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
855 | ENABLE_NS_ASSERTIONS = NO;
856 | ENABLE_STRICT_OBJC_MSGSEND = YES;
857 | GCC_C_LANGUAGE_STANDARD = gnu99;
858 | GCC_NO_COMMON_BLOCKS = YES;
859 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
860 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
861 | GCC_WARN_UNDECLARED_SELECTOR = YES;
862 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
863 | GCC_WARN_UNUSED_FUNCTION = YES;
864 | GCC_WARN_UNUSED_VARIABLE = YES;
865 | IPHONEOS_DEPLOYMENT_TARGET = 9.0;
866 | MTL_ENABLE_DEBUG_INFO = NO;
867 | NEW_SETTING = "";
868 | SDKROOT = iphoneos;
869 | SUPPORTED_PLATFORMS = iphoneos;
870 | SWIFT_COMPILATION_MODE = wholemodule;
871 | SWIFT_OPTIMIZATION_LEVEL = "-O";
872 | TARGETED_DEVICE_FAMILY = "1,2";
873 | VALIDATE_PRODUCT = YES;
874 | };
875 | name = Release;
876 | };
877 | 97C147061CF9000F007C117D /* Debug */ = {
878 | isa = XCBuildConfiguration;
879 | baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */;
880 | buildSettings = {
881 | APP_DISPLAY_NAME = "Default Flutter";
882 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
883 | CLANG_ENABLE_MODULES = YES;
884 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
885 | ENABLE_BITCODE = NO;
886 | INFOPLIST_FILE = Runner/Info.plist;
887 | LD_RUNPATH_SEARCH_PATHS = (
888 | "$(inherited)",
889 | "@executable_path/Frameworks",
890 | );
891 | NEW_SETTING1 = "";
892 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample;
893 | PRODUCT_NAME = "$(TARGET_NAME)";
894 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
895 | SWIFT_OPTIMIZATION_LEVEL = "-Onone";
896 | SWIFT_VERSION = 5.0;
897 | VERSIONING_SYSTEM = "apple-generic";
898 | };
899 | name = Debug;
900 | };
901 | 97C147071CF9000F007C117D /* Release */ = {
902 | isa = XCBuildConfiguration;
903 | baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */;
904 | buildSettings = {
905 | APP_DISPLAY_NAME = "Default Flutter";
906 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
907 | CLANG_ENABLE_MODULES = YES;
908 | CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)";
909 | ENABLE_BITCODE = NO;
910 | INFOPLIST_FILE = Runner/Info.plist;
911 | LD_RUNPATH_SEARCH_PATHS = (
912 | "$(inherited)",
913 | "@executable_path/Frameworks",
914 | );
915 | NEW_SETTING1 = "";
916 | PRODUCT_BUNDLE_IDENTIFIER = dev.flutterexplained.flavourExample;
917 | PRODUCT_NAME = "$(TARGET_NAME)";
918 | SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h";
919 | SWIFT_VERSION = 5.0;
920 | VERSIONING_SYSTEM = "apple-generic";
921 | };
922 | name = Release;
923 | };
924 | /* End XCBuildConfiguration section */
925 |
926 | /* Begin XCConfigurationList section */
927 | 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = {
928 | isa = XCConfigurationList;
929 | buildConfigurations = (
930 | 97C147031CF9000F007C117D /* Debug */,
931 | 904FCFC52627150800EA9B62 /* Debug-cookie */,
932 | 904FCFCB2627151A00EA9B62 /* Debug-coffee */,
933 | 97C147041CF9000F007C117D /* Release */,
934 | 904FCFC72627150D00EA9B62 /* Release-cookie */,
935 | 904FCFCD2627152100EA9B62 /* Release-coffee */,
936 | 249021D3217E4FDB00AE95B9 /* Profile */,
937 | 904FCFC92627151400EA9B62 /* Profile-cookie */,
938 | 904FCFCF2627152700EA9B62 /* Profile-coffee */,
939 | );
940 | defaultConfigurationIsVisible = 0;
941 | defaultConfigurationName = Release;
942 | };
943 | 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = {
944 | isa = XCConfigurationList;
945 | buildConfigurations = (
946 | 97C147061CF9000F007C117D /* Debug */,
947 | 904FCFC62627150800EA9B62 /* Debug-cookie */,
948 | 904FCFCC2627151A00EA9B62 /* Debug-coffee */,
949 | 97C147071CF9000F007C117D /* Release */,
950 | 904FCFC82627150D00EA9B62 /* Release-cookie */,
951 | 904FCFCE2627152100EA9B62 /* Release-coffee */,
952 | 249021D4217E4FDB00AE95B9 /* Profile */,
953 | 904FCFCA2627151400EA9B62 /* Profile-cookie */,
954 | 904FCFD02627152700EA9B62 /* Profile-coffee */,
955 | );
956 | defaultConfigurationIsVisible = 0;
957 | defaultConfigurationName = Release;
958 | };
959 | /* End XCConfigurationList section */
960 | };
961 | rootObject = 97C146E61CF9000F007C117D /* Project object */;
962 | }
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/project.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/xcshareddata/xcschemes/Runner.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
37 |
38 |
39 |
40 |
41 |
42 |
52 |
54 |
60 |
61 |
62 |
63 |
69 |
71 |
77 |
78 |
79 |
80 |
82 |
83 |
86 |
87 |
88 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/xcshareddata/xcschemes/coffee.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
43 |
45 |
51 |
52 |
53 |
54 |
60 |
62 |
68 |
69 |
70 |
71 |
73 |
74 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/ios/Runner.xcodeproj/xcshareddata/xcschemes/cookie.xcscheme:
--------------------------------------------------------------------------------
1 |
2 |
5 |
8 |
9 |
15 |
21 |
22 |
23 |
24 |
25 |
30 |
31 |
32 |
33 |
43 |
45 |
51 |
52 |
53 |
54 |
60 |
62 |
68 |
69 |
70 |
71 |
73 |
74 |
77 |
78 |
79 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/contents.xcworkspacedata:
--------------------------------------------------------------------------------
1 |
2 |
4 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | IDEDidComputeMac32BitWarning
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | PreviewsEnabled
6 |
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 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-20x20@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-20x20@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-20x20@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-29x29@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-29x29@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-40x40@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-40x40@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-60x60@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-76x76@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/AppIcon-coffee-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-coffee.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {"images":[{"size":"20x20","idiom":"iphone","filename":"AppIcon-coffee-20x20@2x.png","scale":"2x"},{"size":"20x20","idiom":"iphone","filename":"AppIcon-coffee-20x20@3x.png","scale":"3x"},{"size":"29x29","idiom":"iphone","filename":"AppIcon-coffee-29x29@1x.png","scale":"1x"},{"size":"29x29","idiom":"iphone","filename":"AppIcon-coffee-29x29@2x.png","scale":"2x"},{"size":"29x29","idiom":"iphone","filename":"AppIcon-coffee-29x29@3x.png","scale":"3x"},{"size":"40x40","idiom":"iphone","filename":"AppIcon-coffee-40x40@2x.png","scale":"2x"},{"size":"40x40","idiom":"iphone","filename":"AppIcon-coffee-40x40@3x.png","scale":"3x"},{"size":"60x60","idiom":"iphone","filename":"AppIcon-coffee-60x60@2x.png","scale":"2x"},{"size":"60x60","idiom":"iphone","filename":"AppIcon-coffee-60x60@3x.png","scale":"3x"},{"size":"20x20","idiom":"ipad","filename":"AppIcon-coffee-20x20@1x.png","scale":"1x"},{"size":"20x20","idiom":"ipad","filename":"AppIcon-coffee-20x20@2x.png","scale":"2x"},{"size":"29x29","idiom":"ipad","filename":"AppIcon-coffee-29x29@1x.png","scale":"1x"},{"size":"29x29","idiom":"ipad","filename":"AppIcon-coffee-29x29@2x.png","scale":"2x"},{"size":"40x40","idiom":"ipad","filename":"AppIcon-coffee-40x40@1x.png","scale":"1x"},{"size":"40x40","idiom":"ipad","filename":"AppIcon-coffee-40x40@2x.png","scale":"2x"},{"size":"76x76","idiom":"ipad","filename":"AppIcon-coffee-76x76@1x.png","scale":"1x"},{"size":"76x76","idiom":"ipad","filename":"AppIcon-coffee-76x76@2x.png","scale":"2x"},{"size":"83.5x83.5","idiom":"ipad","filename":"AppIcon-coffee-83.5x83.5@2x.png","scale":"2x"},{"size":"1024x1024","idiom":"ios-marketing","filename":"AppIcon-coffee-1024x1024@1x.png","scale":"1x"}],"info":{"version":1,"author":"xcode"}}
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-20x20@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-20x20@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-20x20@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-20x20@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-20x20@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-29x29@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-29x29@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-29x29@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-29x29@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-29x29@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-29x29@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-40x40@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-40x40@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-40x40@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-40x40@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-40x40@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-40x40@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-60x60@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-60x60@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-60x60@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-60x60@3x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-76x76@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-76x76@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-76x76@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/AppIcon-cookie-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon-cookie.appiconset/Contents.json:
--------------------------------------------------------------------------------
1 | {"images":[{"size":"20x20","idiom":"iphone","filename":"AppIcon-cookie-20x20@2x.png","scale":"2x"},{"size":"20x20","idiom":"iphone","filename":"AppIcon-cookie-20x20@3x.png","scale":"3x"},{"size":"29x29","idiom":"iphone","filename":"AppIcon-cookie-29x29@1x.png","scale":"1x"},{"size":"29x29","idiom":"iphone","filename":"AppIcon-cookie-29x29@2x.png","scale":"2x"},{"size":"29x29","idiom":"iphone","filename":"AppIcon-cookie-29x29@3x.png","scale":"3x"},{"size":"40x40","idiom":"iphone","filename":"AppIcon-cookie-40x40@2x.png","scale":"2x"},{"size":"40x40","idiom":"iphone","filename":"AppIcon-cookie-40x40@3x.png","scale":"3x"},{"size":"60x60","idiom":"iphone","filename":"AppIcon-cookie-60x60@2x.png","scale":"2x"},{"size":"60x60","idiom":"iphone","filename":"AppIcon-cookie-60x60@3x.png","scale":"3x"},{"size":"20x20","idiom":"ipad","filename":"AppIcon-cookie-20x20@1x.png","scale":"1x"},{"size":"20x20","idiom":"ipad","filename":"AppIcon-cookie-20x20@2x.png","scale":"2x"},{"size":"29x29","idiom":"ipad","filename":"AppIcon-cookie-29x29@1x.png","scale":"1x"},{"size":"29x29","idiom":"ipad","filename":"AppIcon-cookie-29x29@2x.png","scale":"2x"},{"size":"40x40","idiom":"ipad","filename":"AppIcon-cookie-40x40@1x.png","scale":"1x"},{"size":"40x40","idiom":"ipad","filename":"AppIcon-cookie-40x40@2x.png","scale":"2x"},{"size":"76x76","idiom":"ipad","filename":"AppIcon-cookie-76x76@1x.png","scale":"1x"},{"size":"76x76","idiom":"ipad","filename":"AppIcon-cookie-76x76@2x.png","scale":"2x"},{"size":"83.5x83.5","idiom":"ipad","filename":"AppIcon-cookie-83.5x83.5@2x.png","scale":"2x"},{"size":"1024x1024","idiom":"ios-marketing","filename":"AppIcon-cookie-1024x1024@1x.png","scale":"1x"}],"info":{"version":1,"author":"xcode"}}
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/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/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png
--------------------------------------------------------------------------------
/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Flutter-Explained/flavor_tutorial/d0e943b6b3f65b5293136303a0467b966f88da1f/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png
--------------------------------------------------------------------------------
/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.
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/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 |
--------------------------------------------------------------------------------
/ios/Runner/Info.plist:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | CFBundleDevelopmentRegion
6 | $(DEVELOPMENT_LANGUAGE)
7 | CFBundleDisplayName
8 | $(APP_DISPLAY_NAME)
9 | CFBundleExecutable
10 | $(EXECUTABLE_NAME)
11 | CFBundleIdentifier
12 | $(PRODUCT_BUNDLE_IDENTIFIER)
13 | CFBundleInfoDictionaryVersion
14 | 6.0
15 | CFBundleName
16 | flavour_example
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 |
47 |
48 |
--------------------------------------------------------------------------------
/ios/Runner/Runner-Bridging-Header.h:
--------------------------------------------------------------------------------
1 | #import "GeneratedPluginRegistrant.h"
2 |
--------------------------------------------------------------------------------
/lib/flavor_config.dart:
--------------------------------------------------------------------------------
1 | import 'package:flutter/material.dart';
2 |
3 | enum Endpoints { items, details }
4 |
5 | class FlavorConfig {
6 | String appTitle;
7 | Map apiEndpoint;
8 | String imageLocation;
9 | ThemeData theme;
10 |
11 | FlavorConfig();
12 | }
13 |
--------------------------------------------------------------------------------
/lib/main_coffee.dart:
--------------------------------------------------------------------------------
1 | import 'package:flavour_example/flavor_config.dart';
2 | import 'package:flavour_example/main_common.dart';
3 | import 'package:flutter/material.dart';
4 |
5 | void main() {
6 | // Inject our own configurations
7 | // Coffee Beans
8 |
9 | mainCommon(
10 | FlavorConfig()
11 | ..appTitle = "Beans Factory"
12 | ..apiEndpoint = {
13 | Endpoints.items: "random.api.dev/items",
14 | Endpoints.details: "random.api.dev/item"
15 | }
16 | ..imageLocation = "assets/images/coffee_bean.jpg"
17 | ..theme = ThemeData.light().copyWith(
18 | primaryColor: Color(0xFF123456),
19 | appBarTheme: ThemeData.light().appBarTheme.copyWith(
20 | backgroundColor: Color(0xFF654321),
21 | ),
22 | ),
23 | );
24 | }
25 |
--------------------------------------------------------------------------------
/lib/main_common.dart:
--------------------------------------------------------------------------------
1 | import 'package:flavour_example/flavor_config.dart';
2 | import 'package:flutter/material.dart';
3 | import 'package:flutter_riverpod/flutter_riverpod.dart';
4 |
5 | var flavorConfigProvider;
6 |
7 | void mainCommon(FlavorConfig config) {
8 | flavorConfigProvider = StateProvider((ref) => config);
9 |
10 | runApp(
11 | ProviderScope(
12 | child: MyApp(),
13 | ),
14 | );
15 | }
16 |
17 | class MyApp extends StatelessWidget {
18 | // This widget is the root of your application.
19 | @override
20 | Widget build(BuildContext context) {
21 | return MaterialApp(
22 | title: context.read(flavorConfigProvider).state.appTitle,
23 | theme: context.read(flavorConfigProvider).state.theme,
24 | home: MyHomePage(),
25 | );
26 | }
27 | }
28 |
29 | class MyHomePage extends StatefulWidget {
30 | @override
31 | _MyHomePageState createState() => _MyHomePageState();
32 | }
33 |
34 | class _MyHomePageState extends State {
35 | @override
36 | Widget build(BuildContext context) {
37 | print(context.read(flavorConfigProvider).state.appTitle);
38 | return Scaffold(
39 | appBar: AppBar(
40 | title: Text(context.read(flavorConfigProvider).state.appTitle),
41 | ),
42 | body: Image.asset(
43 | context.read(flavorConfigProvider).state.imageLocation,
44 | fit: BoxFit.cover,
45 | ),
46 | );
47 | }
48 | }
49 |
--------------------------------------------------------------------------------
/lib/main_cookie.dart:
--------------------------------------------------------------------------------
1 | import 'package:flavour_example/flavor_config.dart';
2 | import 'package:flavour_example/main_common.dart';
3 | import 'package:flutter/material.dart';
4 |
5 | void main() {
6 | // Inject our own configurations
7 | // Crunchy Munchy
8 |
9 | mainCommon(
10 | FlavorConfig()
11 | ..appTitle = "Munchy Crunchy"
12 | ..imageLocation = "assets/images/munchy_crunchy.jpg"
13 | ..apiEndpoint = {
14 | Endpoints.items: "api.munchycrunchy.dev/items",
15 | Endpoints.details: "api.munchycrunchy.dev/items"
16 | }
17 | ..theme = ThemeData.dark(),
18 | );
19 | }
20 |
--------------------------------------------------------------------------------
/pubspec.lock:
--------------------------------------------------------------------------------
1 | # Generated by pub
2 | # See https://dart.dev/tools/pub/glossary#lockfile
3 | packages:
4 | archive:
5 | dependency: transitive
6 | description:
7 | name: archive
8 | url: "https://pub.dartlang.org"
9 | source: hosted
10 | version: "2.0.13"
11 | args:
12 | dependency: transitive
13 | description:
14 | name: args
15 | url: "https://pub.dartlang.org"
16 | source: hosted
17 | version: "1.6.0"
18 | async:
19 | dependency: transitive
20 | description:
21 | name: async
22 | url: "https://pub.dartlang.org"
23 | source: hosted
24 | version: "2.5.0"
25 | boolean_selector:
26 | dependency: transitive
27 | description:
28 | name: boolean_selector
29 | url: "https://pub.dartlang.org"
30 | source: hosted
31 | version: "2.1.0"
32 | characters:
33 | dependency: transitive
34 | description:
35 | name: characters
36 | url: "https://pub.dartlang.org"
37 | source: hosted
38 | version: "1.1.0"
39 | charcode:
40 | dependency: transitive
41 | description:
42 | name: charcode
43 | url: "https://pub.dartlang.org"
44 | source: hosted
45 | version: "1.2.0"
46 | clock:
47 | dependency: transitive
48 | description:
49 | name: clock
50 | url: "https://pub.dartlang.org"
51 | source: hosted
52 | version: "1.1.0"
53 | collection:
54 | dependency: transitive
55 | description:
56 | name: collection
57 | url: "https://pub.dartlang.org"
58 | source: hosted
59 | version: "1.15.0"
60 | convert:
61 | dependency: transitive
62 | description:
63 | name: convert
64 | url: "https://pub.dartlang.org"
65 | source: hosted
66 | version: "2.1.1"
67 | crypto:
68 | dependency: transitive
69 | description:
70 | name: crypto
71 | url: "https://pub.dartlang.org"
72 | source: hosted
73 | version: "2.1.5"
74 | cupertino_icons:
75 | dependency: "direct main"
76 | description:
77 | name: cupertino_icons
78 | url: "https://pub.dartlang.org"
79 | source: hosted
80 | version: "1.0.2"
81 | fake_async:
82 | dependency: transitive
83 | description:
84 | name: fake_async
85 | url: "https://pub.dartlang.org"
86 | source: hosted
87 | version: "1.2.0"
88 | flutter:
89 | dependency: "direct main"
90 | description: flutter
91 | source: sdk
92 | version: "0.0.0"
93 | flutter_launcher_icons:
94 | dependency: "direct dev"
95 | description:
96 | name: flutter_launcher_icons
97 | url: "https://pub.dartlang.org"
98 | source: hosted
99 | version: "0.8.1"
100 | flutter_riverpod:
101 | dependency: "direct main"
102 | description:
103 | name: flutter_riverpod
104 | url: "https://pub.dartlang.org"
105 | source: hosted
106 | version: "0.14.0+1"
107 | flutter_test:
108 | dependency: "direct dev"
109 | description: flutter
110 | source: sdk
111 | version: "0.0.0"
112 | freezed_annotation:
113 | dependency: transitive
114 | description:
115 | name: freezed_annotation
116 | url: "https://pub.dartlang.org"
117 | source: hosted
118 | version: "0.14.1"
119 | image:
120 | dependency: transitive
121 | description:
122 | name: image
123 | url: "https://pub.dartlang.org"
124 | source: hosted
125 | version: "2.1.19"
126 | json_annotation:
127 | dependency: transitive
128 | description:
129 | name: json_annotation
130 | url: "https://pub.dartlang.org"
131 | source: hosted
132 | version: "4.0.1"
133 | matcher:
134 | dependency: transitive
135 | description:
136 | name: matcher
137 | url: "https://pub.dartlang.org"
138 | source: hosted
139 | version: "0.12.10"
140 | meta:
141 | dependency: transitive
142 | description:
143 | name: meta
144 | url: "https://pub.dartlang.org"
145 | source: hosted
146 | version: "1.3.0"
147 | path:
148 | dependency: transitive
149 | description:
150 | name: path
151 | url: "https://pub.dartlang.org"
152 | source: hosted
153 | version: "1.8.0"
154 | petitparser:
155 | dependency: transitive
156 | description:
157 | name: petitparser
158 | url: "https://pub.dartlang.org"
159 | source: hosted
160 | version: "3.1.0"
161 | riverpod:
162 | dependency: transitive
163 | description:
164 | name: riverpod
165 | url: "https://pub.dartlang.org"
166 | source: hosted
167 | version: "0.14.0+1"
168 | sky_engine:
169 | dependency: transitive
170 | description: flutter
171 | source: sdk
172 | version: "0.0.99"
173 | source_span:
174 | dependency: transitive
175 | description:
176 | name: source_span
177 | url: "https://pub.dartlang.org"
178 | source: hosted
179 | version: "1.8.0"
180 | stack_trace:
181 | dependency: transitive
182 | description:
183 | name: stack_trace
184 | url: "https://pub.dartlang.org"
185 | source: hosted
186 | version: "1.10.0"
187 | state_notifier:
188 | dependency: transitive
189 | description:
190 | name: state_notifier
191 | url: "https://pub.dartlang.org"
192 | source: hosted
193 | version: "0.7.0"
194 | stream_channel:
195 | dependency: transitive
196 | description:
197 | name: stream_channel
198 | url: "https://pub.dartlang.org"
199 | source: hosted
200 | version: "2.1.0"
201 | string_scanner:
202 | dependency: transitive
203 | description:
204 | name: string_scanner
205 | url: "https://pub.dartlang.org"
206 | source: hosted
207 | version: "1.1.0"
208 | term_glyph:
209 | dependency: transitive
210 | description:
211 | name: term_glyph
212 | url: "https://pub.dartlang.org"
213 | source: hosted
214 | version: "1.2.0"
215 | test_api:
216 | dependency: transitive
217 | description:
218 | name: test_api
219 | url: "https://pub.dartlang.org"
220 | source: hosted
221 | version: "0.2.19"
222 | typed_data:
223 | dependency: transitive
224 | description:
225 | name: typed_data
226 | url: "https://pub.dartlang.org"
227 | source: hosted
228 | version: "1.3.0"
229 | vector_math:
230 | dependency: transitive
231 | description:
232 | name: vector_math
233 | url: "https://pub.dartlang.org"
234 | source: hosted
235 | version: "2.1.0"
236 | xml:
237 | dependency: transitive
238 | description:
239 | name: xml
240 | url: "https://pub.dartlang.org"
241 | source: hosted
242 | version: "4.5.1"
243 | yaml:
244 | dependency: transitive
245 | description:
246 | name: yaml
247 | url: "https://pub.dartlang.org"
248 | source: hosted
249 | version: "2.2.1"
250 | sdks:
251 | dart: ">=2.12.0 <3.0.0"
252 | flutter: ">=1.17.0"
253 |
--------------------------------------------------------------------------------
/pubspec.yaml:
--------------------------------------------------------------------------------
1 | name: flavour_example
2 | description: We want to test Flavours in Flutter.
3 |
4 | # The following line prevents the package from being accidentally published to
5 | # pub.dev using `pub publish`. This is preferred for private packages.
6 | publish_to: 'none' # Remove this line if you wish to publish to pub.dev
7 |
8 | # The following defines the version and build number for your application.
9 | # A version number is three numbers separated by dots, like 1.2.43
10 | # followed by an optional build number separated by a +.
11 | # Both the version and the builder number may be overridden in flutter
12 | # build by specifying --build-name and --build-number, respectively.
13 | # In Android, build-name is used as versionName while build-number used as versionCode.
14 | # Read more about Android versioning at https://developer.android.com/studio/publish/versioning
15 | # In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion.
16 | # Read more about iOS versioning at
17 | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
18 | version: 1.0.0+1
19 |
20 | environment:
21 | sdk: ">=2.7.0 <3.0.0"
22 |
23 | dependencies:
24 | flutter:
25 | sdk: flutter
26 |
27 |
28 | # The following adds the Cupertino Icons font to your application.
29 | # Use with the CupertinoIcons class for iOS style icons.
30 | cupertino_icons: ^1.0.2
31 | flutter_riverpod: ^0.14.0+1
32 |
33 | dev_dependencies:
34 | flutter_test:
35 | sdk: flutter
36 | flutter_launcher_icons: ^0.8.1
37 |
38 | # For information on the generic Dart part of this file, see the
39 | # following page: https://dart.dev/tools/pub/pubspec
40 |
41 | # The following section is specific to Flutter.
42 | flutter:
43 |
44 | # The following line ensures that the Material Icons font is
45 | # included with your application, so that you can use the icons in
46 | # the material Icons class.
47 | uses-material-design: true
48 |
49 | assets:
50 | - assets/images/
51 |
52 | # To add assets to your application, add an assets section, like this:
53 | # assets:
54 | # - images/a_dot_burr.jpeg
55 | # - images/a_dot_ham.jpeg
56 |
57 | # An image asset can refer to one or more resolution-specific "variants", see
58 | # https://flutter.dev/assets-and-images/#resolution-aware.
59 |
60 | # For details regarding adding assets from package dependencies, see
61 | # https://flutter.dev/assets-and-images/#from-packages
62 |
63 | # To add custom fonts to your application, add a fonts section here,
64 | # in this "flutter" section. Each entry in this list should have a
65 | # "family" key with the font family name, and a "fonts" key with a
66 | # list giving the asset and other descriptors for the font. For
67 | # example:
68 | # fonts:
69 | # - family: Schyler
70 | # fonts:
71 | # - asset: fonts/Schyler-Regular.ttf
72 | # - asset: fonts/Schyler-Italic.ttf
73 | # style: italic
74 | # - family: Trajan Pro
75 | # fonts:
76 | # - asset: fonts/TrajanPro.ttf
77 | # - asset: fonts/TrajanPro_Bold.ttf
78 | # weight: 700
79 | #
80 | # For details regarding fonts from package dependencies,
81 | # see https://flutter.dev/custom-fonts/#from-packages
82 |
--------------------------------------------------------------------------------
/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 widgets in the widget
6 | // tree, read text, and verify that the values of widget properties are correct.
7 |
8 | import 'package:flavour_example/main_common.dart';
9 | import 'package:flutter/material.dart';
10 | import 'package:flutter_test/flutter_test.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(MyApp());
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 |
--------------------------------------------------------------------------------
/tools/generate_flutter_icons.ps1:
--------------------------------------------------------------------------------
1 | flutter pub run flutter_launcher_icons:main -f flutter_launcher_icons*
--------------------------------------------------------------------------------
/tools/generate_flutter_icons.sh:
--------------------------------------------------------------------------------
1 | flutter pub run flutter_launcher_icons:main -f flutter_launcher_icons*
--------------------------------------------------------------------------------