Skip to content
Open
Show file tree
Hide file tree
Changes from 2 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
4 changes: 4 additions & 0 deletions src/app/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,7 @@ android.enableJetifier=true
android.defaults.buildfeatures.buildconfig=true
android.nonTransitiveRClass=false
android.nonFinalResIds=false
# This builtInKotlin flag was added automatically by Flutter migrator
android.builtInKotlin=false
# This newDsl flag was added automatically by Flutter migrator
android.newDsl=false
7 changes: 5 additions & 2 deletions src/app/ios/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,12 @@
**/.vagrant/
**/DerivedData/
Icon?
**/Pods/
**/.symlinks/
profile
xcuserdata
**/.generated/
Flutter/App.framework
Flutter/Flutter.framework
Flutter/Flutter.podspec
Flutter/Generated.xcconfig
Flutter/ephemeral/
Flutter/app.flx
Expand All @@ -27,6 +25,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.

Loading
Loading