Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 0 additions & 19 deletions build/steps-build-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,6 @@ steps:
parameters:
projectDirectory: '${{ parameters.pathToSrc }}/app'

- task: CmdLine@2
displayName: 'Clean CocoaPods Cache'
inputs:
script: |
cd '${{ parameters.pathToSrc }}/app/ios'
rm -rf Pods
rm -rf Podfile.lock
pod deintegrate
pod cache clean --all
workingDirectory: '${{ parameters.pathToSrc }}/app'

- task: CmdLine@2
displayName: 'Install CocoaPods Dependencies'
inputs:
script: |
cd '${{ parameters.pathToSrc }}/app/ios'
pod install --repo-update
workingDirectory: '${{ parameters.pathToSrc }}/app'

- task: PowerShell@2
displayName: 'Execute Package Rename'
condition: eq(variables['ApplicationEnvironment'], 'Production')
Expand Down
6 changes: 3 additions & 3 deletions doc/Logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ Multiple logging features can be tested from the diagnostics screen. This is con
- You can see if a log file exists.
- You can share the logs / app summary by email, etc.

## Alice
## Talker

We use [alice](https://pub.dev/packages/alice) to track logs in-app without debugger console.
It is also configured to intercept HTTP requests made within the app.
We use [talker_flutter](https://pub.dev/packages/talker_flutter) to track logs in-app without debugger console.
It is also configured to intercept HTTP requests made within the app via [talker_dio_logger](https://pub.dev/packages/talker_dio_logger).

It's accessible via the "OPEN CONSOLE" in the `LoggerDiagnosticWidget`.

Expand Down
6 changes: 5 additions & 1 deletion src/app/ios/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
Expand All @@ -27,6 +26,11 @@ Flutter/flutter_export_environment.sh
ServiceDefinitions.json
Runner/GeneratedPluginRegistrant.*

# CocoaPods (generated at build time by Flutter for non-SPM plugins)
Podfile
Podfile.lock
**/Pods/

# Exceptions to above rules.
!default.mode1v3
!default.mode2v3
Expand Down
1 change: 0 additions & 1 deletion src/app/ios/Flutter/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.debug.xcconfig"
#include "Generated.xcconfig"
1 change: 0 additions & 1 deletion src/app/ios/Flutter/Release.xcconfig
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
#include? "Pods/Target Support Files/Pods-Runner/Pods-Runner.release.xcconfig"
#include "Generated.xcconfig"
71 changes: 0 additions & 71 deletions src/app/ios/Podfile

This file was deleted.

248 changes: 0 additions & 248 deletions src/app/ios/Podfile.lock

This file was deleted.

Loading
Loading