[READ ONLY MIRROR] Open Source TikTok alternative built on AT Protocol github.com/sprksocial/client
flutter atproto video dart
10
fork

Configure Feed

Select the types of activity you want to include in your feed.

add ios pre build (#52)

* add pre build

* rename

* Update ci_pre_xcodebuild.sh

* Update ci_pre_xcodebuild.sh

* Update ci_pre_xcodebuild.sh

authored by

Roscoe Rubin-Rottenberg and committed by
GitHub
af442df1 40ffba82

+17
+4
ios/Runner.xcodeproj/project.pbxproj
··· 295 295 inputFileListPaths = ( 296 296 "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-input-files.xcfilelist", 297 297 ); 298 + inputPaths = ( 299 + ); 298 300 name = "[CP] Embed Pods Frameworks"; 299 301 outputFileListPaths = ( 300 302 "${PODS_ROOT}/Target Support Files/Pods-Runner/Pods-Runner-frameworks-${CONFIGURATION}-output-files.xcfilelist", 303 + ); 304 + outputPaths = ( 301 305 ); 302 306 runOnlyForDeploymentPostprocessing = 0; 303 307 shellPath = /bin/sh;
+13
ios/ci_scripts/ci_pre_xcodebuild.sh
··· 1 + #!/bin/sh 2 + 3 + # Fail this script if any subcommand fails. 4 + set -e 5 + 6 + # Ensure Flutter is in PATH (should have been set up by ci_post_clone.sh) 7 + export PATH="$PATH:$HOME/flutter/bin" 8 + 9 + # Change to the project root directory (where pubspec.yaml is located) 10 + cd $CI_PRIMARY_REPOSITORY_PATH 11 + 12 + # Run build_runner 13 + dart run build_runner build --delete-conflicting-outputs