Merge pull request 'Build pipeline for both platforms' (#42) from feature/frontend/ios-builds into main
Reviewed-on: #42
This commit is contained in:
		| @@ -39,11 +39,23 @@ jobs: | |||||||
|           # remove the 'v' prefix from the tag name |           # remove the 'v' prefix from the tag name | ||||||
|           echo "BUILD_NAME=${REF_NAME//v}" >> $GITHUB_ENV |           echo "BUILD_NAME=${REF_NAME//v}" >> $GITHUB_ENV | ||||||
|  |  | ||||||
|       - name: Load secrets from github |       - name: Load secrets | ||||||
|  |         id: load-secrets | ||||||
|  |         uses: hashicorp/vault-action@v3 | ||||||
|  |         with: | ||||||
|  |           url: https://api.hashicorp.com | ||||||
|  |           token: ${{ secrets.VAULT_TOKEN }} | ||||||
|  |           secrets: | | ||||||
|  |             secret/release GOOGLE_MAPS_API_KEY | GOOGLE_MAPS_API_KEY ; | ||||||
|  |             secret/release ANDROID_SECRET_PROPERTIES_BASE64 | ANDROID_SECRET_PROPERTIES_BASE64 ; | ||||||
|  |             secret/release ANDROID_GOOGLE_PLAY_JSON_BASE64 | ANDROID_GOOGLE_PLAY_JSON_BASE64 ; | ||||||
|  |             secret/release ANDROID_KEYSTORE_BASE64 | ANDROID_KEYSTORE_BASE64 ; | ||||||
|  |  | ||||||
|  |       - name: Put selected secrets into files | ||||||
|         run: | |         run: | | ||||||
|           echo "${{ secrets.ANDROID_SECRET_PROPERTIES_BASE64 }}" | base64 -d > secrets.properties |           echo "${{ steps.load-secrets.outputs.ANDROID_SECRET_PROPERTIES_BASE64 }}" | base64 -d > secrets.properties | ||||||
|           echo "${{ secrets.ANDROID_GOOGLE_PLAY_JSON_BASE64 }}" | base64 -d > google-key.json |           echo "${{ steps.load-secrets.outputs.ANDROID_GOOGLE_PLAY_JSON_BASE64 }}" | base64 -d > google-key.json | ||||||
|           echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore |           echo "${{ steps.load-secrets.outputs.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore | ||||||
|         working-directory: android |         working-directory: android | ||||||
|  |  | ||||||
|       - name: Install fastlane |       - name: Install fastlane | ||||||
| @@ -51,8 +63,9 @@ jobs: | |||||||
|         working-directory: android |         working-directory: android | ||||||
|  |  | ||||||
|       - name: Run fastlane lane |       - name: Run fastlane lane | ||||||
|         run: bundle exec fastlane deploy_testing |         run: bundle exec fastlane deploy_release | ||||||
|         working-directory: android |         working-directory: android | ||||||
|         env: |         env: | ||||||
|           BUILD_NUMBER: ${{ github.run_number }} |           BUILD_NUMBER: ${{ github.run_number }} | ||||||
|           # BUILD_NAME is implicitly available |           # BUILD_NAME is implicitly available | ||||||
|  |           GOOGLE_MAPS_API_KEY: ${{ steps.load-secrets.outputs.GOOGLE_MAPS_API_KEY }} | ||||||
|   | |||||||
							
								
								
									
										65
									
								
								frontend/.github/workflows/build_app_ios.yaml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								frontend/.github/workflows/build_app_ios.yaml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							| @@ -0,0 +1,65 @@ | |||||||
|  | on: | ||||||
|  |   push: | ||||||
|  |     tags: | ||||||
|  |       - 'v*' | ||||||
|  |  | ||||||
|  | jobs: | ||||||
|  |   build: | ||||||
|  |     runs-on: macos-latest | ||||||
|  |     steps: | ||||||
|  |       - uses: actions/checkout@v4 | ||||||
|  |  | ||||||
|  |       - name: Set up ruby env | ||||||
|  |         uses: ruby/setup-ruby@v1 | ||||||
|  |         with: | ||||||
|  |           ruby-version: 3.2.1 | ||||||
|  |           bundler-cache: true | ||||||
|  |  | ||||||
|  |       - name: Install Flutter | ||||||
|  |         uses: subosito/flutter-action@v2 | ||||||
|  |         with: | ||||||
|  |           channel: stable | ||||||
|  |           flutter-version: 3.22.0 | ||||||
|  |           cache: true | ||||||
|  |  | ||||||
|  |       - name: Infer version number from git tag | ||||||
|  |         id: version | ||||||
|  |         env:  | ||||||
|  |           REF_NAME: ${{ github.ref_name }} | ||||||
|  |         run: | ||||||
|  |           # remove the 'v' prefix from the tag name | ||||||
|  |           echo "BUILD_NAME=${REF_NAME//v}" >> $GITHUB_ENV | ||||||
|  |  | ||||||
|  |       - name: Load secrets | ||||||
|  |         id: load-secrets | ||||||
|  |         uses: hashicorp/vault-action@v3 | ||||||
|  |         with: | ||||||
|  |           url: https://api.hashicorp.com | ||||||
|  |           token: ${{ secrets.VAULT_TOKEN }} | ||||||
|  |           secrets: | | ||||||
|  |             secret/release GOOGLE_MAPS_API_KEY | GOOGLE_MAPS_API_KEY ; | ||||||
|  |             secret/release IOS_ASC_KEY_ID | IOS_ASC_KEY_ID ; | ||||||
|  |             secret/release IOS_ASC_ISSUER_ID | IOS_ASC_ISSUER_ID ; | ||||||
|  |             secret/release IOS_ASC_KEY | IOS_ASC_KEY ; | ||||||
|  |             secret/release IOS_MATCH_REPO_SSH_KEY_BASE64 | IOS_MATCH_REPO_SSH_KEY_BASE64 ; | ||||||
|  |  | ||||||
|  |       - name: Setup SSH key for match git repo | ||||||
|  |         run: echo "$MATCH_REPO_SSH_KEY" | base64 --decode > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa | ||||||
|  |         env: | ||||||
|  |           MATCH_REPO_SSH_KEY: ${{ steps.load-secrets.outputs.IOS_MATCH_REPO_SSH_KEY_BASE64 }} | ||||||
|  |  | ||||||
|  |       - name: Install fastlane | ||||||
|  |         run: bundle install | ||||||
|  |         working-directory: ios | ||||||
|  |  | ||||||
|  |       - name: Run fastlane lane | ||||||
|  |         run: bundle exec fastlane deploy_release | ||||||
|  |         working-directory: ios | ||||||
|  |         env: | ||||||
|  |           BUILD_NUMBER: ${{ github.run_number }} | ||||||
|  |           # BUILD_NAME is implicitly available | ||||||
|  |           GOOGLE_MAPS_API_KEY: ${{ steps.load-secrets.outputs.GOOGLE_MAPS_API_KEY }} | ||||||
|  |           IOS_ASC_KEY_ID: ${{ steps.load-secrets.outputs.IOS_ASC_KEY_ID }} | ||||||
|  |           IOS_ASC_ISSUER_ID: ${{ steps.load-secrets.outputs.IOS_ASC_ISSUER_ID }} | ||||||
|  |           IOS_ASC_KEY: ${{ steps.load-secrets.outputs.IOS_ASC_KEY }} | ||||||
|  |           MATCH_PASSWORD: ${{ steps.load-secrets.outputs.IOS_MATCH_PASSWORD }} | ||||||
| @@ -46,12 +46,17 @@ bundle exec fastlane <lane> | |||||||
| ``` | ``` | ||||||
| This is reused in the CI/CD pipeline to automate the deployment process. | This is reused in the CI/CD pipeline to automate the deployment process. | ||||||
|  |  | ||||||
| Fastlane assumes mutliple secrets to be present as files in the platform directories. These are: | Secrets used by fastlane are stored on hashicorp vault and are fetched by the CI/CD pipeline. See below. | ||||||
| - for android: |  | ||||||
|     - `secrets.properties` used by gradle to load secrets needed at execution time |  | ||||||
|     - `release.keystore` used by gradle to sign the apk |  | ||||||
|     - `google-key.json` used by fastlane to authenticate with the Google Play Store |  | ||||||
| - for ios: |  | ||||||
|     - TODO |  | ||||||
|  |  | ||||||
| These files are stored as secrets in the GitHub repository so that the CI pipeline can access them. | ## Secrets | ||||||
|  | These are mostly used by the CI/CD pipeline to deploy the application. The main usage for github actions is documented under [https://github.com/hashicorp/vault-action](https://github.com/hashicorp/vault-action). | ||||||
|  | **Global secrets** are used for both versions of the app (android and ios).  | ||||||
|  | - `GOOGLE_MAPS_API_KEY` is used to authenticate with the Google Maps API | ||||||
|  |  | ||||||
|  | **Platform-specific secrets** are used by the CI/CD pipeline to deploy to the respective app stores. | ||||||
|  | - `ANDROID_KEYSTORE` is used to sign the android apk | ||||||
|  | - `ANDROID_GOOGLE_KEY` is used to authenticate with the Google Play Store api | ||||||
|  | - `IOS_GOOGLE_...` | ||||||
|  | - `IOS_GOOGLE_...` | ||||||
|  | - `IOS_GOOGLE_...` | ||||||
|  | - `IOS_GOOGLE_...` | ||||||
| @@ -63,11 +63,3 @@ Compared to the flutter template application, a few changes have to be made: | |||||||
|         } |         } | ||||||
|     ``` |     ``` | ||||||
|  |  | ||||||
|  |  | ||||||
| ### Using the credentials in CI |  | ||||||
| - Add the secret files to the repository secrets (e.g. `ANDROID_SECRETS_PROPERTIES`). |  | ||||||
|  |  | ||||||
| - temporarily write them back to files during the CI execution: |  | ||||||
|     ```bash |  | ||||||
|     echo {{ secrets.ANDROID_SECRETS }} >> android/secrets.properties |  | ||||||
|     ``` |  | ||||||
|   | |||||||
| @@ -65,7 +65,7 @@ android { | |||||||
|     } |     } | ||||||
|  |  | ||||||
|     defaultConfig { |     defaultConfig { | ||||||
|         // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). |    | ||||||
|         applicationId "com.anydev.anyway" |         applicationId "com.anydev.anyway" | ||||||
|         // You can update the following values to match your application needs. |         // You can update the following values to match your application needs. | ||||||
|         // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. |         // For more information, see: https://docs.flutter.dev/deployment/android#reviewing-the-gradle-build-configuration. | ||||||
| @@ -77,7 +77,7 @@ android { | |||||||
|         versionCode flutterVersionCode.toInteger() |         versionCode flutterVersionCode.toInteger() | ||||||
|         versionName flutterVersionName |         versionName flutterVersionName | ||||||
|         // // Placeholders of keys that are replaced by the build system. |         // // Placeholders of keys that are replaced by the build system. | ||||||
|         manifestPlaceholders += ['MAPS_API_KEY': secretProperties.getProperty('MAPS_API_KEY')] |         manifestPlaceholders += ['MAPS_API_KEY': System.getenv('GOOGLE_MAPS_API_KEY')] | ||||||
|  |  | ||||||
|     } |     } | ||||||
|  |  | ||||||
|   | |||||||
| @@ -1,11 +1,8 @@ | |||||||
| # Uncomment the line if you want fastlane to automatically update itself |  | ||||||
| # update_fastlane |  | ||||||
|  |  | ||||||
| default_platform(:android) | default_platform(:android) | ||||||
|  |  | ||||||
| platform :android do | platform :android do | ||||||
|  |  | ||||||
|   desc "Deploy a new version to closed testing" |   desc "Deploy a new version to closed testing (play store)" | ||||||
|   lane :deploy_testing do |   lane :deploy_testing do | ||||||
|     build_name = ENV["BUILD_NAME"] |     build_name = ENV["BUILD_NAME"] | ||||||
|     build_number = ENV["BUILD_NUMBER"] |     build_number = ENV["BUILD_NUMBER"] | ||||||
| @@ -30,24 +27,26 @@ platform :android do | |||||||
|       ) |       ) | ||||||
|   end |   end | ||||||
|  |  | ||||||
|  |  | ||||||
|   desc "Deploy a new version as a full release" |   desc "Deploy a new version as a full release" | ||||||
|   lane :deploy_release do |   lane :deploy_release do | ||||||
|     gradle( |     build_name = ENV["BUILD_NAME"] | ||||||
|       task: "clean assembleRelease", |     build_number = ENV["BUILD_NUMBER"] | ||||||
|       # todo update to a flutter call |  | ||||||
|       properties: { |     sh( | ||||||
|         # loaded from environment |       "flutter", | ||||||
|         "android.injected.version.name" => ENV["VERSION_NAME"], |       "build", | ||||||
|       } |       "appbundle", | ||||||
|  |       "--release", | ||||||
|  |       "--build-name=#{build_name}", | ||||||
|  |       "--build-number=#{build_number}", | ||||||
|       ) |       ) | ||||||
|  |      | ||||||
|     upload_to_play_store( |     upload_to_play_store( | ||||||
|       track: "production", |       track: 'production', | ||||||
|       skip_upload_apk: true, |       skip_upload_apk: true, | ||||||
|       skip_upload_changelogs: true, |       skip_upload_changelogs: true, | ||||||
|       aab: "../build/app/outputs/bundle/release/app-release.aab", |       aab: "../build/app/outputs/bundle/release/app-release.aab", | ||||||
|       # this is the default output of flutter build ... --release |       ) | ||||||
|       # in particular this the build folder lies in the flutter root folder |  | ||||||
|       # this is the parent folder for the android folder |  | ||||||
|     ) |  | ||||||
|   end |   end | ||||||
| end | end | ||||||
|   | |||||||
							
								
								
									
										6
									
								
								frontend/ios/.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										6
									
								
								frontend/ios/.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -1,3 +1,9 @@ | |||||||
|  | # fastlane secret | ||||||
|  | .env | ||||||
|  | secret.env | ||||||
|  | *.mobileprovision | ||||||
|  | report.xml | ||||||
|  |  | ||||||
| **/dgph | **/dgph | ||||||
| *.mode1v3 | *.mode1v3 | ||||||
| *.mode2v3 | *.mode2v3 | ||||||
|   | |||||||
| @@ -1 +1,2 @@ | |||||||
|  | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" | ||||||
| #include "Generated.xcconfig" | #include "Generated.xcconfig" | ||||||
|   | |||||||
| @@ -1 +1,2 @@ | |||||||
|  | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" | ||||||
| #include "Generated.xcconfig" | #include "Generated.xcconfig" | ||||||
|   | |||||||
							
								
								
									
										5
									
								
								frontend/ios/Gemfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								frontend/ios/Gemfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,5 @@ | |||||||
|  | source "https://rubygems.org" | ||||||
|  |  | ||||||
|  | gem "fastlane" | ||||||
|  | gem "cocoapods" | ||||||
|  |  | ||||||
							
								
								
									
										288
									
								
								frontend/ios/Gemfile.lock
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										288
									
								
								frontend/ios/Gemfile.lock
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,288 @@ | |||||||
|  | GEM | ||||||
|  |   remote: https://rubygems.org/ | ||||||
|  |   specs: | ||||||
|  |     CFPropertyList (3.0.7) | ||||||
|  |       base64 | ||||||
|  |       nkf | ||||||
|  |       rexml | ||||||
|  |     activesupport (5.2.8.1) | ||||||
|  |       concurrent-ruby (~> 1.0, >= 1.0.2) | ||||||
|  |       i18n (>= 0.7, < 2) | ||||||
|  |       minitest (~> 5.1) | ||||||
|  |       tzinfo (~> 1.1) | ||||||
|  |     addressable (2.8.7) | ||||||
|  |       public_suffix (>= 2.0.2, < 7.0) | ||||||
|  |     algoliasearch (1.27.5) | ||||||
|  |       httpclient (~> 2.8, >= 2.8.3) | ||||||
|  |       json (>= 1.5.1) | ||||||
|  |     artifactory (3.0.17) | ||||||
|  |     atomos (0.1.3) | ||||||
|  |     aws-eventstream (1.3.0) | ||||||
|  |     aws-partitions (1.1004.0) | ||||||
|  |     aws-sdk-core (3.212.0) | ||||||
|  |       aws-eventstream (~> 1, >= 1.3.0) | ||||||
|  |       aws-partitions (~> 1, >= 1.992.0) | ||||||
|  |       aws-sigv4 (~> 1.9) | ||||||
|  |       jmespath (~> 1, >= 1.6.1) | ||||||
|  |     aws-sdk-kms (1.95.0) | ||||||
|  |       aws-sdk-core (~> 3, >= 3.210.0) | ||||||
|  |       aws-sigv4 (~> 1.5) | ||||||
|  |     aws-sdk-s3 (1.170.1) | ||||||
|  |       aws-sdk-core (~> 3, >= 3.210.0) | ||||||
|  |       aws-sdk-kms (~> 1) | ||||||
|  |       aws-sigv4 (~> 1.5) | ||||||
|  |     aws-sigv4 (1.10.1) | ||||||
|  |       aws-eventstream (~> 1, >= 1.0.2) | ||||||
|  |     babosa (1.0.4) | ||||||
|  |     base64 (0.2.0) | ||||||
|  |     claide (1.1.0) | ||||||
|  |     cocoapods (1.10.2) | ||||||
|  |       addressable (~> 2.6) | ||||||
|  |       claide (>= 1.0.2, < 2.0) | ||||||
|  |       cocoapods-core (= 1.10.2) | ||||||
|  |       cocoapods-deintegrate (>= 1.0.3, < 2.0) | ||||||
|  |       cocoapods-downloader (>= 1.4.0, < 2.0) | ||||||
|  |       cocoapods-plugins (>= 1.0.0, < 2.0) | ||||||
|  |       cocoapods-search (>= 1.0.0, < 2.0) | ||||||
|  |       cocoapods-trunk (>= 1.4.0, < 2.0) | ||||||
|  |       cocoapods-try (>= 1.1.0, < 2.0) | ||||||
|  |       colored2 (~> 3.1) | ||||||
|  |       escape (~> 0.0.4) | ||||||
|  |       fourflusher (>= 2.3.0, < 3.0) | ||||||
|  |       gh_inspector (~> 1.0) | ||||||
|  |       molinillo (~> 0.6.6) | ||||||
|  |       nap (~> 1.0) | ||||||
|  |       ruby-macho (~> 1.4) | ||||||
|  |       xcodeproj (>= 1.19.0, < 2.0) | ||||||
|  |     cocoapods-core (1.10.2) | ||||||
|  |       activesupport (> 5.0, < 6) | ||||||
|  |       addressable (~> 2.6) | ||||||
|  |       algoliasearch (~> 1.0) | ||||||
|  |       concurrent-ruby (~> 1.1) | ||||||
|  |       fuzzy_match (~> 2.0.4) | ||||||
|  |       nap (~> 1.0) | ||||||
|  |       netrc (~> 0.11) | ||||||
|  |       public_suffix | ||||||
|  |       typhoeus (~> 1.0) | ||||||
|  |     cocoapods-deintegrate (1.0.5) | ||||||
|  |     cocoapods-downloader (1.6.3) | ||||||
|  |     cocoapods-plugins (1.0.0) | ||||||
|  |       nap | ||||||
|  |     cocoapods-search (1.0.1) | ||||||
|  |     cocoapods-trunk (1.6.0) | ||||||
|  |       nap (>= 0.8, < 2.0) | ||||||
|  |       netrc (~> 0.11) | ||||||
|  |     cocoapods-try (1.2.0) | ||||||
|  |     colored (1.2) | ||||||
|  |     colored2 (3.1.2) | ||||||
|  |     commander (4.6.0) | ||||||
|  |       highline (~> 2.0.0) | ||||||
|  |     concurrent-ruby (1.3.4) | ||||||
|  |     declarative (0.0.20) | ||||||
|  |     digest-crc (0.6.5) | ||||||
|  |       rake (>= 12.0.0, < 14.0.0) | ||||||
|  |     domain_name (0.6.20240107) | ||||||
|  |     dotenv (2.8.1) | ||||||
|  |     emoji_regex (3.2.3) | ||||||
|  |     escape (0.0.4) | ||||||
|  |     ethon (0.16.0) | ||||||
|  |       ffi (>= 1.15.0) | ||||||
|  |     excon (0.112.0) | ||||||
|  |     faraday (1.10.4) | ||||||
|  |       faraday-em_http (~> 1.0) | ||||||
|  |       faraday-em_synchrony (~> 1.0) | ||||||
|  |       faraday-excon (~> 1.1) | ||||||
|  |       faraday-httpclient (~> 1.0) | ||||||
|  |       faraday-multipart (~> 1.0) | ||||||
|  |       faraday-net_http (~> 1.0) | ||||||
|  |       faraday-net_http_persistent (~> 1.0) | ||||||
|  |       faraday-patron (~> 1.0) | ||||||
|  |       faraday-rack (~> 1.0) | ||||||
|  |       faraday-retry (~> 1.0) | ||||||
|  |       ruby2_keywords (>= 0.0.4) | ||||||
|  |     faraday-cookie_jar (0.0.7) | ||||||
|  |       faraday (>= 0.8.0) | ||||||
|  |       http-cookie (~> 1.0.0) | ||||||
|  |     faraday-em_http (1.0.0) | ||||||
|  |     faraday-em_synchrony (1.0.0) | ||||||
|  |     faraday-excon (1.1.0) | ||||||
|  |     faraday-httpclient (1.0.1) | ||||||
|  |     faraday-multipart (1.0.4) | ||||||
|  |       multipart-post (~> 2) | ||||||
|  |     faraday-net_http (1.0.2) | ||||||
|  |     faraday-net_http_persistent (1.2.0) | ||||||
|  |     faraday-patron (1.0.0) | ||||||
|  |     faraday-rack (1.0.0) | ||||||
|  |     faraday-retry (1.0.3) | ||||||
|  |     faraday_middleware (1.2.1) | ||||||
|  |       faraday (~> 1.0) | ||||||
|  |     fastimage (2.3.1) | ||||||
|  |     fastlane (2.225.0) | ||||||
|  |       CFPropertyList (>= 2.3, < 4.0.0) | ||||||
|  |       addressable (>= 2.8, < 3.0.0) | ||||||
|  |       artifactory (~> 3.0) | ||||||
|  |       aws-sdk-s3 (~> 1.0) | ||||||
|  |       babosa (>= 1.0.3, < 2.0.0) | ||||||
|  |       bundler (>= 1.12.0, < 3.0.0) | ||||||
|  |       colored (~> 1.2) | ||||||
|  |       commander (~> 4.6) | ||||||
|  |       dotenv (>= 2.1.1, < 3.0.0) | ||||||
|  |       emoji_regex (>= 0.1, < 4.0) | ||||||
|  |       excon (>= 0.71.0, < 1.0.0) | ||||||
|  |       faraday (~> 1.0) | ||||||
|  |       faraday-cookie_jar (~> 0.0.6) | ||||||
|  |       faraday_middleware (~> 1.0) | ||||||
|  |       fastimage (>= 2.1.0, < 3.0.0) | ||||||
|  |       fastlane-sirp (>= 1.0.0) | ||||||
|  |       gh_inspector (>= 1.1.2, < 2.0.0) | ||||||
|  |       google-apis-androidpublisher_v3 (~> 0.3) | ||||||
|  |       google-apis-playcustomapp_v1 (~> 0.1) | ||||||
|  |       google-cloud-env (>= 1.6.0, < 2.0.0) | ||||||
|  |       google-cloud-storage (~> 1.31) | ||||||
|  |       highline (~> 2.0) | ||||||
|  |       http-cookie (~> 1.0.5) | ||||||
|  |       json (< 3.0.0) | ||||||
|  |       jwt (>= 2.1.0, < 3) | ||||||
|  |       mini_magick (>= 4.9.4, < 5.0.0) | ||||||
|  |       multipart-post (>= 2.0.0, < 3.0.0) | ||||||
|  |       naturally (~> 2.2) | ||||||
|  |       optparse (>= 0.1.1, < 1.0.0) | ||||||
|  |       plist (>= 3.1.0, < 4.0.0) | ||||||
|  |       rubyzip (>= 2.0.0, < 3.0.0) | ||||||
|  |       security (= 0.1.5) | ||||||
|  |       simctl (~> 1.6.3) | ||||||
|  |       terminal-notifier (>= 2.0.0, < 3.0.0) | ||||||
|  |       terminal-table (~> 3) | ||||||
|  |       tty-screen (>= 0.6.3, < 1.0.0) | ||||||
|  |       tty-spinner (>= 0.8.0, < 1.0.0) | ||||||
|  |       word_wrap (~> 1.0.0) | ||||||
|  |       xcodeproj (>= 1.13.0, < 2.0.0) | ||||||
|  |       xcpretty (~> 0.3.0) | ||||||
|  |       xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) | ||||||
|  |     fastlane-sirp (1.0.0) | ||||||
|  |       sysrandom (~> 1.0) | ||||||
|  |     ffi (1.17.0) | ||||||
|  |     ffi (1.17.0-x86_64-darwin) | ||||||
|  |     fourflusher (2.3.1) | ||||||
|  |     fuzzy_match (2.0.4) | ||||||
|  |     gh_inspector (1.1.3) | ||||||
|  |     google-apis-androidpublisher_v3 (0.54.0) | ||||||
|  |       google-apis-core (>= 0.11.0, < 2.a) | ||||||
|  |     google-apis-core (0.11.3) | ||||||
|  |       addressable (~> 2.5, >= 2.5.1) | ||||||
|  |       googleauth (>= 0.16.2, < 2.a) | ||||||
|  |       httpclient (>= 2.8.1, < 3.a) | ||||||
|  |       mini_mime (~> 1.0) | ||||||
|  |       representable (~> 3.0) | ||||||
|  |       retriable (>= 2.0, < 4.a) | ||||||
|  |       rexml | ||||||
|  |     google-apis-iamcredentials_v1 (0.17.0) | ||||||
|  |       google-apis-core (>= 0.11.0, < 2.a) | ||||||
|  |     google-apis-playcustomapp_v1 (0.13.0) | ||||||
|  |       google-apis-core (>= 0.11.0, < 2.a) | ||||||
|  |     google-apis-storage_v1 (0.31.0) | ||||||
|  |       google-apis-core (>= 0.11.0, < 2.a) | ||||||
|  |     google-cloud-core (1.7.1) | ||||||
|  |       google-cloud-env (>= 1.0, < 3.a) | ||||||
|  |       google-cloud-errors (~> 1.0) | ||||||
|  |     google-cloud-env (1.6.0) | ||||||
|  |       faraday (>= 0.17.3, < 3.0) | ||||||
|  |     google-cloud-errors (1.4.0) | ||||||
|  |     google-cloud-storage (1.47.0) | ||||||
|  |       addressable (~> 2.8) | ||||||
|  |       digest-crc (~> 0.4) | ||||||
|  |       google-apis-iamcredentials_v1 (~> 0.1) | ||||||
|  |       google-apis-storage_v1 (~> 0.31.0) | ||||||
|  |       google-cloud-core (~> 1.6) | ||||||
|  |       googleauth (>= 0.16.2, < 2.a) | ||||||
|  |       mini_mime (~> 1.0) | ||||||
|  |     googleauth (1.8.1) | ||||||
|  |       faraday (>= 0.17.3, < 3.a) | ||||||
|  |       jwt (>= 1.4, < 3.0) | ||||||
|  |       multi_json (~> 1.11) | ||||||
|  |       os (>= 0.9, < 2.0) | ||||||
|  |       signet (>= 0.16, < 2.a) | ||||||
|  |     highline (2.0.3) | ||||||
|  |     http-cookie (1.0.7) | ||||||
|  |       domain_name (~> 0.5) | ||||||
|  |     httpclient (2.8.3) | ||||||
|  |     i18n (1.14.6) | ||||||
|  |       concurrent-ruby (~> 1.0) | ||||||
|  |     jmespath (1.6.2) | ||||||
|  |     json (2.8.1) | ||||||
|  |     jwt (2.9.3) | ||||||
|  |       base64 | ||||||
|  |     mini_magick (4.13.2) | ||||||
|  |     mini_mime (1.1.5) | ||||||
|  |     minitest (5.25.1) | ||||||
|  |     molinillo (0.6.6) | ||||||
|  |     multi_json (1.15.0) | ||||||
|  |     multipart-post (2.4.1) | ||||||
|  |     nanaimo (0.4.0) | ||||||
|  |     nap (1.1.0) | ||||||
|  |     naturally (2.2.1) | ||||||
|  |     netrc (0.11.0) | ||||||
|  |     nkf (0.2.0) | ||||||
|  |     optparse (0.6.0) | ||||||
|  |     os (1.1.4) | ||||||
|  |     plist (3.7.1) | ||||||
|  |     public_suffix (6.0.1) | ||||||
|  |     rake (13.2.1) | ||||||
|  |     representable (3.2.0) | ||||||
|  |       declarative (< 0.1.0) | ||||||
|  |       trailblazer-option (>= 0.1.1, < 0.2.0) | ||||||
|  |       uber (< 0.2.0) | ||||||
|  |     retriable (3.1.2) | ||||||
|  |     rexml (3.3.9) | ||||||
|  |     rouge (2.0.7) | ||||||
|  |     ruby-macho (1.4.0) | ||||||
|  |     ruby2_keywords (0.0.5) | ||||||
|  |     rubyzip (2.3.2) | ||||||
|  |     security (0.1.5) | ||||||
|  |     signet (0.19.0) | ||||||
|  |       addressable (~> 2.8) | ||||||
|  |       faraday (>= 0.17.5, < 3.a) | ||||||
|  |       jwt (>= 1.5, < 3.0) | ||||||
|  |       multi_json (~> 1.10) | ||||||
|  |     simctl (1.6.10) | ||||||
|  |       CFPropertyList | ||||||
|  |       naturally | ||||||
|  |     sysrandom (1.0.5) | ||||||
|  |     terminal-notifier (2.0.0) | ||||||
|  |     terminal-table (3.0.2) | ||||||
|  |       unicode-display_width (>= 1.1.1, < 3) | ||||||
|  |     thread_safe (0.3.6) | ||||||
|  |     trailblazer-option (0.1.2) | ||||||
|  |     tty-cursor (0.7.1) | ||||||
|  |     tty-screen (0.8.2) | ||||||
|  |     tty-spinner (0.9.3) | ||||||
|  |       tty-cursor (~> 0.7) | ||||||
|  |     typhoeus (1.4.1) | ||||||
|  |       ethon (>= 0.9.0) | ||||||
|  |     tzinfo (1.2.11) | ||||||
|  |       thread_safe (~> 0.1) | ||||||
|  |     uber (0.1.0) | ||||||
|  |     unicode-display_width (2.6.0) | ||||||
|  |     word_wrap (1.0.0) | ||||||
|  |     xcodeproj (1.27.0) | ||||||
|  |       CFPropertyList (>= 2.3.3, < 4.0) | ||||||
|  |       atomos (~> 0.1.3) | ||||||
|  |       claide (>= 1.0.2, < 2.0) | ||||||
|  |       colored2 (~> 3.1) | ||||||
|  |       nanaimo (~> 0.4.0) | ||||||
|  |       rexml (>= 3.3.6, < 4.0) | ||||||
|  |     xcpretty (0.3.0) | ||||||
|  |       rouge (~> 2.0.7) | ||||||
|  |     xcpretty-travis-formatter (1.0.1) | ||||||
|  |       xcpretty (~> 0.2, >= 0.0.7) | ||||||
|  |  | ||||||
|  | PLATFORMS | ||||||
|  |   ruby | ||||||
|  |   x86_64-darwin-23 | ||||||
|  |  | ||||||
|  | DEPENDENCIES | ||||||
|  |   cocoapods | ||||||
|  |   fastlane | ||||||
|  |  | ||||||
|  | BUNDLED WITH | ||||||
|  |    2.5.23 | ||||||
							
								
								
									
										59
									
								
								frontend/ios/Podfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										59
									
								
								frontend/ios/Podfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,59 @@ | |||||||
|  | # Uncomment this line to define a global platform for your project | ||||||
|  | # platform :ios, '12.0' | ||||||
|  |  | ||||||
|  | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. | ||||||
|  | ENV['COCOAPODS_DISABLE_STATS'] = 'true' | ||||||
|  |  | ||||||
|  | project 'Runner', { | ||||||
|  |   'Debug' => :debug, | ||||||
|  |   'Profile' => :release, | ||||||
|  |   'Release' => :release, | ||||||
|  | } | ||||||
|  |  | ||||||
|  | def flutter_root | ||||||
|  |   generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__) | ||||||
|  |   unless File.exist?(generated_xcode_build_settings_path) | ||||||
|  |     raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first" | ||||||
|  |   end | ||||||
|  |  | ||||||
|  |   File.foreach(generated_xcode_build_settings_path) do |line| | ||||||
|  |     matches = line.match(/FLUTTER_ROOT\=(.*)/) | ||||||
|  |     return matches[1].strip if matches | ||||||
|  |   end | ||||||
|  |   raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get" | ||||||
|  | end | ||||||
|  |  | ||||||
|  | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) | ||||||
|  |  | ||||||
|  | flutter_ios_podfile_setup | ||||||
|  |  | ||||||
|  | target 'Runner' do | ||||||
|  |   use_frameworks! | ||||||
|  |   use_modular_headers! | ||||||
|  |  | ||||||
|  |   flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__)) | ||||||
|  |   target 'RunnerTests' do | ||||||
|  |     inherit! :search_paths | ||||||
|  |   end | ||||||
|  | end | ||||||
|  |  | ||||||
|  | post_install do |installer| | ||||||
|  |   installer.pods_project.targets.each do |target| | ||||||
|  |     flutter_additional_ios_build_settings(target) | ||||||
|  |  | ||||||
|  |     target.build_configurations.each do |config| | ||||||
|  |       # You can remove unused permissions here | ||||||
|  |       # for more information: https://github.com/BaseflowIT/flutter-permission-handler/blob/master/permission_handler/ios/Classes/PermissionHandlerEnums.h | ||||||
|  |       config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [ | ||||||
|  |         '$(inherited)', | ||||||
|  |         ## The 'PERMISSION_LOCATION' macro enables the `locationWhenInUse` and `locationAlways` permission. If | ||||||
|  |         ## the application only requires `locationWhenInUse`, only specify the `PERMISSION_LOCATION_WHENINUSE` | ||||||
|  |         ## macro. | ||||||
|  |         ## | ||||||
|  |         ## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse] | ||||||
|  |         'PERMISSION_LOCATION=1', | ||||||
|  |         'PERMISSION_LOCATION_WHENINUSE=0', | ||||||
|  |       ] | ||||||
|  |     end | ||||||
|  |   end | ||||||
|  | end | ||||||
							
								
								
									
										89
									
								
								frontend/ios/Podfile.lock
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										89
									
								
								frontend/ios/Podfile.lock
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,89 @@ | |||||||
|  | PODS: | ||||||
|  |   - Flutter (1.0.0) | ||||||
|  |   - geocoding_ios (1.0.5): | ||||||
|  |     - Flutter | ||||||
|  |   - geolocator_apple (1.2.0): | ||||||
|  |     - Flutter | ||||||
|  |   - Google-Maps-iOS-Utils (6.0.0): | ||||||
|  |     - GoogleMaps (~> 9.0) | ||||||
|  |   - google_maps_flutter_ios (0.0.1): | ||||||
|  |     - Flutter | ||||||
|  |     - Google-Maps-iOS-Utils (< 7.0, >= 5.0) | ||||||
|  |     - GoogleMaps (< 10.0, >= 8.4) | ||||||
|  |   - GoogleMaps (9.1.1): | ||||||
|  |     - GoogleMaps/Maps (= 9.1.1) | ||||||
|  |   - GoogleMaps/Base (9.1.1) | ||||||
|  |   - GoogleMaps/Maps (9.1.1): | ||||||
|  |     - GoogleMaps/Base | ||||||
|  |   - map_launcher (0.0.1): | ||||||
|  |     - Flutter | ||||||
|  |   - path_provider_foundation (0.0.1): | ||||||
|  |     - Flutter | ||||||
|  |     - FlutterMacOS | ||||||
|  |   - permission_handler_apple (9.3.0): | ||||||
|  |     - Flutter | ||||||
|  |   - shared_preferences_foundation (0.0.1): | ||||||
|  |     - Flutter | ||||||
|  |     - FlutterMacOS | ||||||
|  |   - sqflite (0.0.3): | ||||||
|  |     - Flutter | ||||||
|  |     - FlutterMacOS | ||||||
|  |   - url_launcher_ios (0.0.1): | ||||||
|  |     - Flutter | ||||||
|  |  | ||||||
|  | DEPENDENCIES: | ||||||
|  |   - Flutter (from `Flutter`) | ||||||
|  |   - geocoding_ios (from `.symlinks/plugins/geocoding_ios/ios`) | ||||||
|  |   - geolocator_apple (from `.symlinks/plugins/geolocator_apple/ios`) | ||||||
|  |   - google_maps_flutter_ios (from `.symlinks/plugins/google_maps_flutter_ios/ios`) | ||||||
|  |   - map_launcher (from `.symlinks/plugins/map_launcher/ios`) | ||||||
|  |   - path_provider_foundation (from `.symlinks/plugins/path_provider_foundation/darwin`) | ||||||
|  |   - permission_handler_apple (from `.symlinks/plugins/permission_handler_apple/ios`) | ||||||
|  |   - shared_preferences_foundation (from `.symlinks/plugins/shared_preferences_foundation/darwin`) | ||||||
|  |   - sqflite (from `.symlinks/plugins/sqflite/darwin`) | ||||||
|  |   - url_launcher_ios (from `.symlinks/plugins/url_launcher_ios/ios`) | ||||||
|  |  | ||||||
|  | SPEC REPOS: | ||||||
|  |   trunk: | ||||||
|  |     - Google-Maps-iOS-Utils | ||||||
|  |     - GoogleMaps | ||||||
|  |  | ||||||
|  | EXTERNAL SOURCES: | ||||||
|  |   Flutter: | ||||||
|  |     :path: Flutter | ||||||
|  |   geocoding_ios: | ||||||
|  |     :path: ".symlinks/plugins/geocoding_ios/ios" | ||||||
|  |   geolocator_apple: | ||||||
|  |     :path: ".symlinks/plugins/geolocator_apple/ios" | ||||||
|  |   google_maps_flutter_ios: | ||||||
|  |     :path: ".symlinks/plugins/google_maps_flutter_ios/ios" | ||||||
|  |   map_launcher: | ||||||
|  |     :path: ".symlinks/plugins/map_launcher/ios" | ||||||
|  |   path_provider_foundation: | ||||||
|  |     :path: ".symlinks/plugins/path_provider_foundation/darwin" | ||||||
|  |   permission_handler_apple: | ||||||
|  |     :path: ".symlinks/plugins/permission_handler_apple/ios" | ||||||
|  |   shared_preferences_foundation: | ||||||
|  |     :path: ".symlinks/plugins/shared_preferences_foundation/darwin" | ||||||
|  |   sqflite: | ||||||
|  |     :path: ".symlinks/plugins/sqflite/darwin" | ||||||
|  |   url_launcher_ios: | ||||||
|  |     :path: ".symlinks/plugins/url_launcher_ios/ios" | ||||||
|  |  | ||||||
|  | SPEC CHECKSUMS: | ||||||
|  |   Flutter: e0871f40cf51350855a761d2e70bf5af5b9b5de7 | ||||||
|  |   geocoding_ios: bcbdaa6bddd7d3129c9bcb8acddc5d8778689768 | ||||||
|  |   geolocator_apple: d981750b9f47dbdb02427e1476d9a04397beb8d9 | ||||||
|  |   Google-Maps-iOS-Utils: cfe6a0239c7ca634b7e001ad059a6707143dc8dc | ||||||
|  |   google_maps_flutter_ios: 0291eb2aa252298a769b04d075e4a9d747ff7264 | ||||||
|  |   GoogleMaps: 80ea184ed6bf44139f383a8b0e248ba3ec1cc8c9 | ||||||
|  |   map_launcher: fe43bda6720bb73c12fcc1bdd86123ff49a4d4d6 | ||||||
|  |   path_provider_foundation: 080d55be775b7414fd5a5ef3ac137b97b097e564 | ||||||
|  |   permission_handler_apple: 4ed2196e43d0651e8ff7ca3483a069d469701f2d | ||||||
|  |   shared_preferences_foundation: 9e1978ff2562383bd5676f64ec4e9aa8fa06a6f7 | ||||||
|  |   sqflite: c35dad70033b8862124f8337cc994a809fcd9fa3 | ||||||
|  |   url_launcher_ios: 694010445543906933d732453a59da0a173ae33d | ||||||
|  |  | ||||||
|  | PODFILE CHECKSUM: 819463e6a0290f5a72f145ba7cde16e8b6ef0796 | ||||||
|  |  | ||||||
|  | COCOAPODS: 1.10.2 | ||||||
| @@ -11,9 +11,11 @@ | |||||||
| 		331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; | 		331C808B294A63AB00263BE5 /* RunnerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 331C807B294A618700263BE5 /* RunnerTests.swift */; }; | ||||||
| 		3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; | 		3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; | ||||||
| 		74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; | 		74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; | ||||||
|  | 		8F724AF5AC92A8A68D89C67E /* Pods_Runner.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03CCEF89D4BD42ADA86AEDF9 /* Pods_Runner.framework */; }; | ||||||
| 		97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; | 		97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; | ||||||
| 		97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; | 		97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; | ||||||
| 		97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; | 		97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; | ||||||
|  | 		CDD1C9EB82AEC89C2181F722 /* Pods_RunnerTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CB8B4133CEB7949B7EEBD81 /* Pods_RunnerTests.framework */; }; | ||||||
| /* End PBXBuildFile section */ | /* End PBXBuildFile section */ | ||||||
|  |  | ||||||
| /* Begin PBXContainerItemProxy section */ | /* Begin PBXContainerItemProxy section */ | ||||||
| @@ -40,14 +42,20 @@ | |||||||
| /* End PBXCopyFilesBuildPhase section */ | /* End PBXCopyFilesBuildPhase section */ | ||||||
|  |  | ||||||
| /* Begin PBXFileReference section */ | /* Begin PBXFileReference section */ | ||||||
|  | 		03CCEF89D4BD42ADA86AEDF9 /* Pods_Runner.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Runner.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||||||
| 		1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; }; | 		1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = "<group>"; }; | ||||||
| 		1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; }; | 		1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = "<group>"; }; | ||||||
|  | 		282EA28E78AB3F765E4BA719 /* Pods-RunnerTests.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.profile.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.profile.xcconfig"; sourceTree = "<group>"; }; | ||||||
|  | 		3023467726A2A8275ED51C3E /* Pods-Runner.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.debug.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"; sourceTree = "<group>"; }; | ||||||
| 		331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; }; | 		331C807B294A618700263BE5 /* RunnerTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RunnerTests.swift; sourceTree = "<group>"; }; | ||||||
| 		331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; | 		331C8081294A63A400263BE5 /* RunnerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = RunnerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; | ||||||
| 		3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; }; | 		3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = "<group>"; }; | ||||||
|  | 		4CB8B4133CEB7949B7EEBD81 /* Pods_RunnerTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_RunnerTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; | ||||||
|  | 		5F8BB7E700693DEAB89BBE69 /* Pods-Runner.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.release.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"; sourceTree = "<group>"; }; | ||||||
| 		74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; }; | 		74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = "<group>"; }; | ||||||
| 		74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; | 		74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; }; | ||||||
| 		7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; }; | 		7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = "<group>"; }; | ||||||
|  | 		7B8A81C772249160491754F9 /* Pods-Runner.profile.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Runner.profile.xcconfig"; path = "Target Support Files/Pods-Runner/Pods-Runner.profile.xcconfig"; sourceTree = "<group>"; }; | ||||||
| 		9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; }; | 		9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = "<group>"; }; | ||||||
| 		9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; }; | 		9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = "<group>"; }; | ||||||
| 		97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; | 		97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; | ||||||
| @@ -55,19 +63,43 @@ | |||||||
| 		97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | 		97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; }; | ||||||
| 		97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | 		97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; }; | ||||||
| 		97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | 		97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; }; | ||||||
|  | 		A565AAB9FE158487ABF3A5BF /* Pods-RunnerTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.release.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.release.xcconfig"; sourceTree = "<group>"; }; | ||||||
|  | 		DC475F5210027479529644C3 /* Pods-RunnerTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-RunnerTests.debug.xcconfig"; path = "Target Support Files/Pods-RunnerTests/Pods-RunnerTests.debug.xcconfig"; sourceTree = "<group>"; }; | ||||||
| /* End PBXFileReference section */ | /* End PBXFileReference section */ | ||||||
|  |  | ||||||
| /* Begin PBXFrameworksBuildPhase section */ | /* Begin PBXFrameworksBuildPhase section */ | ||||||
|  | 		03EC59CC2AABC9D86B4ABFD7 /* Frameworks */ = { | ||||||
|  | 			isa = PBXFrameworksBuildPhase; | ||||||
|  | 			buildActionMask = 2147483647; | ||||||
|  | 			files = ( | ||||||
|  | 				CDD1C9EB82AEC89C2181F722 /* Pods_RunnerTests.framework in Frameworks */, | ||||||
|  | 			); | ||||||
|  | 			runOnlyForDeploymentPostprocessing = 0; | ||||||
|  | 		}; | ||||||
| 		97C146EB1CF9000F007C117D /* Frameworks */ = { | 		97C146EB1CF9000F007C117D /* Frameworks */ = { | ||||||
| 			isa = PBXFrameworksBuildPhase; | 			isa = PBXFrameworksBuildPhase; | ||||||
| 			buildActionMask = 2147483647; | 			buildActionMask = 2147483647; | ||||||
| 			files = ( | 			files = ( | ||||||
|  | 				8F724AF5AC92A8A68D89C67E /* Pods_Runner.framework in Frameworks */, | ||||||
| 			); | 			); | ||||||
| 			runOnlyForDeploymentPostprocessing = 0; | 			runOnlyForDeploymentPostprocessing = 0; | ||||||
| 		}; | 		}; | ||||||
| /* End PBXFrameworksBuildPhase section */ | /* End PBXFrameworksBuildPhase section */ | ||||||
|  |  | ||||||
| /* Begin PBXGroup section */ | /* Begin PBXGroup section */ | ||||||
|  | 		1C946B8D83A95663C2489C91 /* Pods */ = { | ||||||
|  | 			isa = PBXGroup; | ||||||
|  | 			children = ( | ||||||
|  | 				3023467726A2A8275ED51C3E /* Pods-Runner.debug.xcconfig */, | ||||||
|  | 				5F8BB7E700693DEAB89BBE69 /* Pods-Runner.release.xcconfig */, | ||||||
|  | 				7B8A81C772249160491754F9 /* Pods-Runner.profile.xcconfig */, | ||||||
|  | 				DC475F5210027479529644C3 /* Pods-RunnerTests.debug.xcconfig */, | ||||||
|  | 				A565AAB9FE158487ABF3A5BF /* Pods-RunnerTests.release.xcconfig */, | ||||||
|  | 				282EA28E78AB3F765E4BA719 /* Pods-RunnerTests.profile.xcconfig */, | ||||||
|  | 			); | ||||||
|  | 			path = Pods; | ||||||
|  | 			sourceTree = "<group>"; | ||||||
|  | 		}; | ||||||
| 		331C8082294A63A400263BE5 /* RunnerTests */ = { | 		331C8082294A63A400263BE5 /* RunnerTests */ = { | ||||||
| 			isa = PBXGroup; | 			isa = PBXGroup; | ||||||
| 			children = ( | 			children = ( | ||||||
| @@ -76,6 +108,15 @@ | |||||||
| 			path = RunnerTests; | 			path = RunnerTests; | ||||||
| 			sourceTree = "<group>"; | 			sourceTree = "<group>"; | ||||||
| 		}; | 		}; | ||||||
|  | 		3ECCC9BD7D0792871219624C /* Frameworks */ = { | ||||||
|  | 			isa = PBXGroup; | ||||||
|  | 			children = ( | ||||||
|  | 				03CCEF89D4BD42ADA86AEDF9 /* Pods_Runner.framework */, | ||||||
|  | 				4CB8B4133CEB7949B7EEBD81 /* Pods_RunnerTests.framework */, | ||||||
|  | 			); | ||||||
|  | 			name = Frameworks; | ||||||
|  | 			sourceTree = "<group>"; | ||||||
|  | 		}; | ||||||
| 		9740EEB11CF90186004384FC /* Flutter */ = { | 		9740EEB11CF90186004384FC /* Flutter */ = { | ||||||
| 			isa = PBXGroup; | 			isa = PBXGroup; | ||||||
| 			children = ( | 			children = ( | ||||||
| @@ -94,6 +135,8 @@ | |||||||
| 				97C146F01CF9000F007C117D /* Runner */, | 				97C146F01CF9000F007C117D /* Runner */, | ||||||
| 				97C146EF1CF9000F007C117D /* Products */, | 				97C146EF1CF9000F007C117D /* Products */, | ||||||
| 				331C8082294A63A400263BE5 /* RunnerTests */, | 				331C8082294A63A400263BE5 /* RunnerTests */, | ||||||
|  | 				1C946B8D83A95663C2489C91 /* Pods */, | ||||||
|  | 				3ECCC9BD7D0792871219624C /* Frameworks */, | ||||||
| 			); | 			); | ||||||
| 			sourceTree = "<group>"; | 			sourceTree = "<group>"; | ||||||
| 		}; | 		}; | ||||||
| @@ -128,8 +171,10 @@ | |||||||
| 			isa = PBXNativeTarget; | 			isa = PBXNativeTarget; | ||||||
| 			buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; | 			buildConfigurationList = 331C8087294A63A400263BE5 /* Build configuration list for PBXNativeTarget "RunnerTests" */; | ||||||
| 			buildPhases = ( | 			buildPhases = ( | ||||||
|  | 				F27C1B361CA1B045C8D36B3B /* [CP] Check Pods Manifest.lock */, | ||||||
| 				331C807D294A63A400263BE5 /* Sources */, | 				331C807D294A63A400263BE5 /* Sources */, | ||||||
| 				331C807F294A63A400263BE5 /* Resources */, | 				331C807F294A63A400263BE5 /* Resources */, | ||||||
|  | 				03EC59CC2AABC9D86B4ABFD7 /* Frameworks */, | ||||||
| 			); | 			); | ||||||
| 			buildRules = ( | 			buildRules = ( | ||||||
| 			); | 			); | ||||||
| @@ -145,12 +190,15 @@ | |||||||
| 			isa = PBXNativeTarget; | 			isa = PBXNativeTarget; | ||||||
| 			buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; | 			buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; | ||||||
| 			buildPhases = ( | 			buildPhases = ( | ||||||
|  | 				2116AEE9DABFBBDED304ABEB /* [CP] Check Pods Manifest.lock */, | ||||||
| 				9740EEB61CF901F6004384FC /* Run Script */, | 				9740EEB61CF901F6004384FC /* Run Script */, | ||||||
| 				97C146EA1CF9000F007C117D /* Sources */, | 				97C146EA1CF9000F007C117D /* Sources */, | ||||||
| 				97C146EB1CF9000F007C117D /* Frameworks */, | 				97C146EB1CF9000F007C117D /* Frameworks */, | ||||||
| 				97C146EC1CF9000F007C117D /* Resources */, | 				97C146EC1CF9000F007C117D /* Resources */, | ||||||
| 				9705A1C41CF9048500538489 /* Embed Frameworks */, | 				9705A1C41CF9048500538489 /* Embed Frameworks */, | ||||||
| 				3B06AD1E1E4923F5004D2608 /* Thin Binary */, | 				3B06AD1E1E4923F5004D2608 /* Thin Binary */, | ||||||
|  | 				FE4BAF74959AF0624BA808EE /* [CP] Embed Pods Frameworks */, | ||||||
|  | 				EE58653D94051600FD646EBE /* [CP] Copy Pods Resources */, | ||||||
| 			); | 			); | ||||||
| 			buildRules = ( | 			buildRules = ( | ||||||
| 			); | 			); | ||||||
| @@ -222,6 +270,28 @@ | |||||||
| /* End PBXResourcesBuildPhase section */ | /* End PBXResourcesBuildPhase section */ | ||||||
|  |  | ||||||
| /* Begin PBXShellScriptBuildPhase section */ | /* Begin PBXShellScriptBuildPhase section */ | ||||||
|  | 		2116AEE9DABFBBDED304ABEB /* [CP] Check Pods Manifest.lock */ = { | ||||||
|  | 			isa = PBXShellScriptBuildPhase; | ||||||
|  | 			buildActionMask = 2147483647; | ||||||
|  | 			files = ( | ||||||
|  | 			); | ||||||
|  | 			inputFileListPaths = ( | ||||||
|  | 			); | ||||||
|  | 			inputPaths = ( | ||||||
|  | 				"${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||||||
|  | 				"${PODS_ROOT}/Manifest.lock", | ||||||
|  | 			); | ||||||
|  | 			name = "[CP] Check Pods Manifest.lock"; | ||||||
|  | 			outputFileListPaths = ( | ||||||
|  | 			); | ||||||
|  | 			outputPaths = ( | ||||||
|  | 				"$(DERIVED_FILE_DIR)/Pods-Runner-checkManifestLockResult.txt", | ||||||
|  | 			); | ||||||
|  | 			runOnlyForDeploymentPostprocessing = 0; | ||||||
|  | 			shellPath = /bin/sh; | ||||||
|  | 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | ||||||
|  | 			showEnvVarsInLog = 0; | ||||||
|  | 		}; | ||||||
| 		3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { | 		3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { | ||||||
| 			isa = PBXShellScriptBuildPhase; | 			isa = PBXShellScriptBuildPhase; | ||||||
| 			alwaysOutOfDate = 1; | 			alwaysOutOfDate = 1; | ||||||
| @@ -253,6 +323,62 @@ | |||||||
| 			shellPath = /bin/sh; | 			shellPath = /bin/sh; | ||||||
| 			shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; | 			shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; | ||||||
| 		}; | 		}; | ||||||
|  | 		EE58653D94051600FD646EBE /* [CP] Copy Pods Resources */ = { | ||||||
|  | 			isa = PBXShellScriptBuildPhase; | ||||||
|  | 			buildActionMask = 2147483647; | ||||||
|  | 			files = ( | ||||||
|  | 			); | ||||||
|  | 			inputFileListPaths = ( | ||||||
|  | 				"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-input-files.xcfilelist", | ||||||
|  | 			); | ||||||
|  | 			name = "[CP] Copy Pods Resources"; | ||||||
|  | 			outputFileListPaths = ( | ||||||
|  | 				"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources-${CONFIGURATION}-output-files.xcfilelist", | ||||||
|  | 			); | ||||||
|  | 			runOnlyForDeploymentPostprocessing = 0; | ||||||
|  | 			shellPath = /bin/sh; | ||||||
|  | 			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-resources.sh\"\n"; | ||||||
|  | 			showEnvVarsInLog = 0; | ||||||
|  | 		}; | ||||||
|  | 		F27C1B361CA1B045C8D36B3B /* [CP] Check Pods Manifest.lock */ = { | ||||||
|  | 			isa = PBXShellScriptBuildPhase; | ||||||
|  | 			buildActionMask = 2147483647; | ||||||
|  | 			files = ( | ||||||
|  | 			); | ||||||
|  | 			inputFileListPaths = ( | ||||||
|  | 			); | ||||||
|  | 			inputPaths = ( | ||||||
|  | 				"${PODS_PODFILE_DIR_PATH}/Podfile.lock", | ||||||
|  | 				"${PODS_ROOT}/Manifest.lock", | ||||||
|  | 			); | ||||||
|  | 			name = "[CP] Check Pods Manifest.lock"; | ||||||
|  | 			outputFileListPaths = ( | ||||||
|  | 			); | ||||||
|  | 			outputPaths = ( | ||||||
|  | 				"$(DERIVED_FILE_DIR)/Pods-RunnerTests-checkManifestLockResult.txt", | ||||||
|  | 			); | ||||||
|  | 			runOnlyForDeploymentPostprocessing = 0; | ||||||
|  | 			shellPath = /bin/sh; | ||||||
|  | 			shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n    # print error to STDERR\n    echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n    exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; | ||||||
|  | 			showEnvVarsInLog = 0; | ||||||
|  | 		}; | ||||||
|  | 		FE4BAF74959AF0624BA808EE /* [CP] Embed Pods Frameworks */ = { | ||||||
|  | 			isa = PBXShellScriptBuildPhase; | ||||||
|  | 			buildActionMask = 2147483647; | ||||||
|  | 			files = ( | ||||||
|  | 			); | ||||||
|  | 			inputFileListPaths = ( | ||||||
|  | 				"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", | ||||||
|  | 			); | ||||||
|  | 			name = "[CP] Embed Pods Frameworks"; | ||||||
|  | 			outputFileListPaths = ( | ||||||
|  | 				"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", | ||||||
|  | 			); | ||||||
|  | 			runOnlyForDeploymentPostprocessing = 0; | ||||||
|  | 			shellPath = /bin/sh; | ||||||
|  | 			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks.sh\"\n"; | ||||||
|  | 			showEnvVarsInLog = 0; | ||||||
|  | 		}; | ||||||
| /* End PBXShellScriptBuildPhase section */ | /* End PBXShellScriptBuildPhase section */ | ||||||
|  |  | ||||||
| /* Begin PBXSourcesBuildPhase section */ | /* Begin PBXSourcesBuildPhase section */ | ||||||
| @@ -327,6 +453,7 @@ | |||||||
| 				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | 				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||||||
| 				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | 				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||||||
| 				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | 				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||||||
|  | 				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||||||
| 				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | 				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||||||
| 				CLANG_WARN_STRICT_PROTOTYPES = YES; | 				CLANG_WARN_STRICT_PROTOTYPES = YES; | ||||||
| 				CLANG_WARN_SUSPICIOUS_MOVE = YES; | 				CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||||||
| @@ -361,27 +488,45 @@ | |||||||
| 			buildSettings = { | 			buildSettings = { | ||||||
| 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||||||
| 				CLANG_ENABLE_MODULES = YES; | 				CLANG_ENABLE_MODULES = YES; | ||||||
| 				CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; | 				CODE_SIGN_IDENTITY = "Apple Development"; | ||||||
|  | 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; | ||||||
|  | 				CODE_SIGN_STYLE = Manual; | ||||||
|  | 				CURRENT_PROJECT_VERSION = 3; | ||||||
|  | 				DEVELOPMENT_TEAM = ""; | ||||||
|  | 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = L32Y3D8V83; | ||||||
| 				ENABLE_BITCODE = NO; | 				ENABLE_BITCODE = NO; | ||||||
| 				INFOPLIST_FILE = Runner/Info.plist; | 				INFOPLIST_FILE = Runner/Info.plist; | ||||||
|  | 				INFOPLIST_KEY_CFBundleDisplayName = Any.Way; | ||||||
|  | 				INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.travel"; | ||||||
|  | 				IPHONEOS_DEPLOYMENT_TARGET = 15.6; | ||||||
| 				LD_RUNPATH_SEARCH_PATHS = ( | 				LD_RUNPATH_SEARCH_PATHS = ( | ||||||
| 					"$(inherited)", | 					"$(inherited)", | ||||||
| 					"@executable_path/Frameworks", | 					"@executable_path/Frameworks", | ||||||
| 				); | 				); | ||||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation; | 				MARKETING_VERSION = 1.0.0; | ||||||
|  | 				PRODUCT_BUNDLE_IDENTIFIER = info.anydev.anyway; | ||||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||||
|  | 				PROVISIONING_PROFILE_SPECIFIER = "match AppStore info.anydev.anyway"; | ||||||
|  | 				"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore info.anydev.anyway"; | ||||||
|  | 				SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | ||||||
|  | 				SUPPORTS_MACCATALYST = NO; | ||||||
|  | 				SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; | ||||||
|  | 				SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; | ||||||
| 				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | 				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | ||||||
| 				SWIFT_VERSION = 5.0; | 				SWIFT_VERSION = 5.0; | ||||||
|  | 				TARGETED_DEVICE_FAMILY = "1,2"; | ||||||
| 				VERSIONING_SYSTEM = "apple-generic"; | 				VERSIONING_SYSTEM = "apple-generic"; | ||||||
| 			}; | 			}; | ||||||
| 			name = Profile; | 			name = Profile; | ||||||
| 		}; | 		}; | ||||||
| 		331C8088294A63A400263BE5 /* Debug */ = { | 		331C8088294A63A400263BE5 /* Debug */ = { | ||||||
| 			isa = XCBuildConfiguration; | 			isa = XCBuildConfiguration; | ||||||
|  | 			baseConfigurationReference = DC475F5210027479529644C3 /* Pods-RunnerTests.debug.xcconfig */; | ||||||
| 			buildSettings = { | 			buildSettings = { | ||||||
| 				BUNDLE_LOADER = "$(TEST_HOST)"; | 				BUNDLE_LOADER = "$(TEST_HOST)"; | ||||||
| 				CODE_SIGN_STYLE = Automatic; | 				CODE_SIGN_STYLE = Automatic; | ||||||
| 				CURRENT_PROJECT_VERSION = 1; | 				CURRENT_PROJECT_VERSION = 3; | ||||||
|  | 				DEVELOPMENT_TEAM = L32Y3D8V83; | ||||||
| 				GENERATE_INFOPLIST_FILE = YES; | 				GENERATE_INFOPLIST_FILE = YES; | ||||||
| 				MARKETING_VERSION = 1.0; | 				MARKETING_VERSION = 1.0; | ||||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation.RunnerTests; | 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation.RunnerTests; | ||||||
| @@ -395,10 +540,12 @@ | |||||||
| 		}; | 		}; | ||||||
| 		331C8089294A63A400263BE5 /* Release */ = { | 		331C8089294A63A400263BE5 /* Release */ = { | ||||||
| 			isa = XCBuildConfiguration; | 			isa = XCBuildConfiguration; | ||||||
|  | 			baseConfigurationReference = A565AAB9FE158487ABF3A5BF /* Pods-RunnerTests.release.xcconfig */; | ||||||
| 			buildSettings = { | 			buildSettings = { | ||||||
| 				BUNDLE_LOADER = "$(TEST_HOST)"; | 				BUNDLE_LOADER = "$(TEST_HOST)"; | ||||||
| 				CODE_SIGN_STYLE = Automatic; | 				CODE_SIGN_STYLE = Automatic; | ||||||
| 				CURRENT_PROJECT_VERSION = 1; | 				CURRENT_PROJECT_VERSION = 3; | ||||||
|  | 				DEVELOPMENT_TEAM = L32Y3D8V83; | ||||||
| 				GENERATE_INFOPLIST_FILE = YES; | 				GENERATE_INFOPLIST_FILE = YES; | ||||||
| 				MARKETING_VERSION = 1.0; | 				MARKETING_VERSION = 1.0; | ||||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation.RunnerTests; | 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation.RunnerTests; | ||||||
| @@ -410,10 +557,12 @@ | |||||||
| 		}; | 		}; | ||||||
| 		331C808A294A63A400263BE5 /* Profile */ = { | 		331C808A294A63A400263BE5 /* Profile */ = { | ||||||
| 			isa = XCBuildConfiguration; | 			isa = XCBuildConfiguration; | ||||||
|  | 			baseConfigurationReference = 282EA28E78AB3F765E4BA719 /* Pods-RunnerTests.profile.xcconfig */; | ||||||
| 			buildSettings = { | 			buildSettings = { | ||||||
| 				BUNDLE_LOADER = "$(TEST_HOST)"; | 				BUNDLE_LOADER = "$(TEST_HOST)"; | ||||||
| 				CODE_SIGN_STYLE = Automatic; | 				CODE_SIGN_STYLE = Automatic; | ||||||
| 				CURRENT_PROJECT_VERSION = 1; | 				CURRENT_PROJECT_VERSION = 3; | ||||||
|  | 				DEVELOPMENT_TEAM = L32Y3D8V83; | ||||||
| 				GENERATE_INFOPLIST_FILE = YES; | 				GENERATE_INFOPLIST_FILE = YES; | ||||||
| 				MARKETING_VERSION = 1.0; | 				MARKETING_VERSION = 1.0; | ||||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation.RunnerTests; | 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation.RunnerTests; | ||||||
| @@ -447,6 +596,7 @@ | |||||||
| 				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | 				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||||||
| 				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | 				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||||||
| 				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | 				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||||||
|  | 				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||||||
| 				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | 				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||||||
| 				CLANG_WARN_STRICT_PROTOTYPES = YES; | 				CLANG_WARN_STRICT_PROTOTYPES = YES; | ||||||
| 				CLANG_WARN_SUSPICIOUS_MOVE = YES; | 				CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||||||
| @@ -504,6 +654,7 @@ | |||||||
| 				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | 				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; | ||||||
| 				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | 				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; | ||||||
| 				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | 				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; | ||||||
|  | 				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; | ||||||
| 				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | 				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; | ||||||
| 				CLANG_WARN_STRICT_PROTOTYPES = YES; | 				CLANG_WARN_STRICT_PROTOTYPES = YES; | ||||||
| 				CLANG_WARN_SUSPICIOUS_MOVE = YES; | 				CLANG_WARN_SUSPICIOUS_MOVE = YES; | ||||||
| @@ -540,18 +691,34 @@ | |||||||
| 			buildSettings = { | 			buildSettings = { | ||||||
| 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||||||
| 				CLANG_ENABLE_MODULES = YES; | 				CLANG_ENABLE_MODULES = YES; | ||||||
| 				CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; | 				CODE_SIGN_IDENTITY = "Apple Development"; | ||||||
|  | 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; | ||||||
|  | 				CODE_SIGN_STYLE = Manual; | ||||||
|  | 				CURRENT_PROJECT_VERSION = 3; | ||||||
|  | 				DEVELOPMENT_TEAM = ""; | ||||||
|  | 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = L32Y3D8V83; | ||||||
| 				ENABLE_BITCODE = NO; | 				ENABLE_BITCODE = NO; | ||||||
| 				INFOPLIST_FILE = Runner/Info.plist; | 				INFOPLIST_FILE = Runner/Info.plist; | ||||||
|  | 				INFOPLIST_KEY_CFBundleDisplayName = Any.Way; | ||||||
|  | 				INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.travel"; | ||||||
|  | 				IPHONEOS_DEPLOYMENT_TARGET = 15.6; | ||||||
| 				LD_RUNPATH_SEARCH_PATHS = ( | 				LD_RUNPATH_SEARCH_PATHS = ( | ||||||
| 					"$(inherited)", | 					"$(inherited)", | ||||||
| 					"@executable_path/Frameworks", | 					"@executable_path/Frameworks", | ||||||
| 				); | 				); | ||||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation; | 				MARKETING_VERSION = 1.0.0; | ||||||
|  | 				PRODUCT_BUNDLE_IDENTIFIER = info.anydev.anyway; | ||||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||||
|  | 				PROVISIONING_PROFILE_SPECIFIER = "match AppStore info.anydev.anyway"; | ||||||
|  | 				"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore info.anydev.anyway"; | ||||||
|  | 				SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | ||||||
|  | 				SUPPORTS_MACCATALYST = NO; | ||||||
|  | 				SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; | ||||||
|  | 				SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; | ||||||
| 				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | 				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | ||||||
| 				SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | 				SWIFT_OPTIMIZATION_LEVEL = "-Onone"; | ||||||
| 				SWIFT_VERSION = 5.0; | 				SWIFT_VERSION = 5.0; | ||||||
|  | 				TARGETED_DEVICE_FAMILY = "1,2"; | ||||||
| 				VERSIONING_SYSTEM = "apple-generic"; | 				VERSIONING_SYSTEM = "apple-generic"; | ||||||
| 			}; | 			}; | ||||||
| 			name = Debug; | 			name = Debug; | ||||||
| @@ -562,17 +729,33 @@ | |||||||
| 			buildSettings = { | 			buildSettings = { | ||||||
| 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | 				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; | ||||||
| 				CLANG_ENABLE_MODULES = YES; | 				CLANG_ENABLE_MODULES = YES; | ||||||
| 				CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; | 				CODE_SIGN_IDENTITY = "Apple Development"; | ||||||
|  | 				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution"; | ||||||
|  | 				CODE_SIGN_STYLE = Manual; | ||||||
|  | 				CURRENT_PROJECT_VERSION = 3; | ||||||
|  | 				DEVELOPMENT_TEAM = ""; | ||||||
|  | 				"DEVELOPMENT_TEAM[sdk=iphoneos*]" = L32Y3D8V83; | ||||||
| 				ENABLE_BITCODE = NO; | 				ENABLE_BITCODE = NO; | ||||||
| 				INFOPLIST_FILE = Runner/Info.plist; | 				INFOPLIST_FILE = Runner/Info.plist; | ||||||
|  | 				INFOPLIST_KEY_CFBundleDisplayName = Any.Way; | ||||||
|  | 				INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.travel"; | ||||||
|  | 				IPHONEOS_DEPLOYMENT_TARGET = 15.6; | ||||||
| 				LD_RUNPATH_SEARCH_PATHS = ( | 				LD_RUNPATH_SEARCH_PATHS = ( | ||||||
| 					"$(inherited)", | 					"$(inherited)", | ||||||
| 					"@executable_path/Frameworks", | 					"@executable_path/Frameworks", | ||||||
| 				); | 				); | ||||||
| 				PRODUCT_BUNDLE_IDENTIFIER = com.example.fastNetworkNavigation; | 				MARKETING_VERSION = 1.0.0; | ||||||
|  | 				PRODUCT_BUNDLE_IDENTIFIER = info.anydev.anyway; | ||||||
| 				PRODUCT_NAME = "$(TARGET_NAME)"; | 				PRODUCT_NAME = "$(TARGET_NAME)"; | ||||||
|  | 				PROVISIONING_PROFILE_SPECIFIER = "match AppStore info.anydev.anyway"; | ||||||
|  | 				"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "match AppStore info.anydev.anyway"; | ||||||
|  | 				SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; | ||||||
|  | 				SUPPORTS_MACCATALYST = NO; | ||||||
|  | 				SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD = NO; | ||||||
|  | 				SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD = NO; | ||||||
| 				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | 				SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; | ||||||
| 				SWIFT_VERSION = 5.0; | 				SWIFT_VERSION = 5.0; | ||||||
|  | 				TARGETED_DEVICE_FAMILY = "1,2"; | ||||||
| 				VERSIONING_SYSTEM = "apple-generic"; | 				VERSIONING_SYSTEM = "apple-generic"; | ||||||
| 			}; | 			}; | ||||||
| 			name = Release; | 			name = Release; | ||||||
|   | |||||||
| @@ -4,4 +4,7 @@ | |||||||
|    <FileRef |    <FileRef | ||||||
|       location = "group:Runner.xcodeproj"> |       location = "group:Runner.xcodeproj"> | ||||||
|    </FileRef> |    </FileRef> | ||||||
|  |    <FileRef | ||||||
|  |       location = "group:Pods/Pods.xcodeproj"> | ||||||
|  |    </FileRef> | ||||||
| </Workspace> | </Workspace> | ||||||
|   | |||||||
| @@ -1,12 +1,16 @@ | |||||||
| import UIKit | import UIKit | ||||||
| import Flutter | import Flutter | ||||||
|  | import GoogleMaps | ||||||
|  |  | ||||||
| @UIApplicationMain | @main | ||||||
| @objc class AppDelegate: FlutterAppDelegate { | @objc class AppDelegate: FlutterAppDelegate { | ||||||
|   override func application( |   override func application( | ||||||
|     _ application: UIApplication, |     _ application: UIApplication, | ||||||
|     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? |     didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? | ||||||
|   ) -> Bool { |   ) -> Bool { | ||||||
|  |     // load the key from env | ||||||
|  |     let key = ProcessInfo.processInfo.environment["GOOGLE_MAPS_API_KEY"]! | ||||||
|  |     GMSServices.provideAPIKey(key) | ||||||
|     GeneratedPluginRegistrant.register(with: self) |     GeneratedPluginRegistrant.register(with: self) | ||||||
|     return super.application(application, didFinishLaunchingWithOptions: launchOptions) |     return super.application(application, didFinishLaunchingWithOptions: launchOptions) | ||||||
|   } |   } | ||||||
|   | |||||||
| @@ -2,10 +2,12 @@ | |||||||
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||||||
| <plist version="1.0"> | <plist version="1.0"> | ||||||
| <dict> | <dict> | ||||||
|  | 	<key>CADisableMinimumFrameDurationOnPhone</key> | ||||||
|  | 	<true/> | ||||||
| 	<key>CFBundleDevelopmentRegion</key> | 	<key>CFBundleDevelopmentRegion</key> | ||||||
| 	<string>$(DEVELOPMENT_LANGUAGE)</string> | 	<string>$(DEVELOPMENT_LANGUAGE)</string> | ||||||
| 	<key>CFBundleDisplayName</key> | 	<key>CFBundleDisplayName</key> | ||||||
| 	<string>Fast Network Navigation</string> | 	<string>anyway</string> | ||||||
| 	<key>CFBundleExecutable</key> | 	<key>CFBundleExecutable</key> | ||||||
| 	<string>$(EXECUTABLE_NAME)</string> | 	<string>$(EXECUTABLE_NAME)</string> | ||||||
| 	<key>CFBundleIdentifier</key> | 	<key>CFBundleIdentifier</key> | ||||||
| @@ -24,6 +26,8 @@ | |||||||
| 	<string>$(FLUTTER_BUILD_NUMBER)</string> | 	<string>$(FLUTTER_BUILD_NUMBER)</string> | ||||||
| 	<key>LSRequiresIPhoneOS</key> | 	<key>LSRequiresIPhoneOS</key> | ||||||
| 	<true/> | 	<true/> | ||||||
|  | 	<key>UIApplicationSupportsIndirectInputEvents</key> | ||||||
|  | 	<true/> | ||||||
| 	<key>UILaunchStoryboardName</key> | 	<key>UILaunchStoryboardName</key> | ||||||
| 	<string>LaunchScreen</string> | 	<string>LaunchScreen</string> | ||||||
| 	<key>UIMainStoryboardFile</key> | 	<key>UIMainStoryboardFile</key> | ||||||
| @@ -41,9 +45,38 @@ | |||||||
| 		<string>UIInterfaceOrientationLandscapeLeft</string> | 		<string>UIInterfaceOrientationLandscapeLeft</string> | ||||||
| 		<string>UIInterfaceOrientationLandscapeRight</string> | 		<string>UIInterfaceOrientationLandscapeRight</string> | ||||||
| 	</array> | 	</array> | ||||||
| 	<key>CADisableMinimumFrameDurationOnPhone</key> | 	<key>NSLocationAlwaysAndWhenInUseUsageDescription</key> | ||||||
| 	<true/> | 	<string>$(PRODUCT_NAME) optionally uses your location to plan trips directly from your current location.</string> | ||||||
| 	<key>UIApplicationSupportsIndirectInputEvents</key> | 	<key>NSLocationWhenInUseUsageDescription</key> | ||||||
| 	<true/> | 	<string>$(PRODUCT_NAME) optionally uses your location to plan trips directly from your current location.</string> | ||||||
|  | 	<key>LSApplicationQueriesSchemes</key> | ||||||
|  | 	<array> | ||||||
|  | 		<!-- set by maps launcher --> | ||||||
|  | 		<string>comgooglemaps</string> | ||||||
|  | 		<string>baidumap</string> | ||||||
|  | 		<string>iosamap</string> | ||||||
|  | 		<string>waze</string> | ||||||
|  | 		<string>yandexmaps</string> | ||||||
|  | 		<string>yandexnavi</string> | ||||||
|  | 		<string>citymapper</string> | ||||||
|  | 		<string>mapswithme</string> | ||||||
|  | 		<string>osmandmaps</string> | ||||||
|  | 		<string>dgis</string> | ||||||
|  | 		<string>qqmap</string> | ||||||
|  | 		<string>here-location</string> | ||||||
|  | 		<string>tomtomgo</string> | ||||||
|  | 		<string>copilot</string> | ||||||
|  | 		<string>com.sygic.aura</string> | ||||||
|  | 		<string>nmap</string> | ||||||
|  | 		<string>kakaomap</string> | ||||||
|  | 		<string>tmap</string> | ||||||
|  | 		<string>szn-mapy</string> | ||||||
|  | 		<string>mappls</string> | ||||||
|  | 		<!-- used by url launcher to open web browser --> | ||||||
|  | 		<string>http</string> | ||||||
|  | 		<string>https</string> | ||||||
|  | 	</array> | ||||||
|  | 	<key>ITSAppUsesNonExemptEncryption</key> | ||||||
|  | 	<false/> | ||||||
| </dict> | </dict> | ||||||
| </plist> | </plist> | ||||||
|   | |||||||
							
								
								
									
										13
									
								
								frontend/ios/fastlane/.env.sample
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								frontend/ios/fastlane/.env.sample
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,13 @@ | |||||||
|  | # SAMPLE env file that replicates the env in the CI/CD pipeline | ||||||
|  | # DO NOT EDIT THIS FILE | ||||||
|  | # Copy this file to local.env and edit the values to match your local environment | ||||||
|  | BUILD_NAME="sample" | ||||||
|  | BUILD_NUMBER="sample" | ||||||
|  |  | ||||||
|  | IOS_ASC_KEY_ID="sample" | ||||||
|  | IOS_ASC_KEY="sample" | ||||||
|  | IOS_ASC_ISSUER_ID="sample" | ||||||
|  | SIGNING_KEY_FILE_PATH="sample" | ||||||
|  | SIGNING_KEY_PASSWORD="sample" | ||||||
|  |  | ||||||
|  | GOOGLE_MAPS_API_KEY="sample" | ||||||
							
								
								
									
										8
									
								
								frontend/ios/fastlane/Appfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								frontend/ios/fastlane/Appfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | |||||||
|  | app_identifier("info.anydev.testing") # The bundle identifier of your app | ||||||
|  | apple_id("me@moll.re") # Your Apple Developer Portal username | ||||||
|  |  | ||||||
|  | itc_team_id("127439860") # App Store Connect Team ID | ||||||
|  | team_id("L32Y3D8V83") # Developer Portal Team ID | ||||||
|  |  | ||||||
|  | # For more information about the Appfile, see: | ||||||
|  | #     https://docs.fastlane.tools/advanced/#appfile | ||||||
							
								
								
									
										90
									
								
								frontend/ios/fastlane/Fastfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										90
									
								
								frontend/ios/fastlane/Fastfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,90 @@ | |||||||
|  | default_platform(:ios) | ||||||
|  |  | ||||||
|  | platform :ios do | ||||||
|  |  | ||||||
|  |   desc "Load the App Store Connect API token" | ||||||
|  |   lane :load_asc_api_token do | ||||||
|  |     app_store_connect_api_key( | ||||||
|  |       key_id: ENV["IOS_ASC_KEY_ID"], | ||||||
|  |       issuer_id: ENV["IOS_ASC_ISSUER_ID"], | ||||||
|  |       key_content: ENV["IOS_ASC_KEY"], | ||||||
|  |       is_key_content_base64: true, | ||||||
|  |       in_house: false | ||||||
|  |     ) | ||||||
|  |   end | ||||||
|  |  | ||||||
|  |  | ||||||
|  |   desc "Deploy a new version to closed testing (testflight)" | ||||||
|  |   lane :deploy_testing do | ||||||
|  |     build_name = ENV["BUILD_NAME"] | ||||||
|  |     build_number = ENV["BUILD_NUMBER"] | ||||||
|  |      | ||||||
|  |     load_asc_api_token | ||||||
|  |     api_key = lane_context[SharedValues::APP_STORE_CONNECT_API_KEY] | ||||||
|  |  | ||||||
|  |     sync_code_signing( | ||||||
|  |       api_key: api_key, | ||||||
|  |       type: "appstore", | ||||||
|  |       readonly: true, | ||||||
|  |     ) | ||||||
|  |  | ||||||
|  |  | ||||||
|  |     sh( | ||||||
|  |       "flutter", | ||||||
|  |       "build", | ||||||
|  |       "ipa", | ||||||
|  |       "--release", | ||||||
|  |       "--build-name=#{build_name}", | ||||||
|  |       "--build-number=#{build_number}", | ||||||
|  |     ) | ||||||
|  |  | ||||||
|  |     # sign the app (whithout rebuilding it) | ||||||
|  |     build_app( | ||||||
|  |       skip_build_archive: true, | ||||||
|  |       archive_path: "../build/ios/archive/Runner.xcarchive" | ||||||
|  |     ) | ||||||
|  |  | ||||||
|  |     upload_to_testflight | ||||||
|  |   end | ||||||
|  |  | ||||||
|  |  | ||||||
|  |   desc "Deploy a new version as a full release" | ||||||
|  |   lane :deploy_release do | ||||||
|  |     build_name = ENV["BUILD_NAME"] | ||||||
|  |     build_number = ENV["BUILD_NUMBER"] | ||||||
|  |      | ||||||
|  |     load_asc_api_token | ||||||
|  |     api_key = lane_context[SharedValues::APP_STORE_CONNECT_API_KEY] | ||||||
|  |  | ||||||
|  |     sync_code_signing( | ||||||
|  |       api_key: api_key, | ||||||
|  |       type: "appstore", | ||||||
|  |       readonly: true, | ||||||
|  |     ) | ||||||
|  |  | ||||||
|  |     sh( | ||||||
|  |       "flutter", | ||||||
|  |       "build", | ||||||
|  |       "ipa", | ||||||
|  |       "--release", | ||||||
|  |       "--build-name=#{build_name}", | ||||||
|  |       "--build-number=#{build_number}", | ||||||
|  |     ) | ||||||
|  |  | ||||||
|  |     # sign the app (whithout rebuilding it) | ||||||
|  |     build_app( | ||||||
|  |       skip_build_archive: true, | ||||||
|  |       archive_path: "../build/ios/archive/Runner.xcarchive" | ||||||
|  |     ) | ||||||
|  |    | ||||||
|  |     upload_to_app_store( | ||||||
|  |       skip_screenshots: true, | ||||||
|  |       skip_metadata: true, | ||||||
|  |       precheck_include_in_app_purchases: false, | ||||||
|  |        | ||||||
|  |       submit_for_review: true, | ||||||
|  |       automatic_release: true, | ||||||
|  |       # automatically release the app after review | ||||||
|  |     ) | ||||||
|  |   end | ||||||
|  | end | ||||||
							
								
								
									
										8
									
								
								frontend/ios/fastlane/Matchfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								frontend/ios/fastlane/Matchfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,8 @@ | |||||||
|  | git_url("ssh://git@git.kluster.moll.re:2222/anydev/anyway-app-secrets.git") | ||||||
|  |  | ||||||
|  | storage_mode("git") | ||||||
|  |  | ||||||
|  | type("appstore") # The default type, can be: appstore, adhoc, enterprise or development | ||||||
|  |  | ||||||
|  | app_identifier(["info.anydev.anyway"]) | ||||||
|  | username("me@moll.re") # Your Apple Developer Portal username | ||||||
							
								
								
									
										48
									
								
								frontend/ios/fastlane/README.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								frontend/ios/fastlane/README.md
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,48 @@ | |||||||
|  | fastlane documentation | ||||||
|  | ---- | ||||||
|  |  | ||||||
|  | # Installation | ||||||
|  |  | ||||||
|  | Make sure you have the latest version of the Xcode command line tools installed: | ||||||
|  |  | ||||||
|  | ```sh | ||||||
|  | xcode-select --install | ||||||
|  | ``` | ||||||
|  |  | ||||||
|  | For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane) | ||||||
|  |  | ||||||
|  | # Available Actions | ||||||
|  |  | ||||||
|  | ## iOS | ||||||
|  |  | ||||||
|  | ### ios load_asc_api_token | ||||||
|  |  | ||||||
|  | ```sh | ||||||
|  | [bundle exec] fastlane ios load_asc_api_token | ||||||
|  | ``` | ||||||
|  |  | ||||||
|  | Load the App Store Connect API token | ||||||
|  |  | ||||||
|  | ### ios deploy_testing | ||||||
|  |  | ||||||
|  | ```sh | ||||||
|  | [bundle exec] fastlane ios deploy_testing | ||||||
|  | ``` | ||||||
|  |  | ||||||
|  | Deploy a new version to closed testing (testflight) | ||||||
|  |  | ||||||
|  | ### ios deploy_release | ||||||
|  |  | ||||||
|  | ```sh | ||||||
|  | [bundle exec] fastlane ios deploy_release | ||||||
|  | ``` | ||||||
|  |  | ||||||
|  | Deploy a new version as a full release | ||||||
|  |  | ||||||
|  | ---- | ||||||
|  |  | ||||||
|  | This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run. | ||||||
|  |  | ||||||
|  | More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools). | ||||||
|  |  | ||||||
|  | The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools). | ||||||
| @@ -1 +1,2 @@ | |||||||
|  | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig" | ||||||
| #include "ephemeral/Flutter-Generated.xcconfig" | #include "ephemeral/Flutter-Generated.xcconfig" | ||||||
|   | |||||||
| @@ -1 +1,2 @@ | |||||||
|  | #include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig" | ||||||
| #include "ephemeral/Flutter-Generated.xcconfig" | #include "ephemeral/Flutter-Generated.xcconfig" | ||||||
|   | |||||||
							
								
								
									
										43
									
								
								frontend/macos/Podfile
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								frontend/macos/Podfile
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,43 @@ | |||||||
|  | platform :osx, '10.14' | ||||||
|  |  | ||||||
|  | # CocoaPods analytics sends network stats synchronously affecting flutter build latency. | ||||||
|  | ENV['COCOAPODS_DISABLE_STATS'] = 'true' | ||||||
|  |  | ||||||
|  | project 'Runner', { | ||||||
|  |   'Debug' => :debug, | ||||||
|  |   'Profile' => :release, | ||||||
|  |   'Release' => :release, | ||||||
|  | } | ||||||
|  |  | ||||||
|  | def flutter_root | ||||||
|  |   generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'ephemeral', 'Flutter-Generated.xcconfig'), __FILE__) | ||||||
|  |   unless File.exist?(generated_xcode_build_settings_path) | ||||||
|  |     raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure \"flutter pub get\" is executed first" | ||||||
|  |   end | ||||||
|  |  | ||||||
|  |   File.foreach(generated_xcode_build_settings_path) do |line| | ||||||
|  |     matches = line.match(/FLUTTER_ROOT\=(.*)/) | ||||||
|  |     return matches[1].strip if matches | ||||||
|  |   end | ||||||
|  |   raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Flutter-Generated.xcconfig, then run \"flutter pub get\"" | ||||||
|  | end | ||||||
|  |  | ||||||
|  | require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root) | ||||||
|  |  | ||||||
|  | flutter_macos_podfile_setup | ||||||
|  |  | ||||||
|  | target 'Runner' do | ||||||
|  |   use_frameworks! | ||||||
|  |   use_modular_headers! | ||||||
|  |  | ||||||
|  |   flutter_install_all_macos_pods File.dirname(File.realpath(__FILE__)) | ||||||
|  |   target 'RunnerTests' do | ||||||
|  |     inherit! :search_paths | ||||||
|  |   end | ||||||
|  | end | ||||||
|  |  | ||||||
|  | post_install do |installer| | ||||||
|  |   installer.pods_project.targets.each do |target| | ||||||
|  |     flutter_additional_macos_build_settings(target) | ||||||
|  |   end | ||||||
|  | end | ||||||
		Reference in New Issue
	
	Block a user