Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Obfuscating Code] Explain the usage of --obfuscate --split-debug-info=/<project-name>/<directory> and --obfuscate --split-debug-info=debug_info #74315

Open
Faizan-sts opened this issue Jan 20, 2021 · 9 comments
Labels
a: build Building flutter applications with the tool a: release Challenges faced when attempting to productionize an app d: stackoverflow Good question for Stack Overflow P2 Important issues not at the top of the work list team-tool Owned by Flutter Tool team tool Affects the "flutter" command-line tool. See also t: labels. triaged-tool Triaged by Flutter Tool team

Comments

@Faizan-sts
Copy link

Doing flutter build apk --release --no-shrink I get the .apk build created successfully and runs fine on physical device aswel.

I'm trying to obfuscate with following command, which is a recommended way on flutter docs, here.

flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory>

Which fails and throws following

FAILURE: Build failed with an exception.

* Where:
Script 'C:\Programs\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 904

* What went wrong:
Execution failed for task ':app:compileFlutterBuildRelease'.
> Process 'command 'C:\Programs\flutter\bin\flutter.bat'' finished with non-zero exit value 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 20s
Running Gradle task 'assembleRelease'...
Running Gradle task 'assembleRelease'... Done                      21.3s
Gradle task assembleRelease failed with exit code 1

Here It was suggested to use flutter build apk --obfuscate --split-debug-info=debug_info which makes the build process successful but after installing app crash on start.

flutter doctor

Doctor summary (to see all details, run flutter doctor -v):
[√] Flutter (Channel stable, 1.22.5, on Microsoft Windows [Version 10.0.17763.1697], locale en-GB)
[!] Android toolchain - develop for Android devices (Android SDK version 30.0.2)
    X Android license status unknown.
      Run `flutter doctor --android-licenses` to accept the SDK licenses.
      See https://flutter.dev/docs/get-started/install/windows#android-setup for more details.
[√] Android Studio (version 4.0)
[√] Connected device (1 available)
@TahaTesser
Copy link
Member

Hi @Faizan-sts
Just tried to reproduce on Windows on the stable, no issues when building APK with flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory>

PS C:\Users\Taha\AndroidStudioProjects\fallshort_game> flutters build apk --obfuscate --split-debug-info=C:\Users\Taha\Desktop
You are building a fat APK that includes binaries for android-arm, android-arm64, android-x64.
If you are deploying the app to the Play Store, it's recommended to use app bundles or split the APK to reduce the APK size.
    To generate an app bundle, run:
        flutter build appbundle --target-platform android-arm,android-arm64,android-x64
        Learn more on: https://developer.android.com/guide/app-bundle
    To split the APKs per ABI, run:
        flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
        Learn more on:  https://developer.android.com/studio/build/configure-apk-splits#configure-abi-split
Removed unused resources: Binary resource data reduced from 241KB to 213KB: Removed 11%
Running Gradle task 'assembleRelease'...                                
Running Gradle task 'assembleRelease'... Done                      77.7s
√ Built build\app\outputs\flutter-apk\app-release.apk (15.2MB).
PS C:\Users\Taha\AndroidStudioProjects\fallshort_game> 
flutter doctor -v
[✓] Flutter (Channel stable, 1.22.5, on Microsoft Windows [Version 10.0.19042.746], locale en-US)
    • Flutter version 1.22.5 at C:\Code\flutter_stable
    • Framework revision 7891006299 (6 weeks ago), 2020-12-10 11:54:40 -0800
    • Engine revision ae90085a84
    • Dart version 2.10.4


[!] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at C:\Code\SDK
    • Platform android-30, build-tools 30.0.3
    • ANDROID_HOME = C:\Code\SDK
    • Java binary at: C:\Code\android-studio\jre\bin\java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)
    ! Some Android licenses not accepted.  To resolve this, run: flutter doctor --android-licenses

[!] Android Studio (version 4.1.0)
    • Android Studio at C:\Code\android-studio
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)

[✓] VS Code (version 1.52.1)
    • VS Code at C:\Users\Taha\AppData\Local\Programs\Microsoft VS Code
    • Flutter extension version 3.18.1

[✓] Connected device (1 available)
    • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator)

! Doctor found issues in 2 categories.

Can you please provide your flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory> --verbose with verbose logs and a complete reproducible minimal code sample
Thank you

@TahaTesser TahaTesser added in triage Presently being triaged by the triage team waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds labels Jan 20, 2021
@Faizan-sts
Copy link
Author

Faizan-sts commented Jan 20, 2021

Following are the verbose logs for flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory> --verbose

logs
    [ +120 ms] executing: [C:\Programs\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
    [ +130 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
    [   +1 ms] 78910062997c3a836feee883712c241a5fd22983
    [   +1 ms] executing: [C:\Programs\flutter/] git tag --points-at HEAD
    [ +708 ms] Exit code 0 from: git tag --points-at HEAD
    [        ] 1.22.5
    [   +9 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref --symbolic @{u}
    [  +48 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
    [        ] origin/stable
    [        ] executing: [C:\Programs\flutter/] git ls-remote --get-url origin
    [  +48 ms] Exit code 0 from: git ls-remote --get-url origin
    [        ] https://github.com/flutter/flutter.git
    [  +79 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref HEAD
    [ +106 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
    [   +4 ms] stable
    [  +62 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [   +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [  +16 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
    [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
    [        ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [   +4 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
    [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
    [ +348 ms] Found plugin msal_mobile at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\msal_mobile-0.1.4\
    [  +23 ms] Found plugin path_provider at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-1.6.24\
    [  +14 ms] Found plugin path_provider_linux at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-0.0.1+2\
    [  +12 ms] Found plugin path_provider_macos at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-0.0.4+6\
    [  +27 ms] Found plugin path_provider_windows at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-0.0.4+3\
    [  +39 ms] Found plugin sqflite at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-1.3.2+1\
    [ +352 ms] Found plugin msal_mobile at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\msal_mobile-0.1.4\
    [   +9 ms] Found plugin path_provider at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-1.6.24\
    [   +1 ms] Found plugin path_provider_linux at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-0.0.1+2\
    [   +2 ms] Found plugin path_provider_macos at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-0.0.4+6\
    [   +3 ms] Found plugin path_provider_windows at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-0.0.4+3\
    [  +11 ms] Found plugin sqflite at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-1.3.2+1\
    [  +87 ms] Generating C:\Users\faizan.munir\FlutterDev\StevensPin\android\app\src\main\java\io\flutter\plugins\GeneratedPluginRegistrant.java
    [  +51 ms] You are building a fat APK that includes binaries for android-arm, android-arm64, android-x64.
    [   +2 ms] If you are deploying the app to the Play Store, it's recommended to use app bundles or split the APK to reduce the APK size.
    [   +2 ms]     To generate an app bundle, run:
    [   +1 ms]         flutter build appbundle --target-platform android-arm,android-arm64,android-x64
    [   +1 ms]         Learn more on: https://developer.android.com/guide/app-bundle
    [   +1 ms]     To split the APKs per ABI, run:
    [        ]         flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
    [        ]         Learn more on:  https://developer.android.com/studio/build/configure-apk-splits#configure-abi-split
    [  +65 ms] Running Gradle task 'assembleRelease'...
    [   +6 ms] gradle.properties already sets `android.enableR8`
    [  +10 ms] Using gradle from C:\Users\faizan.munir\FlutterDev\StevensPin\android\gradlew.bat.
    [   +7 ms] C:\Users\faizan.munir\FlutterDev\StevensPin\android\gradlew.bat mode: 33279 rwxrwxrwx.
    [  +47 ms] executing: C:\Program Files\Android\Android Studio\jre\bin\java -version
    [ +423 ms] Exit code 0 from: C:\Program Files\Android\Android Studio\jre\bin\java -version
    [   +1 ms] openjdk version "1.8.0_242-release"
           OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)
           OpenJDK 64-Bit Server VM (build 25.242-b01, mixed mode)
    [   +4 ms] executing: [C:\Users\faizan.munir\FlutterDev\StevensPin\android/] C:\Users\faizan.munir\FlutterDev\StevensPin\android\gradlew.bat -Pverbose=true -Ptarget-platform=android-arm,android-arm64,android-x64 -Ptarget=lib\main.dart -Ptrack-widget-creation=true
    -Pshrink=true -Psplit-debug-info=/StevensPin/C:\Users\faizan.munir\FlutterDev\StevensPin -Ptree-shake-icons=true -Pdart-obfuscation=true assembleRelease
    [+4679 ms] Starting a Gradle Daemon (subsequent builds will be faster)
    [+17682 ms] > Configure project :app
    [   +1 ms] WARNING: DSL element 'useProguard' is obsolete and will be removed soon. Use 'android.enableR8' in gradle.properties to switch between R8 and Proguard..
    [+12794 ms] > Task :app:compileFlutterBuildRelease
    [   +1 ms] [ +108 ms] executing: [C:\Programs\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
    [  +98 ms] [  +84 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
    [   +1 ms] [        ] 78910062997c3a836feee883712c241a5fd22983
    [        ] [        ] executing: [C:\Programs\flutter/] git tag --points-at HEAD
    [  +99 ms] [  +73 ms] Exit code 0 from: git tag --points-at HEAD
    [        ] [        ] 1.22.5
    [        ] [  +11 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref --symbolic @{u}
    [   +1 ms] [  +49 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
    [        ] [        ] origin/stable
    [        ] [        ] executing: [C:\Programs\flutter/] git ls-remote --get-url origin
    [  +96 ms] [  +50 ms] Exit code 0 from: git ls-remote --get-url origin
    [   +1 ms] [        ] https://github.com/flutter/flutter.git
    [  +96 ms] [  +89 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref HEAD
    [   +1 ms] [  +54 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
    [        ] [        ] stable
    [  +97 ms] [  +38 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [        ] [   +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [        ] [  +15 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [   +4 ms] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
    [ +142 ms] [  +93 ms] Initializing file store
    [   +3 ms] [  +46 ms] Done initializing file store
    [ +232 ms] [ +211 ms] Skipping target: gen_localizations
    [+6199 ms] [+6279 ms] Skipping target: kernel_snapshot
    [ +300 ms] [ +251 ms] android_aot_release_android-x64: Starting due to {}
    [   +1 ms] [   +7 ms] android_aot_release_android-arm: Starting due to {}
    [        ] [   +1 ms] android_aot_release_android-arm64: Starting due to {}
    [ +311 ms] [ +295 ms] Skipping target: aot_android_asset_bundle
    [   +2 ms] [        ] Persisting file store
    [   +1 ms] [  +10 ms] Done persisting file store
    [  +12 ms] [  +10 ms] Target android_aot_release_android-x64 failed: FileSystemException: Exists failed, path = '/StevensPin/C:\Users\faizan.munir\FlutterDev\StevensPin' (OS Error: The filename, directory name, or volume label syntax is incorrect.
    [   +3 ms]            , errno = 123)
    [   +1 ms]            #0      _Directory.existsSync (dart:io/directory_impl.dart:94:7)
    [   +1 ms]            #1      _Directory.createSync (dart:io/directory_impl.dart:126:11)
    [   +5 ms]            #2      ForwardingDirectory.createSync (package:file/src/forwarding/forwarding_directory.dart:22:16)
    [  +12 ms]            #3      ErrorHandlingDirectory.createSync.<anonymous closure> (package:flutter_tools/src/base/error_handling_io.dart:273:22)
    [   +2 ms]            #4      _runSync (package:flutter_tools/src/base/error_handling_io.dart:380:14)
    [   +1 ms]            #5      ErrorHandlingDirectory.createSync (package:flutter_tools/src/base/error_handling_io.dart:272:12)
    [   +2 ms]            #6      AOTSnapshotter.build (package:flutter_tools/src/base/build.dart:179:10)
    [  +17 ms]            #7      AndroidAot.build (package:flutter_tools/src/build_system/targets/android.dart:248:52)
    [   +9 ms]            #8      _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart:801:27)
    [  +26 ms]            #9      _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +2 ms]            #10     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [   +2 ms]            #11     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +8 ms]            #12     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +8 ms]            #13     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +1 ms]            #14     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #15     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [   +2 ms]            #16     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [   +2 ms]            #17     Node.computeChanges (package:flutter_tools/src/build_system/build_system.dart)
    [        ]            #18     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #19     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #20     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #21     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #22     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #23     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #24     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #25     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #26     FileStore.diffFileList (package:flutter_tools/src/build_system/file_store.dart)
    [   +1 ms]            #27     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +4 ms]            #28     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [   +2 ms]            #29     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +2 ms]            #30     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +2 ms]            #31     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +1 ms]            #32     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +6 ms]            #33     Future.wait.<anonymous closure> (dart:async/future.dart:414:23)
    [   +4 ms]            #34     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +1 ms]            #35     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [   +1 ms]            #36     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +2 ms]            #37     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +7 ms]            #38     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +1 ms]            #39     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #40     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [  +12 ms]            #41     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #42     FileStore._hashFile (package:flutter_tools/src/build_system/file_store.dart)
    [        ]            #43     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #44     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #45     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #46     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #47     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #48     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #49     Future._asyncCompleteWithValue.<anonymous closure> (dart:async/future_impl.dart:567:7)
    [        ]            #50     _rootRun (dart:async/zone.dart:1190:13)
    [        ]            #51     _CustomZone.run (dart:async/zone.dart:1093:19)
    [        ]            #52     _CustomZone.runGuarded (dart:async/zone.dart:997:7)
    [   +1 ms]            #53     _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:1037:23)
    [        ]            #54     _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
    [        ]            #55     _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
    [        ]            #56     _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
    [        ]            #57     _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)
    [        ] [   +2 ms] Target android_aot_release_android-arm failed: FileSystemException: Exists failed, path = '/StevensPin/C:\Users\faizan.munir\FlutterDev\StevensPin' (OS Error: The filename, directory name, or volume label syntax is incorrect.
    [        ]            , errno = 123)
    [        ]            #0      _Directory.existsSync (dart:io/directory_impl.dart:94:7)
    [   +1 ms]            #1      _Directory.createSync (dart:io/directory_impl.dart:126:11)
    [   +1 ms]            #2      ForwardingDirectory.createSync (package:file/src/forwarding/forwarding_directory.dart:22:16)
    [        ]            #3      ErrorHandlingDirectory.createSync.<anonymous closure> (package:flutter_tools/src/base/error_handling_io.dart:273:22)
    [   +1 ms]            #4      _runSync (package:flutter_tools/src/base/error_handling_io.dart:380:14)
    [        ]            #5      ErrorHandlingDirectory.createSync (package:flutter_tools/src/base/error_handling_io.dart:272:12)
    [        ]            #6      AOTSnapshotter.build (package:flutter_tools/src/base/build.dart:179:10)
    [        ]            #7      AndroidAot.build (package:flutter_tools/src/build_system/targets/android.dart:248:52)
    [        ]            #8      _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart:801:27)
    [   +1 ms]            #9      _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +2 ms]            #10     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #11     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #12     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +1 ms]            #13     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +4 ms]            #14     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #15     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #16     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [   +1 ms]            #17     Node.computeChanges (package:flutter_tools/src/build_system/build_system.dart)
    [   +1 ms]            #18     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #19     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [   +1 ms]            #20     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +1 ms]            #21     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +8 ms]            #22     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +3 ms]            #23     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +2 ms]            #24     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [   +1 ms]            #25     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #26     FileStore.diffFileList (package:flutter_tools/src/build_system/file_store.dart)
    [   +2 ms]            #27     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #28     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [   +1 ms]            #29     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +1 ms]            #30     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +1 ms]            #31     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #32     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #33     Future.wait.<anonymous closure> (dart:async/future.dart:414:23)
    [   +2 ms]            #34     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +1 ms]            #35     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [   +1 ms]            #36     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +1 ms]            #37     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #38     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #39     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #40     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [   +1 ms]            #41     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #42     FileStore._hashFile (package:flutter_tools/src/build_system/file_store.dart)
    [        ]            #43     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #44     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #45     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #46     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +2 ms]            #47     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +1 ms]            #48     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +2 ms]            #49     Future._asyncCompleteWithValue.<anonymous closure> (dart:async/future_impl.dart:567:7)
    [   +1 ms]            #50     _rootRun (dart:async/zone.dart:1190:13)
    [   +5 ms]            #51     _CustomZone.run (dart:async/zone.dart:1093:19)
    [   +8 ms]            #52     _CustomZone.runGuarded (dart:async/zone.dart:997:7)
    [  +15 ms]            #53     _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:1037:23)
    [   +1 ms]            #54     _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
    [   +1 ms]            #55     _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
    [   +1 ms]            #56     _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
    [        ]            #57     _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)
    [        ] [   +3 ms] Target android_aot_release_android-arm64 failed: FileSystemException: Exists failed, path = '/StevensPin/C:\Users\faizan.munir\FlutterDev\StevensPin' (OS Error: The filename, directory name, or volume label syntax is incorrect.
    [        ]            , errno = 123)
    [        ]            #0      _Directory.existsSync (dart:io/directory_impl.dart:94:7)
    [        ]            #1      _Directory.createSync (dart:io/directory_impl.dart:126:11)
    [        ]            #2      ForwardingDirectory.createSync (package:file/src/forwarding/forwarding_directory.dart:22:16)
    [   +1 ms]            #3      ErrorHandlingDirectory.createSync.<anonymous closure> (package:flutter_tools/src/base/error_handling_io.dart:273:22)
    [        ]            #4      _runSync (package:flutter_tools/src/base/error_handling_io.dart:380:14)
    [        ]            #5      ErrorHandlingDirectory.createSync (package:flutter_tools/src/base/error_handling_io.dart:272:12)
    [        ]            #6      AOTSnapshotter.build (package:flutter_tools/src/base/build.dart:179:10)
    [        ]            #7      AndroidAot.build (package:flutter_tools/src/build_system/targets/android.dart:248:52)
    [        ]            #8      _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart:801:27)
    [        ]            #9      _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #10     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #11     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #12     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +1 ms]            #13     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +2 ms]            #14     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #15     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #16     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #17     Node.computeChanges (package:flutter_tools/src/build_system/build_system.dart)
    [        ]            #18     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #19     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #20     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #21     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #22     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #23     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #24     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #25     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #26     FileStore.diffFileList (package:flutter_tools/src/build_system/file_store.dart)
    [        ]            #27     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #28     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #29     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #30     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #31     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #32     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #33     Future.wait.<anonymous closure> (dart:async/future.dart:414:23)
    [        ]            #34     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #35     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #36     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #37     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #38     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #39     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #40     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #41     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #42     FileStore._hashFile (package:flutter_tools/src/build_system/file_store.dart)
    [        ]            #43     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #44     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #45     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #46     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #47     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #48     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #49     Future._asyncCompleteWithValue.<anonymous closure> (dart:async/future_impl.dart:567:7)
    [        ]            #50     _rootRun (dart:async/zone.dart:1190:13)
    [        ]            #51     _CustomZone.run (dart:async/zone.dart:1093:19)
    [   +5 ms]            #52     _CustomZone.runGuarded (dart:async/zone.dart:997:7)
    [        ]            #53     _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:1037:23)
    [        ]            #54     _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
    [        ]            #55     _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
    [        ]            #56     _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
    [        ]            #57     _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)
    [        ] [   +6 ms] 
    [        ]            #0      throwToolExit (package:flutter_tools/src/base/common.dart:14:3)
    [        ]            #1      AssembleCommand.runCommand (package:flutter_tools/src/commands/assemble.dart:238:7)
    [        ]            #2      _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #3      _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #4      _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +3 ms]            #5      Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #6      Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #7      Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #8      _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [   +1 ms]            #9      _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #10     FlutterBuildSystem.build (package:flutter_tools/src/build_system/build_system.dart)
    [   +1 ms]            #11     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +1 ms]            #12     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #13     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +1 ms]            #14     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +1 ms]            #15     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +8 ms]            #16     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #17     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [   +2 ms]            #18     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [   +1 ms]            #19     _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart)
    [   +5 ms] [  +20 ms] "flutter assemble" took 7,266ms.
    [   +5 ms]            #20     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +4 ms]            #21     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #22     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +1 ms]            #23     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +6 ms]            #24     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +1 ms]            #25     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #26     Future.wait.<anonymous closure> (dart:async/future.dart:414:23)
    [   +1 ms]            #27     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +1 ms]            #28     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #29     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #30     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #31     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #32     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #33     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #34     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #35     _BuildInstance.invokeTarget (package:flutter_tools/src/build_system/build_system.dart)
    [        ]            #36     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #37     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #38     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #39     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +3 ms]            #40     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +2 ms]            #41     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #42     Future.wait.<anonymous closure> (dart:async/future.dart:414:23)
    [   +4 ms]            #43     _rootRunUnary (dart:async/zone.dart:1198:47)
    [   +3 ms]            #44     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #45     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #46     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #47     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #48     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #49     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #50     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #51     _BuildInstance._invokeInternal (package:flutter_tools/src/build_system/build_system.dart)
    [        ]            #52     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #53     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #54     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #55     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #56     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +2 ms]            #57     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [   +1 ms]            #58     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #59     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [   +2 ms]            #60     Node.computeChanges (package:flutter_tools/src/build_system/build_system.dart)
    [        ]            #61     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #62     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #63     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #64     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #65     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #66     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #67     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #68     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [        ]            #69     FileStore.diffFileList (package:flutter_tools/src/build_system/file_store.dart)
    [        ]            #70     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #71     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #72     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [   +1 ms]            #73     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [   +1 ms]            #74     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #75     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #76     Future.wait.<anonymous closure> (dart:async/future.dart:414:23)
    [        ]            #77     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #78     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #79     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #80     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #81     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [        ]            #82     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #83     _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
    [        ]            #84     _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
    [   +1 ms]            #85     FileStore._hashFile (package:flutter_tools/src/build_system/file_store.dart)
    [        ]            #86     _rootRunUnary (dart:async/zone.dart:1198:47)
    [        ]            #87     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
    [        ]            #88     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
    [        ]            #89     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
    [        ]            #90     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
    [   +2 ms]            #91     Future._completeWithValue (dart:async/future_impl.dart:529:5)
    [        ]            #92     Future._asyncCompleteWithValue.<anonymous closure> (dart:async/future_impl.dart:567:7)
    [   +4 ms]            #93     _rootRun (dart:async/zone.dart:1190:13)
    [        ]            #94     _CustomZone.run (dart:async/zone.dart:1093:19)
    [        ]            #95     _CustomZone.runGuarded (dart:async/zone.dart:997:7)
    [        ]            #96     _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:1037:23)
    [        ]            #97     _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
    [   +1 ms]            #98     _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
    [        ]            #99     _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
    [   +1 ms]            #100    _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)
    [   +3 ms] FAILURE: Build failed with an exception.
    [        ] * Where:
    [        ] Script 'C:\Programs\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 904
    [   +1 ms] * What went wrong:
    [        ] Execution failed for task ':app:compileFlutterBuildRelease'.
    [        ] > Process 'command 'C:\Programs\flutter\bin\flutter.bat'' finished with non-zero exit value 1
    [   +1 ms] * Try:
    [        ] Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
    [        ] * Get more help at https://help.gradle.org
    [        ] BUILD FAILED in 43s
    [   +1 ms] [   +7 ms] ensureAnalyticsSent: 0ms
    [        ] [   +2 ms] Running shutdown hooks
    [        ] [        ] Shutdown hooks complete
    [        ] [   +5 ms] exiting with code 1
    [   +1 ms] > Task :app:compileFlutterBuildRelease FAILED
    [   +2 ms] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
    [        ] Use '--warning-mode all' to show the individual deprecation warnings.
    [        ] See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings
    [        ] 1 actionable task: 1 executed
    [ +462 ms] Running Gradle task 'assembleRelease'... (completed in 44.3s)
    [   +5 ms] "flutter apk" took 45,470ms.
    [   +6 ms] Gradle task assembleRelease failed with exit code 1
    [   +1 ms] 
           #0      throwToolExit (package:flutter_tools/src/base/common.dart:14:3)
           #1      buildGradleApp (package:flutter_tools/src/android/gradle.dart:416:7)
           #2      _rootRunUnary (dart:async/zone.dart:1198:47)
           #3      _CustomZone.runUnary (dart:async/zone.dart:1100:19)
           #4      _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
           #5      Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
           #6      Future._propagateToListeners (dart:async/future_impl.dart:725:32)
           #7      Future._completeWithValue (dart:async/future_impl.dart:529:5)
           #8      _AsyncAwaitCompleter.complete (dart:async-patch/async_patch.dart:40:15)
           #9      _completeOnAsyncReturn (dart:async-patch/async_patch.dart:311:13)
           #10     _DefaultProcessUtils.stream (package:flutter_tools/src/base/process.dart)
           #11     _rootRunUnary (dart:async/zone.dart:1198:47)
           #12     _CustomZone.runUnary (dart:async/zone.dart:1100:19)
           #13     _FutureListener.handleValue (dart:async/future_impl.dart:143:18)
           #14     Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:696:45)
           #15     Future._propagateToListeners (dart:async/future_impl.dart:725:32)
           #16     Future._completeWithValue (dart:async/future_impl.dart:529:5)
           #17     Future._asyncCompleteWithValue.<anonymous closure> (dart:async/future_impl.dart:567:7)
           #18     _rootRun (dart:async/zone.dart:1190:13)
           #19     _CustomZone.run (dart:async/zone.dart:1093:19)
           #20     _CustomZone.runGuarded (dart:async/zone.dart:997:7)
           #21     _CustomZone.bindCallbackGuarded.<anonymous closure> (dart:async/zone.dart:1037:23)
           #22     _microtaskLoop (dart:async/schedule_microtask.dart:41:21)
           #23     _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5)
           #24     _runPendingImmediateCallback (dart:isolate-patch/isolate_patch.dart:118:13)
           #25     _RawReceivePortImpl._handleMessage (dart:isolate-patch/isolate_patch.dart:169:5)
           
           
    [  +96 ms] ensureAnalyticsSent: 92ms
    [   +2 ms] Running shutdown hooks
    [        ] Shutdown hooks complete
    [        ] exiting with code 1

But if i do flutter build apk --obfuscate --split-debug-info=/<directory> --verbose running it from app directory without /<project-name> it does completes the build process but app is again crashing on startup.

following are the logs for flutter build apk --obfuscate --split-debug-info=<directory> --verbose

logs
   [ +118 ms] executing: [C:\Programs\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
    [  +89 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
    [        ] 78910062997c3a836feee883712c241a5fd22983
    [        ] executing: [C:\Programs\flutter/] git tag --points-at HEAD
    [  +62 ms] Exit code 0 from: git tag --points-at HEAD
    [        ] 1.22.5
    [   +6 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref --symbolic @{u}
    [  +50 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
    [   +1 ms] origin/stable
    [        ] executing: [C:\Programs\flutter/] git ls-remote --get-url origin
    [  +52 ms] Exit code 0 from: git ls-remote --get-url origin
    [        ] https://github.com/flutter/flutter.git
    [  +87 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref HEAD
    [  +55 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
    [        ] stable
    [  +59 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [   +4 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [   +5 ms] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [  +17 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
    [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
    [        ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [   +5 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
    [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [   +1 ms] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
    [ +122 ms] Found plugin msal_mobile at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\msal_mobile-0.1.4\
    [   +6 ms] Found plugin path_provider at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-1.6.24\
    [   +4 ms] Found plugin path_provider_linux at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-0.0.1+2\
    [   +2 ms] Found plugin path_provider_macos at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-0.0.4+6\
    [   +5 ms] Found plugin path_provider_windows at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-0.0.4+3\
    [  +22 ms] Found plugin sqflite at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-1.3.2+1\
    [ +190 ms] Found plugin msal_mobile at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\msal_mobile-0.1.4\
    [   +3 ms] Found plugin path_provider at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider-1.6.24\
    [   +1 ms] Found plugin path_provider_linux at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_linux-0.0.1+2\
    [   +1 ms] Found plugin path_provider_macos at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_macos-0.0.4+6\
    [   +2 ms] Found plugin path_provider_windows at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\path_provider_windows-0.0.4+3\
    [  +11 ms] Found plugin sqflite at C:\Programs\flutter\.pub-cache\hosted\pub.dartlang.org\sqflite-1.3.2+1\
    [  +36 ms] Generating C:\Users\faizan.munir\FlutterDev\StevensPin\android\app\src\main\java\io\flutter\plugins\GeneratedPluginRegistrant.java
    [  +45 ms] You are building a fat APK that includes binaries for android-arm, android-arm64, android-x64.
    [        ] If you are deploying the app to the Play Store, it's recommended to use app bundles or split the APK to reduce the APK size.
    [        ]     To generate an app bundle, run:
    [        ]         flutter build appbundle --target-platform android-arm,android-arm64,android-x64
    [        ]         Learn more on: https://developer.android.com/guide/app-bundle
    [        ]     To split the APKs per ABI, run:
    [   +1 ms]         flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
    [        ]         Learn more on:  https://developer.android.com/studio/build/configure-apk-splits#configure-abi-split
    [  +19 ms] Running Gradle task 'assembleRelease'...
    [   +3 ms] gradle.properties already sets `android.enableR8`
    [   +5 ms] Using gradle from C:\Users\faizan.munir\FlutterDev\StevensPin\android\gradlew.bat.
    [   +1 ms] C:\Users\faizan.munir\FlutterDev\StevensPin\android\gradlew.bat mode: 33279 rwxrwxrwx.
    [   +9 ms] executing: C:\Program Files\Android\Android Studio\jre\bin\java -version
    [ +117 ms] Exit code 0 from: C:\Program Files\Android\Android Studio\jre\bin\java -version
    [   +1 ms] openjdk version "1.8.0_242-release"
           OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)
           OpenJDK 64-Bit Server VM (build 25.242-b01, mixed mode)
    [   +5 ms] executing: [C:\Users\faizan.munir\FlutterDev\StevensPin\android/] C:\Users\faizan.munir\FlutterDev\StevensPin\android\gradlew.bat -Pverbose=true -Ptarget-platform=android-arm,android-arm64,android-x64 -Ptarget=lib\main.dart -Ptrack-widget-creation=true
    -Pshrink=true -Psplit-debug-info=C:\Users\faizan.munir\FlutterDev\StevensPin -Ptree-shake-icons=true -Pdart-obfuscation=true assembleRelease
    [+5079 ms] > Task :app:compileFlutterBuildRelease
    [   +1 ms] [ +108 ms] executing: [C:\Programs\flutter/] git -c log.showSignature=false log -n 1 --pretty=format:%H
    [   +1 ms] [  +74 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
    [   +1 ms] [        ] 78910062997c3a836feee883712c241a5fd22983
    [        ] [        ] executing: [C:\Programs\flutter/] git tag --points-at HEAD
    [        ] [  +56 ms] Exit code 0 from: git tag --points-at HEAD
    [        ] [        ] 1.22.5
    [        ] [   +7 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref --symbolic @{u}
    [        ] [  +47 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
    [        ] [        ] origin/stable
    [        ] [        ] executing: [C:\Programs\flutter/] git ls-remote --get-url origin
    [   +1 ms] [  +42 ms] Exit code 0 from: git ls-remote --get-url origin
    [        ] [        ] https://github.com/flutter/flutter.git
    [        ] [  +79 ms] executing: [C:\Programs\flutter/] git rev-parse --abbrev-ref HEAD
    [        ] [  +50 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
    [        ] [        ] stable
    [        ] [  +36 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [        ] [   +4 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [        ] [  +14 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
    [        ] [   +5 ms] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
    [   +2 ms] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [   +1 ms] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
    [        ] [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
    [   +3 ms] [  +78 ms] Initializing file store
    [        ] [  +29 ms] Skipping target: gen_localizations
    [        ] [   +6 ms] kernel_snapshot: Starting due to {}
    [        ] [  +32 ms] C:\Programs\flutter\bin\cache\dart-sdk\bin\dart.exe --disable-dart-dev C:\Programs\flutter\bin\cache\artifacts\engine\windows-x64\frontend_server.dart.snapshot --sdk-root
    C:\Programs\flutter\bin\cache\artifacts\engine\common\flutter_patched_sdk_product/ --target=flutter -Ddart.developer.causal_async_stacks=false -Ddart.vm.profile=false -Ddart.vm.product=true --bytecode-options=source-positions --aot --tfa --packages
    C:\Users\faizan.munir\FlutterDev\StevensPin\.packages --output-dill C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\app.dill --depfile
    C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\kernel_snapshot.d package:StevensPin/main.dart
    [+16637 ms] [+16705 ms] kernel_snapshot: Complete
    [ +701 ms] [ +745 ms] aot_android_asset_bundle: Starting due to {}
    [ +199 ms] [ +204 ms] Running command: C:\Programs\flutter\bin\cache\dart-sdk\bin\dart.exe --disable-dart-dev C:\Programs\flutter\bin\cache\artifacts\engine\windows-x64\const_finder.dart.snapshot --kernel-file
    C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\app.dill --class-library-uri package:flutter/src/widgets/icon_data.dart --class-name IconData
    [   +3 ms] [   +2 ms] android_aot_release_android-arm: Starting due to {InvalidatedReason.inputChanged}
    [   +1 ms] [   +6 ms] executing: C:\Programs\flutter\bin\cache\artifacts\engine\android-arm-release\windows-x64\gen_snapshot --deterministic --snapshot_kind=app-aot-elf
    --elf=C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\armeabi-v7a\app.so --strip --no-sim-use-hardfp --no-use-integer-division --no-causal-async-stacks --lazy-async-stacks --dwarf-stack-traces
    --save-debugging-info=C:\Users\faizan.munir\FlutterDev\StevensPin\app.android-arm.symbols --obfuscate C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\app.dill
    [   +1 ms] [        ] android_aot_release_android-arm64: Starting due to {InvalidatedReason.inputChanged}
    [   +1 ms] [   +1 ms] executing: C:\Programs\flutter\bin\cache\artifacts\engine\android-arm64-release\windows-x64\gen_snapshot --deterministic --snapshot_kind=app-aot-elf
    --elf=C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\arm64-v8a\app.so --strip --no-causal-async-stacks --lazy-async-stacks --dwarf-stack-traces
    --save-debugging-info=C:\Users\faizan.munir\FlutterDev\StevensPin\app.android-arm64.symbols --obfuscate C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\app.dill
    [   +2 ms] [        ] android_aot_release_android-x64: Starting due to {InvalidatedReason.inputChanged}
    [        ] [   +1 ms] executing: C:\Programs\flutter\bin\cache\artifacts\engine\android-x64-release\windows-x64\gen_snapshot --deterministic --snapshot_kind=app-aot-elf
    --elf=C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\x86_64\app.so --strip --no-causal-async-stacks --lazy-async-stacks --dwarf-stack-traces
    --save-debugging-info=C:\Users\faizan.munir\FlutterDev\StevensPin\app.android-x64.symbols --obfuscate C:\Users\faizan.munir\FlutterDev\StevensPin\.dart_tool\flutter_build\613009f8d713f7b6912ea6d693e22f7e\app.dill
    [+1125 ms] [+1040 ms] Running font-subset: C:\Programs\flutter\bin\cache\artifacts\engine\windows-x64\font-subset.exe C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\flutter\release\flutter_assets\fonts/MaterialIcons-Regular.otf
    C:\Programs\flutter\bin\cache\artifacts\material_fonts\MaterialIcons-Regular.otf, using codepoints 59828 59495 58791 58792 58974
    [  +81 ms] [  +76 ms] aot_android_asset_bundle: Complete
    [+12182 ms] [+12217 ms] android_aot_release_android-arm: Complete
    [        ] [  +15 ms] android_aot_release_android-arm64: Complete
    [        ] [  +54 ms] android_aot_release_android-x64: Complete
    [  +98 ms] [  +40 ms] android_aot_bundle_release_android-arm: Starting due to {InvalidatedReason.inputChanged}
    [        ] [   +4 ms] android_aot_bundle_release_android-arm: Complete
    [        ] [  +21 ms] android_aot_bundle_release_android-arm64: Starting due to {InvalidatedReason.inputChanged}
    [        ] [   +5 ms] android_aot_bundle_release_android-arm64: Complete
    [  +97 ms] [  +61 ms] android_aot_bundle_release_android-x64: Starting due to {InvalidatedReason.inputChanged}
    [   +1 ms] [   +4 ms] android_aot_bundle_release_android-x64: Complete
    [ +100 ms] [  +85 ms] _composite: Starting due to {}
    [   +1 ms] [        ] _composite: Complete
    [        ] [   +1 ms] Persisting file store
    [        ] [  +86 ms] Done persisting file store
    [  +97 ms] [  +11 ms] build succeeded.
    [        ] [  +15 ms] "flutter assemble" took 31,596ms.
    [        ] [   +3 ms] ensureAnalyticsSent: 0ms
    [        ] [   +1 ms] Running shutdown hooks
    [        ] [        ] Shutdown hooks complete
    [        ] [        ] exiting with code 0
    [+1096 ms] > Task :app:packLibsflutterBuildRelease
    [   +1 ms] > Task :app:preBuild UP-TO-DATE
    [  +99 ms] > Task :app:extractProguardFiles
    [   +1 ms] > Task :app:preReleaseBuild
    [ +109 ms] > Task :msal_mobile:preBuild UP-TO-DATE
    [   +1 ms] > Task :msal_mobile:preReleaseBuild UP-TO-DATE
    [        ] > Task :path_provider:preBuild UP-TO-DATE
    [        ] > Task :path_provider:preReleaseBuild UP-TO-DATE
    [   +2 ms] > Task :path_provider:compileReleaseAidl NO-SOURCE
    [        ] > Task :msal_mobile:compileReleaseAidl NO-SOURCE
    [        ] > Task :sqflite:preBuild UP-TO-DATE
    [        ] > Task :sqflite:preReleaseBuild UP-TO-DATE
    [  +89 ms] > Task :sqflite:compileReleaseAidl NO-SOURCE
    [   +4 ms] > Task :app:compileReleaseAidl NO-SOURCE
    [   +1 ms] > Task :msal_mobile:packageReleaseRenderscript NO-SOURCE
    [  +13 ms] > Task :path_provider:packageReleaseRenderscript NO-SOURCE
    [        ] > Task :sqflite:packageReleaseRenderscript NO-SOURCE
    [        ] > Task :app:compileReleaseRenderscript NO-SOURCE
    [  +73 ms] > Task :app:checkReleaseManifest
    [   +1 ms] > Task :app:generateReleaseBuildConfig
    [ +195 ms] > Task :app:cleanMergeReleaseAssets UP-TO-DATE
    [ +100 ms] > Task :app:mergeReleaseShaders
    [ +104 ms] > Task :app:compileReleaseShaders
    [   +2 ms] > Task :app:generateReleaseAssets
    [        ] > Task :msal_mobile:mergeReleaseShaders
    [        ] > Task :msal_mobile:compileReleaseShaders
    [   +1 ms] > Task :msal_mobile:generateReleaseAssets
    [        ] > Task :msal_mobile:packageReleaseAssets
    [        ] > Task :path_provider:mergeReleaseShaders
    [        ] > Task :path_provider:compileReleaseShaders
    [   +2 ms] > Task :path_provider:generateReleaseAssets
    [  +85 ms] > Task :path_provider:packageReleaseAssets
    [        ] > Task :sqflite:mergeReleaseShaders
    [        ] > Task :sqflite:compileReleaseShaders
    [        ] > Task :sqflite:generateReleaseAssets
    [        ] > Task :sqflite:packageReleaseAssets
    [        ] > Task :app:mergeReleaseAssets
    [        ] > Task :app:copyFlutterAssetsRelease
    [ +100 ms] > Task :app:mainApkListPersistenceRelease
    [  +94 ms] > Task :app:generateReleaseResValues
    [   +1 ms] > Task :app:generateReleaseResources
    [        ] > Task :msal_mobile:generateReleaseResValues
    [   +1 ms] > Task :path_provider:compileReleaseRenderscript NO-SOURCE
    [   +1 ms] > Task :msal_mobile:compileReleaseRenderscript NO-SOURCE
    [   +5 ms] > Task :msal_mobile:generateReleaseResources
    [  +91 ms] > Task :msal_mobile:packageReleaseResources
    [   +2 ms] > Task :path_provider:generateReleaseResValues
    [        ] > Task :path_provider:generateReleaseResources
    [  +95 ms] > Task :path_provider:packageReleaseResources
    [   +1 ms] > Task :sqflite:generateReleaseResValues
    [        ] > Task :sqflite:compileReleaseRenderscript NO-SOURCE
    [        ] > Task :sqflite:generateReleaseResources
    [   +1 ms] > Task :sqflite:packageReleaseResources
    [+5947 ms] > Task :app:createReleaseCompatibleScreenManifests
    [   +1 ms] > Task :msal_mobile:checkReleaseManifest
    [ +382 ms] > Task :msal_mobile:processReleaseManifest
    [   +4 ms] > Task :path_provider:checkReleaseManifest
    [ +365 ms] > Task :path_provider:processReleaseManifest
    [ +247 ms] > Task :sqflite:checkReleaseManifest
    [        ] > Task :sqflite:processReleaseManifest
    [ +643 ms] > Task :app:processReleaseManifest
    [ +600 ms] > Task :app:mergeReleaseResources
    [+1002 ms] > Task :sqflite:parseReleaseLibraryResources
    [ +127 ms] > Task :path_provider:parseReleaseLibraryResources
    [   +4 ms] > Task :msal_mobile:parseReleaseLibraryResources
    [  +65 ms] > Task :msal_mobile:generateReleaseBuildConfig
    [ +299 ms] > Task :path_provider:generateReleaseRFile
    [        ] > Task :sqflite:generateReleaseRFile
    [        ] > Task :msal_mobile:generateReleaseRFile
    [+3202 ms] > Task :app:processReleaseResources
    [  +13 ms] > Task :msal_mobile:javaPreCompileRelease
    [+1884 ms] > Task :msal_mobile:compileReleaseJavaWithJavac
    [ +114 ms] > Task :path_provider:generateReleaseBuildConfig
    [   +1 ms] > Task :sqflite:generateReleaseBuildConfig
    [        ] > Task :msal_mobile:bundleLibCompileRelease
    [        ] > Task :sqflite:javaPreCompileRelease
    [ +681 ms] > Task :sqflite:compileReleaseJavaWithJavac
    [  +13 ms] > Task :path_provider:javaPreCompileRelease
    [ +786 ms] > Task :path_provider:compileReleaseJavaWithJavac
    [        ] > Task :sqflite:bundleLibCompileRelease
    [        ] > Task :path_provider:bundleLibCompileRelease
    [+7699 ms] > Task :app:compileReleaseKotlin
    [  +99 ms] > Task :app:javaPreCompileRelease
    [+1526 ms] > Task :app:compileReleaseJavaWithJavac
    [   +4 ms] > Task :app:compileReleaseSources
    [  +90 ms] > Task :app:prepareLintJar UP-TO-DATE
    [  +79 ms] > Task :msal_mobile:prepareLintJarForPublish UP-TO-DATE
    [   +1 ms] > Task :path_provider:prepareLintJarForPublish UP-TO-DATE
    [   +1 ms] > Task :sqflite:prepareLintJarForPublish UP-TO-DATE
    [+11698 ms] > Task :app:lintVitalRelease
    [   +1 ms] > Task :app:validateSigningRelease
    [  +98 ms] > Task :app:signingConfigWriterRelease
    [ +198 ms] > Task :app:mergeReleaseJniLibFolders
    [   +1 ms] > Task :msal_mobile:processReleaseJavaRes NO-SOURCE
    [ +117 ms] > Task :msal_mobile:mergeReleaseJniLibFolders
    [   +1 ms] > Task :msal_mobile:bundleLibResRelease
    [        ] > Task :path_provider:processReleaseJavaRes NO-SOURCE
    [   +3 ms] > Task :path_provider:mergeReleaseJniLibFolders
    [  +12 ms] > Task :path_provider:bundleLibResRelease
    [   +1 ms] > Task :sqflite:processReleaseJavaRes NO-SOURCE
    [  +65 ms] > Task :sqflite:mergeReleaseJniLibFolders
    [   +2 ms] > Task :sqflite:bundleLibResRelease
    [   +1 ms] > Task :msal_mobile:mergeReleaseNativeLibs
    [  +93 ms] > Task :msal_mobile:stripReleaseDebugSymbols
    [ +100 ms] > Task :msal_mobile:transformNativeLibsWithIntermediateJniLibsForRelease
    [   +1 ms] > Task :sqflite:mergeReleaseNativeLibs
    [        ] > Task :sqflite:stripReleaseDebugSymbols
    [   +3 ms] > Task :sqflite:transformNativeLibsWithIntermediateJniLibsForRelease
    [   +1 ms] > Task :path_provider:mergeReleaseNativeLibs
    [        ] > Task :path_provider:stripReleaseDebugSymbols
    [ +287 ms] > Task :path_provider:transformNativeLibsWithIntermediateJniLibsForRelease
    [ +350 ms] > Task :app:mergeReleaseGeneratedProguardFiles UP-TO-DATE
    [ +234 ms] > Task :app:processReleaseJavaRes NO-SOURCE
    [   +7 ms] > Task :msal_mobile:mergeReleaseGeneratedProguardFiles UP-TO-DATE
    [        ] > Task :msal_mobile:bundleLibRuntimeRelease
    [        ] > Task :msal_mobile:mergeReleaseConsumerProguardFiles UP-TO-DATE
    [        ] > Task :path_provider:mergeReleaseGeneratedProguardFiles UP-TO-DATE
    [        ] > Task :path_provider:mergeReleaseConsumerProguardFiles UP-TO-DATE
    [  +38 ms] > Task :path_provider:bundleLibRuntimeRelease
    [  +44 ms] > Task :sqflite:mergeReleaseGeneratedProguardFiles UP-TO-DATE
    [   +2 ms] > Task :sqflite:mergeReleaseConsumerProguardFiles UP-TO-DATE
    [   +1 ms] > Task :msal_mobile:extractReleaseAnnotations
    [  +62 ms] > Task :sqflite:bundleLibRuntimeRelease
    [   +1 ms] > Task :msal_mobile:transformNativeLibsWithSyncJniLibsForRelease
    [        ] > Task :msal_mobile:compileReleaseSources
    [+5855 ms] > Task :msal_mobile:mergeReleaseResources
    [+1500 ms] > Task :msal_mobile:mergeReleaseJavaResource
    [ +101 ms] > Task :msal_mobile:transformClassesAndResourcesWithSyncLibJarsForRelease
    [ +108 ms] > Task :msal_mobile:bundleReleaseAar
    [   +3 ms] > Task :path_provider:extractReleaseAnnotations
    [ +291 ms] > Task :app:mergeReleaseNativeLibs
    [  +95 ms] Unable to strip library 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\merged_native_libs\release\out\lib\armeabi-v7a\libflutter.so' due to missing strip tool for ABI 'ARMEABI_V7A'. Packaging it as is.
    [ +201 ms] > Task :app:stripReleaseDebugSymbols
    [   +1 ms] Compatible side by side NDK version was not found.
    [        ] Unable to strip library 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\merged_native_libs\release\out\lib\arm64-v8a\libapp.so' due to missing strip tool for ABI 'ARM64_V8A'. Packaging it as is.
    [        ] Unable to strip library 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\merged_native_libs\release\out\lib\arm64-v8a\libflutter.so' due to missing strip tool for ABI 'ARM64_V8A'. Packaging it as is.
    [        ] Unable to strip library 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\merged_native_libs\release\out\lib\armeabi-v7a\libapp.so' due to missing strip tool for ABI 'ARMEABI_V7A'. Packaging it as is.
    [   +1 ms] Unable to strip library 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\merged_native_libs\release\out\lib\x86_64\libapp.so' due to missing strip tool for ABI 'X86_64'. Packaging it as is.
    [   +1 ms] Unable to strip library 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\intermediates\merged_native_libs\release\out\lib\x86_64\libflutter.so' due to missing strip tool for ABI 'X86_64'. Packaging it as is.
    [   +1 ms] > Task :path_provider:transformNativeLibsWithSyncJniLibsForRelease
    [        ] > Task :path_provider:compileReleaseSources
    [  +92 ms] > Task :path_provider:mergeReleaseJavaResource
    [   +1 ms] > Task :path_provider:transformClassesAndResourcesWithSyncLibJarsForRelease
    [  +97 ms] > Task :path_provider:bundleReleaseAar
    [ +701 ms] > Task :app:mergeReleaseJavaResource
    [+7101 ms] > Task :app:transformClassesAndResourcesWithR8ForRelease
    [        ] R8: Missing class: java.lang.ClassValue
    [+14593 ms] > Task :app:transformClassesAndDexWithShrinkResForRelease
    [  +37 ms] Removed unused resources: Binary resource data reduced from 502KB to 484KB: Removed 3%
    [+5067 ms] > Task :msal_mobile:verifyReleaseResources
    [+4599 ms] > Task :app:packageRelease
    [ +299 ms] > Task :app:assembleRelease
    [ +311 ms] > Task :msal_mobile:assembleRelease
    [+1108 ms] > Task :path_provider:mergeReleaseResources
    [ +378 ms] > Task :sqflite:extractReleaseAnnotations
    [   +1 ms] > Task :sqflite:transformNativeLibsWithSyncJniLibsForRelease
    [        ] > Task :sqflite:compileReleaseSources
    [+1104 ms] > Task :sqflite:mergeReleaseResources
    [ +304 ms] > Task :sqflite:mergeReleaseJavaResource
    [   +8 ms] > Task :sqflite:transformClassesAndResourcesWithSyncLibJarsForRelease
    [  +80 ms] > Task :sqflite:bundleReleaseAar
    [+2326 ms] > Task :path_provider:verifyReleaseResources
    [   +3 ms] > Task :path_provider:assembleRelease
    [ +126 ms] > Task :sqflite:verifyReleaseResources
    [  +28 ms] > Task :sqflite:assembleRelease
    [        ] Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0.
    [        ] Use '--warning-mode all' to show the individual deprecation warnings.
    [        ] See https://docs.gradle.org/6.1.1/userguide/command_line_interface.html#sec:command_line_warnings
    [   +2 ms] BUILD SUCCESSFUL in 2m 4s
    [        ] 119 actionable tasks: 107 executed, 12 up-to-date
    [ +372 ms] Running Gradle task 'assembleRelease'... (completed in 125.3s, longer than expected)
    [  +36 ms] calculateSha: LocalDirectory: 'C:\Users\faizan.munir\FlutterDev\StevensPin\build\app\outputs\flutter-apk'/app.apk
    [  +11 ms] calculateSha: reading file took 10us
    [ +220 ms] calculateSha: computing sha took 219us
    [   +6 ms] √ Built build\app\outputs\flutter-apk\app-release.apk (16.6MB).
    [   +3 ms] "flutter apk" took 126,104ms.
    [ +149 ms] ensureAnalyticsSent: 146ms
    [   +3 ms] Running shutdown hooks
    [        ] Shutdown hooks complete
    [   +1 ms] exiting with code 0

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Jan 20, 2021
@TahaTesser
Copy link
Member

Hi @Faizan-sts
An incorrect path causes the first error, but that's not the right command anyway as stated in #67014 (comment)
You need to use flutter build apk --obfuscate --split-debug-info=debug_info, I just tried it on the latest stable channel, there is no app crash on startup when launching APK on a physical device built using this command

flutter doctor -v
[✓] Flutter (Channel stable, 1.22.5, on Microsoft Windows [Version 10.0.19042.746], locale en-US)
    • Flutter version 1.22.5 at C:\Code\flutter_stable
    • Framework revision 7891006299 (6 weeks ago), 2020-12-10 11:54:40 -0800
    • Engine revision ae90085a84
    • Dart version 2.10.4


[!] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
    • Android SDK at C:\Code\SDK
    • Platform android-30, build-tools 30.0.3
    • ANDROID_HOME = C:\Code\SDK
    • Java binary at: C:\Code\android-studio\jre\bin\java
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)
    ! Some Android licenses not accepted.  To resolve this, run: flutter doctor --android-licenses

[!] Android Studio (version 4.1.0)
    • Android Studio at C:\Code\android-studio
    ✗ Flutter plugin not installed; this adds Flutter specific functionality.
    ✗ Dart plugin not installed; this adds Dart specific functionality.
    • Java version OpenJDK Runtime Environment (build 1.8.0_242-release-1644-b01)

[✓] VS Code (version 1.52.1)
    • VS Code at C:\Users\Taha\AppData\Local\Programs\Microsoft VS Code
    • Flutter extension version 3.18.1

[✓] Connected device (1 available)
    • Android SDK built for x86 (mobile) • emulator-5554 • android-x86 • Android 10 (API 29) (emulator)

! Doctor found issues in 2 categories.

You're probably hitting a different issue on startup, which is not related to this.
Can you please provide a minimal complete reproducible code sample for issues related to startup crash?
Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Jan 21, 2021
@Faizan-sts
Copy link
Author

Faizan-sts commented Jan 21, 2021

Hi @TahaTesser
Thanks for your help but i need a bit direction here please. If flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory> is not a correct command why it's recommended in the flutter docs ?

Like I mentioned above both flutter build apk --obfuscate --split-debug-info=/<directory> (Without project-name) and flutter build apk --obfuscate --split-debug-info=debug_info completes successfully but app crashes right on startup.

How can i track what's causing the crash. I've tried adb logcat which spits out lot of details, being a beginner at mobile development, i've not spotted any error being thrown at start up. Is there any perticular info should i search for within the log.

flutter build apk --release --no-shrink builds and runs like a charm.

Following are the adb logcat logs between interval app started till it crashes

logs
   01-21 18:29:19.994  3267  3267 D BaseDragLayer: dispatchTouchEvent, ACTION_DOWN - mTouchDispatchState = 1
01-21 18:29:19.995  3267  3267 D ASCTouchController: fromState = com.android.launcher3.uioverrides.states.AllAppsState@b87d5ed
01-21 18:29:19.995  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 1
01-21 18:29:19.997  3267  3267 D AppStartUtils: sendActiveLaunchBroadcast
01-21 18:29:19.997  3267  3267 D FastBitmapDrawable: animatePress : true  immediate : false invalidate : true
01-21 18:29:19.997  1036  2817 I Pageboost: start active launch : com.example.StevensPin
01-21 18:29:19.997  1036  2817 D ActivityTaskManager: Checking for the Active launch isPkgEverLaunched :true, isPkgStopped : false, isDataCleared :false, isAutoRunBlocked : false
01-21 18:29:19.997  1036  2851 I Pageboost: active launch for : com.example.StevensPin , 0
01-21 18:29:19.997  1036  2817 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startActivity:982 com.android.server.wm.ActivityTaskManagerService$ActiveLaunchReceiver.onReceive:1117 android.app.LoadedApk$ReceiverDispatcher$Args.lambda$getRunnable$0$LoadedApk$ReceiverDispatcher$Args:1646 android.app.-$$Lambda$LoadedApk$ReceiverDispatcher$Args$_BumDX2UKsnxLVrE6UJsJZkotuA.run:2 android.os.Handler.handleCallback:883
01-21 18:29:19.999  3418 28758 E pageboostd: active launch start : app comexampleStevensPin
01-21 18:29:20.001  1036  2817 E ActivityTaskManager: TouchDown intent received, starting ActiveLaunch
01-21 18:29:20.001  1036  2817 I ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.example.StevensPin user:0
01-21 18:29:20.001  1036  2817 D ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.001  1036  2817 D ActivityManager: package  com.example.StevensPin, user - 0 is SDcard whitelisted
01-21 18:29:20.001  1036  2817 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.example.StevensPin user:0
01-21 18:29:20.001  1036  2817 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.001  1036  2817 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.example.StevensPin user:0
01-21 18:29:20.001  1036  2817 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.002  1036  2817 D ActivityTaskManager: starting Active launch
01-21 18:29:20.003  3418 28758 E pageboostd: comexampleStevensPin, amt 1576844 scnt 2 fcnt 0
01-21 18:29:20.003  3418 28758 E pageboostd: comexampleStevensPin, amt 0 scnt 2 fcnt 0
01-21 18:29:20.003  3418 28758 E pageboostd: active launch end : app comexampleStevensPin data_amount 1576844
01-21 18:29:20.007  3267  3267 D SwipeDetector: shouldScrollStart false Not Slop condition
01-21 18:29:20.007  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 1
01-21 18:29:20.008 17876 17876 E Zygote  : isWhitelistProcess - Process is Whitelisted
01-21 18:29:20.009 17876 17876 E Zygote  : accessInfo : 1
01-21 18:29:20.015  1036  1156 I ActivityManager: Start proc 17876:com.example.StevensPin/u0a333 for activelaunch {com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.020 17876 17876 E mple.StevensPi: Not starting debugger since process cannot load the jdwp agent.
01-21 18:29:20.028 17876 17876 D ActivityThread: setConscryptValidator
01-21 18:29:20.028 17876 17876 D ActivityThread: setConscryptValidator - put
01-21 18:29:20.030  1036  3259 I ActivityManager: DSS OFF for com.example.StevensPin
01-21 18:29:20.034  3267  3267 D SwipeDetector: shouldScrollStart false Not Slop condition
01-21 18:29:20.034  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 1
01-21 18:29:20.047 17876 17876 I System.out: should load native is true
01-21 18:29:20.047 17876 17876 D NetworkSecurityConfig: No Network Security Config specified, using platform default
01-21 18:29:20.051  3267  3267 D SwipeDetector: shouldScrollStart false Not Slop condition
01-21 18:29:20.051  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 1
01-21 18:29:20.084  3267  3267 D SwipeDetector: shouldScrollStart false Not Slop condition
01-21 18:29:20.084  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 1
01-21 18:29:20.088  1036  2199 D InputReader: Btn_touch(6): value=0 when=1119575.552642
01-21 18:29:20.088  1036  2199 I InputReader: Touch event's action is 0x1 (id=6, t=0) [pCnt=1, s=] when=1119575.552642
01-21 18:29:20.088  1036  2198 I InputDispatcher: Delivering touch to (3267): action: 0x1, f=0x0, d=0, '6ec1d28', t=1
01-21 18:29:20.089  1036  2198 I InputDispatcher: Delivering touch to (2845): action: 0x1, f=0x3, d=0, '240692b', t=1
01-21 18:29:20.089  3267  3267 D SwipeDetector: shouldScrollStart false Not Slop condition
01-21 18:29:20.089  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 1
01-21 18:29:20.089  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: ViewPostIme pointer 1
01-21 18:29:20.089  3267  3267 D BaseDragLayer: findActiveController return false mTouchDispatchState = 0
01-21 18:29:20.089  3267  3267 D FastBitmapDrawable: animatePress : false  immediate : true invalidate : false
01-21 18:29:20.089  3267  3267 D ItemClickHandler: Icon Clicked
01-21 18:29:20.089  3267  3267 D b/132900132: startAppShortcutOrInfoActivity
01-21 18:29:20.090  3267  3267 D b/132900132: startActivitySafely 1
01-21 18:29:20.090  1036  4724 D CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 2530000  uid : 1000  pid : 1036  pkgName : APP_LAUNCH@CPU_MIN@7
01-21 18:29:20.091  3267  3267 D ActivityOptions: makeRemoteAnimation, adapter=android.view.RemoteAnimationAdapter@71be231, caller=com.android.systemui.shared.system.ActivityOptionsCompat.makeRemoteAnimation:68 com.android.launcher3.QuickstepAppTransitionManagerImpl.getActivityLaunchOptions:354 com.android.launcher3.Launcher.getActivityLaunchOptions:3191
01-21 18:29:20.091  3267  3267 D BaseDraggingActivity:  startActivitySafely isShortcutfalse
01-21 18:29:20.091  3267  3267 D b/132900132: startActivitySafely 2
01-21 18:29:20.092  1036  3259 I ActivityTaskManager: START u0 {act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10200000 cmp=com.example.StevensPin/.MainActivity bnds=[643,1002][839,1349]} from uid 10154
01-21 18:29:20.095  1036  3259 D CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 2530000  uid : 1000  pid : 1036  pkgName : AMS_APP_SWITCH@CPU_MIN@61
01-21 18:29:20.095  1036  3259 D ActivityManagerPerformance: AMP_acquire() APP_SWITCH
01-21 18:29:20.095  1036  3259 D ActivityTaskManager: MultiTaskingTaskLaunchParamsModifier:task=null display-from-source=0 display-id=0 display-windowing-mode=1
01-21 18:29:20.096  1036  3259 D ActivityTaskManager: MultiTaskingTaskLaunchParamsModifier:task=null display-from-source=0 display-id=0 display-windowing-mode=1 activity-options-fullscreen=Rect(0, 0 - 0, 0) non-freeform-display maximized-bounds
01-21 18:29:20.096  1036  3259 I android_os_HwBinder: HwBinder: Starting thread pool for getting: vendor.samsung_slsi.hardware.epic@1.0::IEpicRequest/default
01-21 18:29:20.097  1036  2851 I Pageboost: stop active launch by timeout
01-21 18:29:20.097   574   614 I SurfaceFlinger: id=164096 createSurf (0x0),-1 flag=80004, Stack=1767#0
01-21 18:29:20.097   574   614 I SurfaceFlinger: id=164097 createSurf (0x0),-1 flag=20004, animation background stackId=1767#0
01-21 18:29:20.097  3418  3418 E pageboostd: Received HALT command code 2
01-21 18:29:20.098  1036  3259 D ActivityTaskManager: MultiTaskingTaskLaunchParamsModifier:tid=4064 display-from-task=0 display-id=0 display-windowing-mode=1 activity-options-fullscreen=Rect(0, 0 - 0, 0) non-freeform-display maximized-bounds
01-21 18:29:20.098   574   614 I SurfaceFlinger: id=164098 createSurf (0x0),-1 flag=80004, Task=4064#0
01-21 18:29:20.098  1036  3259 D ActivityTaskManager: updateMinimizedState: unknown notifyReason=2
01-21 18:29:20.099   574   614 I SurfaceFlinger: id=164099 createSurf (0x0),-1 flag=80004, AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}#0
01-21 18:29:20.099  1036  3259 V WindowManager: Prepare app transition: transit=TRANSIT_TASK_OPEN mNextAppTransition=TRANSIT_UNSET alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:6356 com.android.server.wm.DisplayContent.prepareAppTransition:6350 com.android.server.wm.ActivityStack.startActivityLocked:3999 com.android.server.wm.ActivityStarter.startActivityUnchecked:2924 com.android.server.wm.ActivityStarter.startActivity:2180
01-21 18:29:20.101  3267  3267 D UserEvent:
01-21 18:29:20.101  3267  3267 D UserEvent: -----------------------------------------------------
01-21 18:29:20.101  3267  3267 D UserEvent: action:TAP
01-21 18:29:20.101  3267  3267 D UserEvent:  Source child:APP_ICON, packageHash=-273426742, componentHash=-222926109, intentHash=145779990, predictiveRank=-100, grid(3,2), span(1,1), pageIdx=1        parent:ALLAPPS
01-21 18:29:20.101  3267  3267 D UserEvent:  Elapsed container 63627 ms, session 63627 ms, action 0 ms
01-21 18:29:20.101  3267  3267 D UserEvent:
01-21 18:29:20.101  1036  1149 D GameSDK@LifeCycle: onFocusedStackChanged(): focusedStackInfo: Stack id=1767 bounds=[0,0][1080,2280] displayId=0 userId=0
01-21 18:29:20.101  1036  1149 D GameSDK@LifeCycle:  configuration={1.1 234mcc30mnc [en_GB] ldltr sw411dp w411dp h778dp 420dpi nrml long port night finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2280) mAppBounds=Rect(0, 107 - 1080, 2154) mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=standard mAlwaysOnTop=undefined mRotation=ROTATION_0} s.33912 desktop/d ?dc bts=0 ff=0 bf=0 themeSeq=0}
01-21 18:29:20.101  1036  1149 D GameSDK@LifeCycle:   taskId=4064: com.example.StevensPin/com.example.StevensPin.MainActivity bounds=[0,0][1080,2280] userId=0 visible=true topActivity=ComponentInfo{com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.102  3267  3267 D SPayUpdater: updateSpayHandler launcher activity is paused false
01-21 18:29:20.102  1036  4724 V WindowManager: Prepare app transition: transit=TRANSIT_TASK_OPEN mNextAppTransition=TRANSIT_TASK_OPEN alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:6356 com.android.server.wm.DisplayContent.prepareAppTransition:6350 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:3554 com.android.server.wm.ActivityStack.resumeTopActivityUncheckedLocked:3154 com.android.server.wm.RootActivityContainer.resumeFocusedStacksTopActivities:1246
01-21 18:29:20.102  1036  4724 D ActivityTaskManager: root process false,4064,17876,com.example.StevensPin
01-21 18:29:20.103  1036  4724 V WindowManager: rotationForOrientation(orient=-1, last=0); user=0 USER_ROTATION_LOCKED
01-21 18:29:20.103  1036  4724 V WindowOrientationListener: getProposedRotation: -1
01-21 18:29:20.103  1036  4724 V WindowManager: Computed rotation=0 for display id=0 based on lastOrientation=-1 and oldRotation=0, caller=com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1553 com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1507 com.android.server.wm.DisplayContent.onDescendantOrientationChanged:1448 com.android.server.wm.WindowContainer.onDescendantOrientationChanged:742 com.android.server.wm.WindowContainer.onDescendantOrientationChanged:742 com.android.server.wm.WindowContainer.onDescendantOrientationChanged:742
01-21 18:29:20.103  1036  4724 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.103  1036  4724 V WindowManager: rotationForOrientation(orient=-1, last=0); user=0 USER_ROTATION_LOCKED
01-21 18:29:20.104  1036  4724 V WindowManager: Computed rotation=0 for display id=0 based on lastOrientation=-1 and oldRotation=0, caller=com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1553 com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1507 com.android.server.wm.RootActivityContainer.ensureVisibilityAndConfig:688 com.android.server.wm.ActivityStackSupervisor.realStartActivityLocked:1009 com.android.server.wm.ActivityStackSupervisor.startSpecificActivityLocked:1303 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:3785
01-21 18:29:20.104  1036  4724 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.104  1036  4724 V WindowOrientationListener: getProposedRotation: -1
01-21 18:29:20.105 17876 17876 W ActivityThread: handleWindowVisibility: no activity for token android.os.BinderProxy@26d28de
01-21 18:29:20.105  1036  4724 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.105  1036  4724 D GamePkgDataHelper: notifyAppCreate(), pkgName: com.example.StevensPin, sendRet: true
01-21 18:29:20.105  1036  2806 D GameManagerService: onLooperPrepared(), msg: { when=0 what=10010 obj=com.example.StevensPin target=com.samsung.android.game.GameManagerService$FgCheckThread$1 }
01-21 18:29:20.105  1036  2806 D GameManagerService: handleMessage(), received MSG_APP_CREATE of pkgName: com.example.StevensPin
01-21 18:29:20.106  1036  4724 D InputDispatcher: Focused application set to (0): 788cd84
01-21 18:29:20.106  1036  4724 V WindowManager: Changing focus from Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} to null displayId=0 Callers=com.android.server.wm.RootWindowContainer.updateFocusedWindowLocked:204 com.android.server.wm.WindowManagerService.updateFocusedWindowLocked:6443 com.android.server.wm.ActivityDisplay.setFocusedApp:1686 com.android.server.wm.ActivityTaskManagerService.setResumedActivityUncheckLocked:6981 com.android.server.wm.ActivityStack.onActivityStateChanged:664 com.android.server.wm.TaskRecord.onActivityStateChanged:2425
01-21 18:29:20.106  1036  4724 V ActivityTaskManager: markDedicatedIfNeeded com.example.StevensPin, 0,{}
01-21 18:29:20.107  1036  4724 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.107  1036  4724 D MARsPolicyManager: onPackageResumedFG pkgName = com.example.StevensPin, userId = 0
01-21 18:29:20.123  1036  4724 W WindowManager: Execute app transition: mNextAppTransition=TRANSIT_TASK_OPEN, displayId: 0 Callers=com.android.server.wm.RootActivityContainer.executeAppTransitionForAllDisplay:1154 com.android.server.wm.ActivityStackSupervisor.reportResumedActivityLocked:2692 com.android.server.wm.ActivityRecord.completeResumeLocked:2704 com.android.server.wm.ActivityStack.minimalResumeActivityLocked:1830 com.android.server.wm.ActivityStackSupervisor.realStartActivityLocked:1214
01-21 18:29:20.124  1036  1150 E system_server: Invalid ID 0x00000000.
01-21 18:29:20.124  1036  1150 D PhoneWindow: forceLight changed to true [Splash Screen com.example.StevensPin] from com.android.internal.policy.PhoneWindow.updateForceLightNavigationBar:4274 com.android.internal.policy.DecorView.updateColorViews:1547 com.android.internal.policy.PhoneWindow.dispatchWindowAttributesChanged:3252 android.view.Window.setFlags:1153 com.android.internal.policy.PhoneWindow.generateLayout:2474
01-21 18:29:20.125  1036  1149 D GameSDK@LifeCycle: onFocusedPackageChanged(): newPkgName: com.example.StevensPin, newPid: 17876
01-21 18:29:20.125  1036  1150 D InputTransport: Input channel constructed: '92739a1', fd=593
01-21 18:29:20.125  1036  1150 D InputTransport: Input channel constructed: '92739a1', fd=595
01-21 18:29:20.125  1036  1036 I Pageboost: package com.example.StevensPin
01-21 18:29:20.125  1036  1036 I Pageboost: stop active launch
01-21 18:29:20.125   574   614 I SurfaceFlinger: id=164100 createSurf (0x0),-1 flag=80004, 92739a1 Splash Screen com.example.StevensPin#0
01-21 18:29:20.126  1036  2851 I Pageboost: Record App IO : com.example.StevensPin pid 17876
01-21 18:29:20.126  1036  1149 D MdnieScenarioControlService: MultiWindowState : false , mode : 0
01-21 18:29:20.126  1036  1150 I ViewRootImpl@e312e08[StevensPin]: setView = com.android.internal.policy.DecorView@77f9387 TM=true MM=false
01-21 18:29:20.126  1036  2851 I Pageboost: IoRecord pid : 17876, started correctly
01-21 18:29:20.126  1036  1149 D GameManagerService: MultiWindowEventListener.onFocusedStackChanged()
01-21 18:29:20.126  1036  1149 D GameManagerService: getForegroundPair(), state=0, bounds=[0,0][1080,2280], displayId=0, userId=0, taskName=com.example.StevensPin/com.example.StevensPin.MainActivity
01-21 18:29:20.126  1036  1149 D GameManagerService: sendPauseConditionally() - mPrevNotiPackage: com.sec.android.app.myfiles
01-21 18:29:20.126  1036  1149 D GameManagerService: MultiWindowEventListener.onFocusedStackChanged(), pkgName: com.example.StevensPin, clsName: com.example.StevensPin.MainActivity, fgActivityName:com.example.StevensPin/.MainActivity, userID:0
01-21 18:29:20.126  1036  2806 D GameManagerService: onLooperPrepared(), msg: { when=0 what=10000 obj=ComponentInfo{com.example.StevensPin/com.example.StevensPin.MainActivity} target=com.samsung.android.game.GameManagerService$FgCheckThread$1 }
01-21 18:29:20.126  2845  2845 D DividerPanelController: showDividerPanelView - isVisible : false, isAnimate : false, isTransient : false
01-21 18:29:20.126  2845  2845 D DividerPanelView: updateDividerPanelVisibility - isVisible : false
01-21 18:29:20.126  1036  2806 D GameManagerService: sendPauseConditionally() - mPrevNotiPackage: com.sec.android.app.myfiles
01-21 18:29:20.126  1036  2806 D GameManagerService: notifyResumePause(). of pkg: com.example.StevensPin, type: 4, isMinimized: false, isTunableApp: false
01-21 18:29:20.126  1036  2806 D GameManagerService:   notifyResumePause(). do nothing. mKillNotiCount: 1
01-21 18:29:20.126  1036  2806 D GameManagerService:NetworkLimit: callRelease
01-21 18:29:20.129  1036  2747 D PkgPredictorService: com.example.StevensPin go to foreground!
01-21 18:29:20.129  1036  2747 E PkgPredictorService-Collector: record changed bt=0  wifi=1 screen=0
01-21 18:29:20.129  1036  2747 D PkgPredictorService: previous pkgs: com.example.StevensPin,com.example.StevensPin,com.example.StevensPin running pkg: com.example.StevensPin, uid: 0 is system: false
01-21 18:29:20.129  1036  2747 D PkgPredictorService-Collector: save record...
01-21 18:29:20.129  1036  2747 D PkgPredictorService-Collector:  (hour:18 day:5 previous:[com.example.StevensPin, com.example.StevensPin, com.example.StevensPin] activityName:unknown running:com.example.StevensPin userId:0 screenOrientation:0 wifi:1 bt:0 predictTime:0 apkVersion:1.0.0 consumeTime:-1 preloaded:false>)
01-21 18:29:20.129  1036  2747 D PkgPredictorService-NapPreloadController: User using: com.example.StevensPin
01-21 18:29:20.129  1036  2747 I PkgPredictorService-NapClassifier: RF predict version:1611194400837
01-21 18:29:20.129  1036  2747 D PkgPredictorService-NapClassifier: Predict result: 28.0,9.0,4.0,3.0,-1.0,-1.0,-1.0,-1.0,-1.0, - [0_&_com.example.StevensPin, 0_&_com.whatsapp, 0_&_com.sec.android.app.myfiles, 0_&_com.android.chrome]
01-21 18:29:20.129  1036  2747 D PkgPredictorService-NapPreloadController: preloadWithUid pkg: [com.example.StevensPin] Uid: [0]
01-21 18:29:20.129  1036  1144 D CodecSolution: isMaxAspectPackageEx: com.example.StevensPin : false(0)
01-21 18:29:20.131  1036  1149 D GameManagerService: notePauseComponent(), received paused-component: com.sec.android.app.launcher
01-21 18:29:20.131  1036  2851 I Pageboost: 64 bit checked : true for 17876
01-21 18:29:20.132  1036  2771 I System.out: (HTTPLog)-Static: isSBSettingEnabled false
01-21 18:29:20.132  1036  2771 I System.out: (HTTPLog)-Static: isSBSettingEnabled false
01-21 18:29:20.132  3418  3418 E pageboostd: Received HALT command code 2
01-21 18:29:20.132   521   870 D EnterpriseController: netId is 0
01-21 18:29:20.133   521   870 E Netd    : getNetworkForDns: getNetId from enterpriseCtrl is netid 0
01-21 18:29:20.133   521   870 D DnsProxyListener: DNSDBG::dns addrinfo af 2 - 1000
01-21 18:29:20.133  1036  1149 I WindowManager: Focus moving from Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} to null displayId=0
01-21 18:29:20.133  1036  1149 I WindowManager: Losing focus: Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}
01-21 18:29:20.133   521 32765 I netd    : firewallSetUidRule(2, 10333, 1) <0.02ms>
01-21 18:29:20.133  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: MSG_WINDOW_FOCUS_CHANGED 0 1
01-21 18:29:20.133  1036  2792 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:20.133  3267  3267 D InputMethodManager: prepareNavigationBarInfo() DecorView@892d452[LauncherActivity]
01-21 18:29:20.133  3267  3267 D InputMethodManager: getNavigationBarColor() 0
01-21 18:29:20.134  3267  3267 D PageOverlayMover: isMoving : false
01-21 18:29:20.134  1036  1149 D GameManagerService: noteResumeComponent(), received resumed-component: com.example.StevensPin
01-21 18:29:20.134  1036  2806 D GameManagerService: onLooperPrepared(), msg: { when=0 what=10000 obj=ComponentInfo{com.example.StevensPin/com.example.StevensPin.MainActivity} target=com.samsung.android.game.GameManagerService$FgCheckThread$1 }
01-21 18:29:20.134  1036  2806 D GameManagerService: sendPauseConditionally() - mPrevNotiPackage: com.sec.android.app.myfiles
01-21 18:29:20.134  1036  2806 D GameManagerService: notifyResumePause(). of pkg: com.example.StevensPin, type: 4, isMinimized: false, isTunableApp: false
01-21 18:29:20.134  1036  2806 D GameManagerService:   notifyResumePause(). do nothing. mKillNotiCount: 1
01-21 18:29:20.134  1036  2806 D GameManagerService:NetworkLimit: callRelease
01-21 18:29:20.135  1036  1150 V WindowManager: Relayout Window{92739a1 u0 Splash Screen com.example.StevensPin}: viewVisibility=0 req=1080x2280
01-21 18:29:20.136   574   614 I SurfaceFlinger: id=164101 createSurf (1080x2280),1 flag=404, Splash Screen com.example.StevensPin#0
01-21 18:29:20.136  1036  1150 D WindowManager: makeSurface duration=0 name=Splash Screen com.example.StevensPin
01-21 18:29:20.137  3910  3971 D DMASA[S]: [SaProvider]get log ok : 4C7-399-5010210
01-21 18:29:20.137  1036  1150 V WindowManager: Relayout 1036: mAttrs={(0,0)(fillxfill) sim={adjust=pan} layoutInDisplayCutoutMode=always ty=APPLICATION_STARTING wanim=0x1030001
01-21 18:29:20.137  1036  1150 V WindowManager:   fl=1830118
01-21 18:29:20.137  1036  1150 V WindowManager:   pfl=10020011
01-21 18:29:20.137  1036  1150 V WindowManager:   vsysui=10 naviIconColor=0}, display=0
01-21 18:29:20.137  1036  1150 I ViewRootImpl@e312e08[StevensPin]: Relayout returned: old=(0,0,1080,2280) new=(0,0,1080,2280) req=(1080,2280)0 dur=2 res=0x7 s={true 540831879168} ch=true
01-21 18:29:20.137  3267 26603 I OpenGLRenderer: doUpdatePositionAsync is called and callVoidMethod
01-21 18:29:20.140  1036  1150 E DecorView: mWindow.mActivityCurrentConfig is null
01-21 18:29:20.140  1036  1149 D GameManagerService: identifyGamePackage. com.example.StevensPin, mCurrentUserId: 0, callerUserId: 0
01-21 18:29:20.140  1036  1149 D GamePkgDataHelper: getGamePkgData(). com.example.StevensPin
01-21 18:29:20.140  1036  1149 D GamePkgDataHelper: getSosPolicy(). com.example.StevensPin
01-21 18:29:20.140  1036 14665 D WifiLowLatency.LlHandler: MSG_TRAFFIC_POLL_ENABLE 1
01-21 18:29:20.140  1036  1149 D GameManagerService: identifyGamePackage. com.example.StevensPin, mCurrentUserId: 0, callerUserId: 0
01-21 18:29:20.140  1036  1149 D GamePkgDataHelper: getGamePkgData(). com.example.StevensPin
01-21 18:29:20.142  1036  1150 D WindowManager: finishDrawingWindow: Window{92739a1 u0 Splash Screen com.example.StevensPin} mDrawState=DRAW_PENDING
01-21 18:29:20.142  1036  2792 D GamePkgDataHelper: getSosPolicy(). com.example.StevensPin
01-21 18:29:20.142  3267  4018 D SamsungAnalytics605026: SendLog Result = 0
01-21 18:29:20.143  1036  1150 V WindowManager: performShow on Window{92739a1 u0 Splash Screen com.example.StevensPin}: mDrawState=READY_TO_SHOW readyForDisplay=false starting=true during animation: policyVis=true parentHidden=false tok.hiddenRequested=false tok.hidden=true animating=true tok animating=true Callers=com.android.server.wm.WindowState.performShowLocked:4819 com.android.server.wm.WindowStateAnimator.commitFinishDrawingLocked:415 com.android.server.wm.DisplayContent.lambda$new$8$DisplayContent:1026 com.android.server.wm.-$$Lambda$DisplayContent$qxt4izS31fb0LF2uo_OF9DMa7gc.accept:4
01-21 18:29:20.144  1036  1150 D RemoteAnimationController: createAnimationAdapter(): token=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}}
01-21 18:29:20.144  1036  1150 I WindowManager: Reparenting to leash, surface=Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e
01-21 18:29:20.144   574   614 I SurfaceFlinger: id=164102 createSurf (0x0),-1 flag=80004, Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash#0
01-21 18:29:20.144  1036  1150 D WindowManager: makeSurface duration=1 leash=Surface(name=Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash)/@0xc902938
01-21 18:29:20.145  1036  1150 D RemoteAnimationController: startAnimation
01-21 18:29:20.145  1036  1150 D RemoteAnimationController: createAnimationAdapter(): token=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}
01-21 18:29:20.145  1036  1150 I WindowManager: Reparenting to leash, surface=Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11
01-21 18:29:20.145   574   614 I SurfaceFlinger: id=164103 createSurf (0x0),-1 flag=80004, Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash#0
01-21 18:29:20.145  1036  1150 D WindowManager: makeSurface duration=0 leash=Surface(name=Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash)/@0x938ae76
01-21 18:29:20.145  1036  1150 D RemoteAnimationController: startAnimation
01-21 18:29:20.145  1036  1150 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.145  1036  1150 D RemoteAnimationController: createAnimationAdapter(): token=null
01-21 18:29:20.145  1036  1150 I WindowManager: Reparenting to leash, surface=Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17
01-21 18:29:20.145   574   614 I SurfaceFlinger: id=164104 createSurf (0x0),-1 flag=80004, Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash#0
01-21 18:29:20.146  1036  1150 D WindowManager: makeSurface duration=1 leash=Surface(name=Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash)/@0x78e6c77
01-21 18:29:20.146  1036  1150 D RemoteAnimationController: startAnimation
01-21 18:29:20.146  1036  1150 D RemoteAnimationController: goodToGo()
01-21 18:29:20.146  1036  1150 D RemoteAnimationController: createAnimations()
01-21 18:29:20.146  1036  1150 D RemoteAnimationController:     Add window=Window{240692b u0 com.android.systemui.ImageWallpaper}
01-21 18:29:20.146  1036  1150 D RemoteAnimationController:     Add token=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}
01-21 18:29:20.146  1036  1150 D RemoteAnimationController:     Add token=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}}
01-21 18:29:20.147  1036  1150 D RemoteAnimationController: RemoteAnimationController::onAnimationStart, animations=[Landroid.view.RemoteAnimationTarget;@7baa0e4
01-21 18:29:20.147  1036  1150 D RemoteAnimationController: startAnimation(): Notify animation start:
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: Starting remote animation
01-21 18:29:20.147  1036  1144 D WindowManager: setSystemUiVisibility: displayId=0, vis=0x8018, fullVis=0x0, dockVis=0x0, win=Window{92739a1 u0 Splash Screen com.example.StevensPin}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: window=Window{240692b u0 com.android.systemui.ImageWallpaper}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: Target:
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   mode=3 taskId=-1 isTranslucent=false clipRect=[0,0][0,0] contentInsets=[0,0][0,0] prefixOrderIndex=4 position=[0,0] sourceContainerBounds=[0,0][1080,2280]
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   windowConfiguration={ mBounds=Rect(0, 0 - 1080, 2280) mAppBounds=Rect(0, 107 - 1080, 2154) mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=undefined mAlwaysOnTop=undefined mRotation=ROTATION_0}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   leash=Surface(name=Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash)/@0x78e6c77
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: token=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: Target:
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   mode=0 taskId=4064 isTranslucent=false clipRect=[0,0][1080,2280] contentInsets=[0,110][0,126] prefixOrderIndex=12 position=[0,0] sourceContainerBounds=[0,0][1080,2280]
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   windowConfiguration={ mBounds=Rect(0, 0 - 1080, 2280) mAppBounds=Rect(0, 107 - 1080, 2154) mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=standard mAlwaysOnTop=undefined mRotation=ROTATION_0}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   leash=Surface(name=Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash)/@0x938ae76
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: token=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController: Target:
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   mode=1 taskId=2613 isTranslucent=false clipRect=[0,0][1080,2280] contentInsets=[0,110][0,126] prefixOrderIndex=8 position=[0,0] sourceContainerBounds=[0,0][1080,2280]
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   windowConfiguration={ mBounds=Rect(0, 0 - 1080, 2280) mAppBounds=Rect(0, 107 - 1080, 2154) mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=home mAlwaysOnTop=undefined mRotation=ROTATION_0}
01-21 18:29:20.147  1036  1150 I RemoteAnimationController:   leash=Surface(name=Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash)/@0xc902938
01-21 18:29:20.147  3267  3267 I QuickstepTransition: onCreateAnimation - APP IN
01-21 18:29:20.147  3267  3267 D LauncherTransition: animation with icon
01-21 18:29:20.147  1036  1150 I ViewRootImpl@e312e08[StevensPin]: MSG_RESIZED: frame=(0,0,1080,2280) ci=(0,110,0,126) vi=(0,110,0,126) or=1
01-21 18:29:20.148  3267  3267 D LauncherTransition: target mode : 3
01-21 18:29:20.148  1036  3259 D WindowManager: adjustSystemUiVisibilityLw: displayId=0, vis=0x8018, resetVis=0x0, clearVis=0x0
01-21 18:29:20.148  3267  3267 D LauncherTransition: target mode : 0
01-21 18:29:20.148  1036  3259 D InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8018 DD: 0x8018 OD: 0x0
01-21 18:29:20.148  3267  3267 D LauncherTransition: target mode : 1
01-21 18:29:20.148  2845  2845 D LightBarController: onNavigationVisibilityChanged : vis = 8018, nbModeChanged = false navigationBarMode = 4, navbarColorManagedByIme = false
01-21 18:29:20.148  5925  5925 I TrayStateController: onSystemUiVisibilityChange : 32792 0
01-21 18:29:20.148  2845  2845 V NavBarStoreImpl: handleEvent [EventType] GET_BOOL_TINT_CONTROLLER_ENABLED [Module] LightBarController
01-21 18:29:20.148  2845  2845 V NavBarStoreImpl: --[Band]COLOR_PACK_GET_TINT_SAMPLING_ENABLED
01-21 18:29:20.148  2845  2845 V NavBarStoreImpl: ----apply(SET_TINT_SAMPLING_ENABLED)
01-21 18:29:20.148  2845  2845 V NavBarStoreImpl: getResult(GET_BOOL_TINT_CONTROLLER_ENABLED)=false
01-21 18:29:20.148  3267  3267 I LauncherTransition: onAnimationStart - APP IN
01-21 18:29:20.148  3267  3267 I LauncherTransition: BasicAnimationType=HighEnd duration=350
01-21 18:29:20.152  1036  4093 D InputDispatcher: Focus left window (3267): 6ec1d28 in display 0 0
01-21 18:29:20.153  2845  3340 D OpenGLRenderer: makeCurrent EglSurface : 0x7e875a8000 -> 0x7e8754c980
01-21 18:29:20.153  3267 26604 I OpenGLRenderer: doUpdatePositionAsync is called and callVoidMethod
01-21 18:29:20.158  1036  2464 D BatteryService: Sending ACTION_BATTERY_CHANGED. scale:100, info:{.chargerAcOnline = false, .chargerUsbOnline = true, .chargerWirelessOnline = false, .maxChargingCurrent = 0, .maxChargingVoltage = 0, .batteryStatus = CHARGING, .batteryHealth = GOOD, .batteryPresent = true, .batteryLevel = 63, .batteryVoltage = 3993, .batteryTemperature = 263, .batteryCurrent = 0, .batteryCycleCount = 0, .batteryFullCharge = 4000000, .batteryChargeCounter = 2513330, .batteryTechnology = Li-ion}
01-21 18:29:20.159  1036  2464 D BatteryService: online:4, current avg:175, charge type:1, POGO powered:false, power sharing:false, high voltage charger:false, charger_type:0, capacity:280000, misc_event:65536, current_event:0, current_now:-483
01-21 18:29:20.159  1036  1036 I MotionRecognitionService: Plugged
01-21 18:29:20.159  1036  1036 D MotionRecognitionService:   mCableConnection= 1
01-21 18:29:20.159  1036  1036 D MotionRecognitionService: set cable connected : mGripEnabled = false
01-21 18:29:20.160  1036  1036 D UsbDeviceManager: received ACTION_BATTERY_CHANGED
01-21 18:29:20.160  1036  1143 D UsbDeviceManager: handleMessage -> MSG_UPDATE_CHARGING_STATE: mUsbCharging=true
01-21 18:29:20.160  1036  1155 D BaseRestrictionMgr: Package: com.whatsapp, userid: 0, hostingType: broadcast is Restricted by policy: 4 caller is: null
01-21 18:29:20.160  1036  1155 D BaseRestrictionMgr: Package: com.google.android.youtube, userid: 0, hostingType: broadcast is Restricted by policy: 4 caller is: null
01-21 18:29:20.160  1036  1155 D BaseRestrictionMgr: Package: com.microsoft.office.outlook, userid: 0, hostingType: broadcast is Restricted by policy: 4 caller is: null
01-21 18:29:20.160  1036  1155 D BaseRestrictionMgr: Package: com.facebook.katana, userid: 0, hostingType: broadcast is Restricted by policy: 4 caller is: null
01-21 18:29:20.160  3167  4188 I EPDG -- SIM0 [EpdgSubScription]: android.intent.action.BATTERY_CHANGED intent received.
01-21 18:29:20.160  1036  1155 D BaseRestrictionMgr: Package: com.zhiliaoapp.musically, userid: 0, hostingType: broadcast is Restricted by policy: 4 caller is: null
01-21 18:29:20.160  3142  3142 D BigDataInfoController: Intent : android.intent.action.BATTERY_CHANGED
01-21 18:29:20.160  1036  3033 D SLocation: SGeofenceManager - sgfm received : android.intent.action.BATTERY_CHANGED
01-21 18:29:20.161  3142  3142 D BigDataInfoController: Intent : android.intent.action.BATTERY_CHANGED
01-21 18:29:20.161  2845  2845 D KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED
01-21 18:29:20.161  2845  2845 D PowerUI : priorPlugType = 2 mPlugType = 2 priorBatteryStatus = 2 mBatteryStatus = 2
01-21 18:29:20.162  2845  2845 D PowerUI.Notification: showChargingNotice oldChargingType : 1 currentChargingType : 1 oldChargingTime : 10775000 mChargingTime : 10775000
01-21 18:29:20.162  2845  2845 D PowerUI.Notification: There is no change about charging status, so return!
01-21 18:29:20.162  2845  2845 D PowerUI : Battery swelling mode - priorBatterySwellingMode = 0 mBatterySwellingMode = 0 mBatteryStatus = 2
01-21 18:29:20.162  2845  2845 I PowerUI : misc_event = 65536
01-21 18:29:20.162  2845  2845 I AODBatteryManager: updateBatteryData: ACTION_BATTERY_CHANGED
01-21 18:29:20.160  1036  1155 D BaseRestrictionMgr: Package: com.zhiliaoapp.musically, userid: 0, hostingType: broadcast is Restricted by policy: 4 caller is: null
01-21 18:29:20.162  3954  4094 D SDHMS:va: writeSysfs:: path = /sys/power/execution_mode_change, value = 0
01-21 18:29:20.162  3954  4094 D SDHMS:va: writeSysfs:: path = /sys/power/boost_mode_change, value = 1
01-21 18:29:20.162  2845  2845 I AODBatteryManager: saveBatteryData : AOD BatteryData [mBatteryLevel=63, mBatteryStatus=CHARGING, mBatteryPlugType=USB, mBatteryPlugged=true, mIsPowerSupplied=false, mRemainingChargeTime=10775000, mBatteryChargingType=1, mBatteryChargerType=NORMAL, mBatteryOnline=USB]
01-21 18:29:20.162  2845  2845 D KeyguardUpdateMonitor: handleBatteryUpdate
01-21 18:29:20.168  2845  2845 D QSContainerImpl: getDisplayHeight portrait? true  displayHeight= 2280
01-21 18:29:20.172   574   574 I SurfaceFlinger: Display 0 HWC layers:
01-21 18:29:20.172   574   574 I SurfaceFlinger:     type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name
01-21 18:29:20.172   574   574 I SurfaceFlinger: ------------+--------------+------+-----------+----------------------------+---------------------+------
01-21 18:29:20.172   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908c080 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.android.systemui.ImageWallpaper$_2845#0
01-21 18:29:20.172   574   574 I SurfaceFlinger:      CLIENT | 0x7b38ce3dc0 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.sec.android.app.launcher/com.sec[...]ties.LauncherActivity$_3267#0 (Blur)
01-21 18:29:20.172   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908d0c0 | 0002 | RGBA_8888 |   0.0  436.0 1080.0 1828.0 |  505  884  878 1365 | Splash Screen com.example.StevensPin#0
01-21 18:29:20.172   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908cd00 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  110.0 |    0    0 1080  110 | StatusBar$_2845#0
01-21 18:29:20.172   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908e100 | 0000 | RGBA_8888 |   0.0    0.0   67.0  431.0 | 1013  307 1080  738 | com.samsung.android.app.cocktailbars[...]arservice.CocktailBarService$_5925#0
01-21 18:29:20.172   574   574 I SurfaceFlinger:      DEVICE | 0x7b570a1c80 | 0000 | RGB
01-21 18:29:20.172   574   574 I SurfaceFlinger: A_8888 |   0.0    0.0 1080.0  126.0 |    0 2154 1080 2280 | NavigationBar0$_2845#0
01-21 18:29:20.172   574   574 I SurfaceFlinger:
01-21 18:29:20.176  2845  3340 D OpenGLRenderer: makeCurrent EglSurface : 0x7e8754c980 -> 0x7e875a8000
01-21 18:29:20.178  2845  3340 D OpenGLRenderer: makeCurrent EglSurface : 0x7e875a8000 -> 0x7e8754c980
01-21 18:29:20.180 17876 17876 W mple.StevensPi: Accessing hidden method Landroid/view/WindowInsets;->getInsets(I)Landroid/graphics/Insets; (blacklist, linking, denied)
01-21 18:29:20.184  1036  3259 D InputMethodManagerService: --- calledFromForegroundUserOrSystemProcess ? calling uid = 10333 system uid = 1000 calling userId = 0, foreground user id = 0, calling pid = 17876com.android.server.inputmethod.InputMethodManagerService.getCurrentInputMethodSubtype(InputMethodManagerService.java:5834)
01-21 18:29:20.184  1036  3259 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:20.180 17876 17876 I chatty  : uid=10333(com.example.StevensPin) identical 1 line
01-21 18:29:20.180 17876 17876 W mple.StevensPi: Accessing hidden method Landroid/view/WindowInsets;->getInsets(I)Landroid/graphics/Insets; (blacklist, linking, denied)
01-21 18:29:20.185  2845  3340 D OpenGLRenderer: makeCurrent EglSurface : 0x7e8754c980 -> 0x7e875a8000
01-21 18:29:20.187  2845  3340 D OpenGLRenderer: makeCurrent EglSurface : 0x7e875a8000 -> 0x7e8754c980
01-21 18:29:20.191 17876 17876 D PhoneWindow: forceLight changed to true [] from com.android.internal.policy.PhoneWindow.updateForceLightNavigationBar:4274 com.android.internal.policy.DecorView.updateColorViews:1547 com.android.internal.policy.PhoneWindow.dispatchWindowAttributesChanged:3252 android.view.Window.setFlags:1153 com.android.internal.policy.PhoneWindow.generateLayout:2474
01-21 18:29:20.191 17876 17876 I MultiWindowDecorSupport: [INFO] isPopOver = false
01-21 18:29:20.191 17876 17876 I MultiWindowDecorSupport: updateCaptionType >> DecorView@f1745a8[], isFloating: false, isApplication: true, hasWindowDecorCaption: false, hasWindowControllerCallback: true
01-21 18:29:20.191 17876 17876 D MultiWindowDecorSupport: setCaptionType = 0, DecorView = DecorView@f1745a8[]
01-21 18:29:20.205  1036  3259 D InputTransport: Input channel constructed: '75e1c81', fd=649
01-21 18:29:20.205  1036  3259 D InputTransport: Input channel constructed: '75e1c81', fd=651
01-21 18:29:20.206   574  2223 I SurfaceFlinger: id=164105 createSurf (0x0),-1 flag=80004, 75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity#0
01-21 18:29:20.207  1036  3259 D InputTransport: Input channel destroyed: '75e1c81', fd=651
01-21 18:29:20.209 17876 17876 I ViewRootImpl@46f1454[MainActivity]: setView = com.android.internal.policy.DecorView@f1745a8 TM=true MM=false
01-21 18:29:20.217 17876 17876 I SurfaceView: onWindowVisibilityChanged(0) true io.flutter.embedding.android.j{ccdf4f2 V.E...... ......I. 0,0-0,0} of ViewRootImpl@46f1454[MainActivity]
01-21 18:29:20.219  1036  3259 V WindowManager: Relayout Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}: viewVisibility=0 req=1080x2280
01-21 18:29:20.186  1036  3259 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:20.222  1036  3259 W WindowManager: preserveSurfaceLocked: failed, no surface, w=Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.223   574  2223 I SurfaceFlinger: id=164106 createSurf (1080x2280),1 flag=4, com.example.StevensPin/com.example.StevensPin.MainActivity$_17876#0
01-21 18:29:20.224  1036  3259 D WindowManager: makeSurface duration=1 name=com.example.StevensPin/com.example.StevensPin.MainActivity$_17876
01-21 18:29:20.226  1036  3259 V WindowManager: Changing focus from null to Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity} displayId=0 Callers=com.android.server.wm.RootWindowContainer.updateFocusedWindowLocked:204 com.android.server.wm.WindowManagerService.updateFocusedWindowLocked:6443 com.android.server.wm.WindowManagerService.relayoutWindow:2608 com.android.server.wm.Session.relayout:202 android.view.IWindowSession$Stub.onTransact:716 com.android.server.wm.Session.onTransact:142
01-21 18:29:20.229  1036  3259 D StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
01-21 18:29:20.230  1036  3259 V WindowManager: Relayout 17876: mAttrs={(0,0)(fillxfill) sim={adjust=resize forwardNavigation} ty=BASE_APPLICATION fmt=TRANSLUCENT wanim=0x1030001
01-21 18:29:20.230  1036  3259 V WindowManager:   fl=81810100
01-21 18:29:20.230  1036  3259 V WindowManager:   pfl=10020000
01-21 18:29:20.230  1036  3259 V WindowManager:   vsysui=510 naviIconColor=0}, display=0
01-21 18:29:20.230  1036  1144 D WindowManager: setSystemUiVisibility: displayId=0, vis=0x8518, fullVis=0x0, dockVis=0x0, win=Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.232  1036  1149 I WindowManager: Focus moving from null to Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity} displayId=0
01-21 18:29:20.232  1036  1149 I WindowManager: Gaining focus: Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.232  2845  2845 D LightBarController: onNavigationVisibilityChanged : vis = 8518, nbModeChanged = false navigationBarMode = 4, navbarColorManagedByIme = false
01-21 18:29:20.233  1036  4093 D WindowManager: adjustSystemUiVisibilityLw: displayId=0, vis=0x8518, resetVis=0x0, clearVis=0x0
01-21 18:29:20.233  1036  4093 D InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8518 DD: 0x8518 OD: 0x0
01-21 18:29:20.233  5925  5925 I TrayStateController: onSystemUiVisibilityChange : 34072 0
01-21 18:29:20.236 17876 17876 I ViewRootImpl@46f1454[MainActivity]: Relayout returned: old=(0,0,1080,2280) new=(0,0,1080,2280) req=(1080,2280)0 dur=16 res=0x7 s={true 541518712832} ch=true
01-21 18:29:20.239 17876 28778 D OpenGLRenderer: createReliableSurface : 0x7e8da1d840(0x7e1507d000)
01-21 18:29:20.244   574   615 W ServiceManager: Permission failure: android.permission.ACCESS_SURFACE_FLINGER from uid=10333 pid=17876
01-21 18:29:20.244   574   615 D PermissionCache: checking android.permission.ACCESS_SURFACE_FLINGER for uid=10333 => denied (587 us)
01-21 18:29:20.244   574   615 I SurfaceFlinger: id=164107 createSurf (0x0),2 flag=4, Bounds for - com.example.StevensPin/com.example.StevensPin.MainActivity@0#0
01-21 18:29:20.246   574  2223 I SurfaceFlinger: id=164108 createSurf (1080x2154),4 flag=404, SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.246   574  2223 I SurfaceFlinger: id=164109 createSurf (0x0),-1 flag=20404, Background for -SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.247 17876 17876 I SurfaceView: surfaceCreated 1 #8 io.flutter.embedding.android.j{ccdf4f2 V.E...... ......ID 0,0-1080,2154}
01-21 18:29:20.247 17876 28778 D OpenGLRenderer: makeCurrent EglSurface : 0x0 -> 0x0
01-21 18:29:20.250 17876 28786 I mali_winsys: new_window_surface() [1080x2154] return: 0x3000
01-21 18:29:20.260  1036  2898 D MdnieScenarioControlService:  packageName : com.example.StevensPin    className : com.example.StevensPin.MainActivity
01-21 18:29:20.261  1036  2898 V MdnieScenarioControlService: setUIMode from UI function(3)
01-21 18:29:20.273 17876 28778 I mali_winsys: new_window_surface() [1080x2280] return: 0x3000
01-21 18:29:20.273 17876 28778 D OpenGLRenderer: eglCreateWindowSurface : 0x7e8db35080
01-21 18:29:20.360 17876 28785 I flutter : fun() - initState
01-21 18:29:20.360 17876 28785 I flutter : SignedIn: false
01-21 18:29:20.362 17876 17876 I SurfaceView: surfaceChanged (1080,2154) 1 #8 io.flutter.embedding.android.j{ccdf4f2 V.E...... ......ID 0,0-1080,2154}
01-21 18:29:20.365 17876 28778 D OpenGLRenderer: makeCurrent EglSurface : 0x0 -> 0x7e8db35080
01-21 18:29:20.366 17876 28811 I OpenGLRenderer: doUpdatePositionAsync is called and callVoidMethod
01-21 18:29:20.369   405   405 I hwservicemanager: getTransport: Cannot find entry android.hardware.graphics.mapper@3.0::IMapper/default in either framework or device manifest.
01-21 18:29:20.369 17876 28778 W Gralloc3: mapper 3.x is not supported
01-21 18:29:20.373 17876 28778 I gralloc : Arm Module v1.0
01-21 18:29:20.392  1036  3259 D WindowManager: finishDrawingWindow: Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity} mDrawState=DRAW_PENDING
01-21 18:29:20.395  1036  1150 D PkgPredictorService: pkg:com.example.StevensPin activity:com.example.StevensPin.MainActivity thisTime:304
01-21 18:29:20.395  1036  1150 D PkgPredictorService-Collector: update activity launch time: MainActivity : 304
01-21 18:29:20.396  1036  3259 V WindowManager: Relayout Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}: viewVisibility=0 req=1080x2280
01-21 18:29:20.397  1036  1150 I ViewRootImpl@e312e08[StevensPin]: dispatchDetachedFromWindow
01-21 18:29:20.397  1036  3259 V WindowManager: Relayout 17876: mAttrs={(0,0)(fillxfill) sim={adjust=resize forwardNavigation} ty=BASE_APPLICATION fmt=TRANSLUCENT wanim=0x1030001
01-21 18:29:20.397  1036  3259 V WindowManager:   fl=81810100
01-21 18:29:20.397  1036  3259 V WindowManager:   pfl=10020000
01-21 18:29:20.397  1036  3259 V WindowManager:   vsysui=510 naviIconColor=0}, display=0
01-21 18:29:20.397  1036  1150 D InputTransport: Input channel destroyed: '92739a1', fd=593
01-21 18:29:20.398 17876 17876 I ViewRootImpl@46f1454[MainActivity]: Relayout returned: old=(0,0,1080,2280) new=(0,0,1080,2280) req=(1080,2280)0 dur=5 res=0x1 s={true 541518712832} ch=false
01-21 18:29:20.398  1036  1150 I WindowManager: Reparenting to leash, surface=Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f
01-21 18:29:20.398   574  2223 I SurfaceFlinger: id=164110 createSurf (0x0),-1 flag=80004, Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f - animation-leash#0
01-21 18:29:20.398  1036  1150 D WindowManager: makeSurface duration=1 leash=Surface(name=Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f - animation-leash)/@0xcc3a8ac
01-21 18:29:20.399 17876 17876 I ViewRootImpl@46f1454[MainActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
01-21 18:29:20.399 17876 17876 D InputMethodManager: prepareNavigationBarInfo() DecorView@f1745a8[MainActivity]
01-21 18:29:20.399 17876 17876 D InputMethodManager: getNavigationBarColor() -855310
01-21 18:29:20.400 17876 17876 D InputMethodManager: prepareNavigationBarInfo() DecorView@f1745a8[MainActivity]
01-21 18:29:20.400 17876 17876 D InputMethodManager: getNavigationBarColor() -855310
01-21 18:29:20.400 17876 17876 V InputMethodManager: Starting input: tba=com.example.StevensPin ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
01-21 18:29:20.400 17876 17876 D InputMethodManager: startInputInner - Id : 0
01-21 18:29:20.400 17876 17876 I InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
01-21 18:29:20.400  1036  3259 D InputMethodManagerService: mSecureKeypadEnabled = false
01-21 18:29:20.401  1036  3259 V InputMethodManagerService: startInputOrWindowGainedFocusInternalLocked: reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@dc70d49 inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@dbb6975 startInputFlags=FIRST_WINDOW_FOCUS_GAIN|INITIAL_CONNECTION softInputMode=STATE_UNSPECIFIED|ADJUST_RESIZE|IS_FORWARD_NAVIGATION windowFlags=#81810100 unverifiedTargetSdkVersion=28
01-21 18:29:20.401  1036  1150 D InputTransport: Input channel destroyed: '92739a1', fd=595
01-21 18:29:20.401  1036  1154 I ActivityTaskManager: Displayed com.example.StevensPin/.MainActivity: +304ms
01-21 18:29:20.402  1036  1154 I Pageboost: Launch time gathered : pid 17876 com.example.StevensPin 304
01-21 18:29:20.402  3418  3418 E pageboostd: Received HALT command code 2
01-21 18:29:20.403  1036  4093 D InputDispatcher: Focus entered window (17876): 75e1c81 in display 0 0
01-21 18:29:20.403  1036  3259 V InputMethodManagerService: IME PreRendering MASTER flag: false, LowRam: false
01-21 18:29:20.403  1036  3259 V InputMethodManagerService: Unspecified window will hide input
01-21 18:29:20.403  1036  3259 V InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
01-21 18:29:20.404  1036  3259 D InputMethodManagerService: DESKTOP MODE! : 2
01-21 18:29:20.404  1036  3259 D InputMethodManagerService: NOT IN KNOX DESKTOP MODE!
01-21 18:29:20.404  1036  3259 V InputMethodManagerService: getDisplayIdOfInputMethodWindowToBeAdded : 0
01-21 18:29:20.404  1036  3259 V InputMethodManagerService: unbindCurrentInputLocked: client=android.os.BinderProxy@aef641c
01-21 18:29:20.406  1036  3259 D InputMethodManagerService: IME window vis: 0 active: 0 inv: 0 displayId: 0
01-21 18:29:20.406  1036  3259 D SamsungIMMSHWKeyboard: isConnectedDexOnPC false
01-21 18:29:20.407  3267  3267 D InputTransport: Input channel destroyed: 'ClientS', fd=81
01-21 18:29:20.408   574   574 I SurfaceFlinger: Display 0 HWC layers:
01-21 18:29:20.408   574   574 I SurfaceFlinger:     type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name
01-21 18:29:20.408   574   574 I SurfaceFlinger: ------------+--------------+------+-----------+----------------------------+---------------------+------
01-21 18:29:20.408   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908c080 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.android.systemui.ImageWallpaper$_2845#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:      CLIENT | 0x7b38ce3a00 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.sec.android.app.launcher/com.sec[...]ties.LauncherActivity$_3267#0 (Blur)
01-21 18:29:20.408   574   574 I SurfaceFlinger:      CLIENT |              | 0002 |  Unknown  |   0.0    0.0    0.0    0.0 |    5    8 1079 2147 | Background for -SurfaceView - com.ex[...].StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:      CLIENT | 0x7b38ce4900 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    6    8 1078 2271 | com.example.StevensPin/com.example.StevensPin.MainActivity$_17876#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908d0c0 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    6    8 1078 2271 | Splash Screen com.example.St
01-21 18:29:20.408   574   574 I SurfaceFlinger: evensPin#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:      DEVICE | 0x7b38ce3640 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  110.0 |    0    0 1080  110 | StatusBar$_2845#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908e100 | 0000 | RGBA_8888 |   0.0    0.0   67.0  431.0 | 1013  307 1080  738 | com.samsung.android.app.cocktailbars[...]arservice.CocktailBarService$_5925#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:      DEVICE | 0x7b570a27c0 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  126.0 |    0 2154 1080 2280 | NavigationBar0$_2845#0
01-21 18:29:20.408   574   574 I SurfaceFlinger:
01-21 18:29:20.408  1036  3259 D InputMethodManagerService: isImeSwitcherDisabledPackage : false
01-21 18:29:20.408  1036  3259 V InputMethodManagerService: switching to client: client=android.os.BinderProxy@dc70d49 keyguard=false
01-21 18:29:20.408  1036  3259 V InputMethodManagerService: Creating new session for client ClientState{c18a398 uid=10333 pid=17876 displayId=0}
01-21 18:29:20.409  1036  3259 D InputTransport: Input channel constructed: 'ClientS', fd=593
01-21 18:29:20.409  1036  3259 D InputTransport: Input channel constructed: 'ClientS', fd=595
01-21 18:29:20.409  1036  3259 D InputTransport: Input channel destroyed: 'ClientS', fd=595
01-21 18:29:20.410 17876 17876 I ViewRootImpl@46f1454[MainActivity]: MSG_RESIZED: frame=(0,0,1080,2280) ci=(0,110,0,126) vi=(0,110,0,126) or=1
01-21 18:29:20.411  1036  3259 V InputMethodManagerService: Disabling: SessionState{uid 10154 pid 3267 method 6824d6e session a26ac0f channel ClientState{75ce35 uid=10154 pid=3267 displayId=0} (server)}
01-21 18:29:20.411  1036  3259 V InputMethodManagerService: Enabling: SessionState{uid 10333 pid 17876 method 6824d6e session 2909fd6 channel ClientState{c18a398 uid=10333 pid=17876 displayId=0} (server)}
01-21 18:29:20.411  1036  3259 D InputMethodManagerService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
01-21 18:29:20.411  1036  3259 D InputTransport: Input channel constructed: 'ClientS', fd=595
01-21 18:29:20.412  1036  3259 D InputTransport: Input channel destroyed: 'ClientS', fd=595
01-21 18:29:20.412 17876 17876 D InputMethodManager: prepareNavigationBarInfo() DecorView@f1745a8[MainActivity]
01-21 18:29:20.412 26605 26605 I HONEYBOARD: HoneyBoardService onFinishInput
01-21 18:29:20.412 17876 17876 D InputMethodManager: getNavigationBarColor() -855310
01-21 18:29:20.412 17876 17876 V InputMethodManager: Starting input: tba=com.example.StevensPin ic=null mNaviBarColor -855310 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
01-21 18:29:20.412 17876 17876 D InputMethodManager: startInputInner - Id : 0
01-21 18:29:20.413 26605 26605 I HONEYBOARD: a IC have been unbinded,  InputConnectionWrapper{idHash=#e500c8d mMissingMethods=}
01-21 18:29:20.413 26605 26605 I HONEYBOARD: HoneyBoardService [PF_CL][onFinishInput]  238192 ns
01-21 18:29:20.413 26605 26605 D InputMethodService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
01-21 18:29:20.413 26605 26605 I HONEYBOARD: HoneyBoardService [IMI] onStartInput - caller pid : 17876 , caller uid : 10333
01-21 18:29:20.413 26605 26605 I HONEYBOARD: i updateConfigs
01-21 18:29:20.413 26605 26605 I HONEYBOARD: i isEnabledNightMode : true
01-21 18:29:20.413 26605 26605 I HONEYBOARD: a IC have been binded, InputConnectionWrapper{idHash=#df67e42 mMissingMethods=}
01-21 18:29:20.413 26605 26605 I HONEYBOARD: h [EditorInputType]setPrivateImeOptionsToTable privateImeOptions ( null )
01-21 18:29:20.413 26605 26605 I HONEYBOARD: b incognitoMode : false
01-21 18:29:20.413 26605 26605 I HONEYBOARD: a needOff = true , isJpnConvertState : false, isForceOff = true
01-21 18:29:20.413  1036  3084 D SdpManagerService: Not an enterprise user : 0
01-21 18:29:20.413  1036  3084 I chatty  : uid=1000(system) Binder:1036_D identical 1 line
01-21 18:29:20.413  1036  3084 D SdpManagerService: Not an enterprise user : 0
01-21 18:29:20.414 26605 26605 I HONEYBOARD: h getDefaultInputRange : UNKNOWN
01-21 18:29:20.414 26605 26605 I HONEYBOARD: a currentState : 0
01-21 18:29:20.414 26605 26605 I HONEYBOARD: a [UpdatePolicy] [post] a: 0 cl: 65538 kit: [0/0] vt: 0 ir: 1
01-21 18:29:20.415 26605 26605 I HONEYBOARD: HoneyBoardService [PF_OP][onStartInput]  2056885 ns
01-21 18:29:20.421  1036  2708 D TelephonyManager: getAllCellInfo : Caller (PID / UID / TID): 1036 / 1000 / 2708
01-21 18:29:20.435 17876 17876 E flutter : [ERROR:flutter/shell/platform/android/platform_view_android_jni_impl.cc(43)] java.lang.AssertionError: AssertionError (GSON 2.8.6): java.lang.NoSuchFieldException: DEFAULT
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:54)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:4)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:9)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:0)
01-21 18:29:20.435 17876 17876 E flutter :      at com.microsoft.identity.client.y.a(Unknown Source:71)
01-21 18:29:20.435 17876 17876 E flutter :      at com.microsoft.identity.client.y.a(Unknown Source:6)
01-21 18:29:20.435 17876 17876 E flutter :      at com.microsoft.identity.client.y.a(Unknown Source:5)
01-21 18:29:20.435 17876 17876 E flutter :      at com.microsoft.identity.client.w.a(Unknown Source:15)
01-21 18:29:20.435 17876 17876 E flutter :      at c.a.a.b.a(Unknown Source:16)
01-21 18:29:20.435 17876 17876 E flutter :      at c.a.a.a.a(Unknown Source:28)
01-21 18:29:20.435 17876 17876 E flutter :      at c.a.a.a.a(Unknown Source:196)
01-21 18:29:20.435 17876 17876 E flutter :      at d.a.c.a.i$a.a(Unknown Source:17)
01-21 18:29:20.435 17876 17876 E flutter :      at io.flutter.embedding.engine.e.b.a(Unknown Source:57)
01-21 18:29:20.435 17876 17876 E flutter :      at io.flutter.embedding.engine.FlutterJNI.handlePlatformMessage(Unknown Source:4)
01-21 18:29:20.435 17876 17876 E flutter :      at android.os.MessageQueue.nativePollOnce(Native Method)
01-21 18:29:20.435 17876 17876 E flutter :      at android.os.MessageQueue.next(MessageQueue.java:336)
01-21 18:29:20.435 17876 17876 E flutter :      at android.os.Looper.loop(Looper.java:197)
01-21 18:29:20.435 17876 17876 E flutter :      at android.app.ActivityThread.main(ActivityThread.java:8167)
01-21 18:29:20.435 17876 17876 E flutter :      at java.lang.reflect.Method.invoke(Native Method)
01-21 18:29:20.435 17876 17876 E flutter :      at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:496)
01-21 18:29:20.435 17876 17876 E flutter :      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1100)
01-21 18:29:20.435 17876 17876 E flutter : Caused by: java.lang.AssertionError: java.lang.NoSuchFieldException: DEFAULT
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.z.n.n$k0.<init>(Unknown Source:87)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.z.n.n$w.a(Unknown Source:29)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:74)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.z.n.i.a(Unknown Source:42)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.z.n.i.a(Unknown Source:123)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.z.n.i.a(Unknown Source:22)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:74)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.f.a(Unknown Source:16)
01-21 18:29:20.435 17876 17876 E flutter :      ... 20 more
01-21 18:29:20.435 17876 17876 E flutter : Caused by: java.lang.NoSuchFieldException: DEFAULT
01-21 18:29:20.435 17876 17876 E flutter :      at java.lang.Class.getField(Class.java:1604)
01-21 18:29:20.435 17876 17876 E flutter :      at c.b.b.z.n.n$k0.<init>(Unknown Source:34)
01-21 18:29:20.435 17876 17876 E flutter :      ... 27 more
01-21 18:29:20.435 17876 17876 E flutter :
01-21 18:29:20.435 17876 17876 F flutter : [FATAL:flutter/shell/platform/android/platform_view_android_jni_impl.cc(942)] Check failed: CheckException(env).
01-21 18:29:20.436 17876 17876 F libc    : Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 17876 (mple.StevensPin), pid 17876 (mple.StevensPin)
01-21 18:29:20.453  3267  3267 D FastBitmapDrawable: animatePress : false  immediate : true invalidate : true
01-21 18:29:20.453  3267  3267 I LauncherTransition: onAnimationEnd - APP IN, Execution time for each frame : Start-(4)-0-(16)-0-(17)-0-(18)-0-(17)-2-(14)-0-(17)-1-(16)-2-(15)-1-(15)-0-(17)-0-(17)-1-(16)-0-(15)-0-(16)-0-(18)-0-(16)-0-(17)-0-(16)-0-End
01-21 18:29:20.453  1036  3259 D RemoteAnimationController: app-onAnimationFinished(): mOuter=com.android.server.wm.RemoteAnimationController@824522d
01-21 18:29:20.453  1036  1150 I WindowManager: Reparenting to original parent: Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11, destroyLeash=true, surface=Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f
01-21 18:29:20.453  1036  3259 D RemoteAnimationController: onAnimationFinished(): mPendingAnimations=3
01-21 18:29:20.453  1036  1150 E WindowManager: win=Window{92739a1 u0 Splash Screen com.example.StevensPin EXITING} destroySurfaces: appStopped=false win.mWindowRemovalAllowed=true win.mRemoveOnExit=true win.mViewVisibility=0 caller=com.android.server.wm.AppWindowToken.destroySurfaces:1248 com.android.server.wm.AppWindowToken.destroySurfaces:1229 com.android.server.wm.WindowState.onExitAnimationDone:5189 com.android.server.wm.WindowStateAnimator.onAnimationFinished:320 com.android.server.wm.WindowState.onAnimationFinished:5630 com.android.server.wm.-$$Lambda$yVRF8YoeNdTa8GR1wDStVsHu8xM.run:2 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0$SurfaceAnimator:100
01-21 18:29:20.453  1036  1150 I WindowManager: Destroying surface Surface(name=Splash Screen com.example.StevensPin)/@0x44ee362 called by com.android.server.wm.WindowStateAnimator.destroySurface:1834 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:733 com.android.server.wm.WindowState.destroySurfaceUnchecked:3649 com.android.server.wm.WindowState.destroySurface:3623 com.android.server.wm.AppWindowToken.destroySurfaces:1248 com.android.server.wm.AppWindowToken.destroySurfaces:1229 com.android.server.wm.WindowState.onExitAnimationDone:5189 com.android.server.wm.WindowStateAnimator.onAnimationFinished:320
01-21 18:29:20.453   574  2223 I Layer   : id=164101 removeFromCurrentState Splash Screen com.example.StevensPin#0 (58)
01-21 18:29:20.455   574  2223 I Layer   : id=164100 removeFromCurrentState 92739a1 Splash Screen com.example.StevensPin#0 (58)
01-21 18:29:20.455   574  2223 I Layer   : id=164110 removeFromCurrentState Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f - animation-leash#0 (58)
01-21 18:29:20.455  1036  2771 W WifiTransportLayerUtils: getApplicationCategory - IOException com.example.StevensPin
01-21 18:29:20.456   574  2223 I SurfaceFlinger: id=164100 Removed 92739a1 Splash Screen com.example.StevensPin#0 (58)
01-21 18:29:20.456   574  2223 I SurfaceFlinger: id=164110 Removed Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f - animation-leash#0 (58)
01-21 18:29:20.456   574  2223 I SurfaceFlinger: id=164101 Removed Splash Screen com.example.StevensPin#0 (58)
01-21 18:29:20.456  1036  3259 D RemoteAnimationController: app-release(): mOuter=com.android.server.wm.RemoteAnimationController@824522d
01-21 18:29:20.456  1036  3259 D RemoteAnimationController: onAnimationFinished(): Notify animation finished:
01-21 18:29:20.456  1036  3259 I WindowManager: Reparenting to original parent: Surface(name=WallpaperWindowToken{a9783ec token=android.os.Binder@de4569f})/@0x7687d7c, destroyLeash=true, surface=Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17
01-21 18:29:20.456  1036  3259 D RemoteAnimationController:     Window{240692b u0 com.android.systemui.ImageWallpaper}
01-21 18:29:20.456  1036  3259 I WindowManager: Reparenting to original parent: Surface(name=Task=4064)/@0x8a0e429, destroyLeash=true, surface=Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11
01-21 18:29:20.457  1036  3259 D CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 1820000  uid : 1000  pid : 1036  pkgName : AMS_RESUME_TAIL@CPU_MIN@28
01-21 18:29:20.457  1036  3259 D ActivityManagerPerformance: AMP_acquire() TAIL
01-21 18:29:20.458  1036  3259 D CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 2530000  uid : 1000  pid : 1036  tag : AMS_APP_SWITCH@CPU_MIN@61
01-21 18:29:20.458  1036  3259 D ActivityManagerPerformance: AMP_release() APP_SWITCH
01-21 18:29:20.458  1036  3259 D RemoteAnimationController:     AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}
01-21 18:29:20.458  1036  3259 I WindowManager: Reparenting to original parent: Surface(name=Task=2613)/@0xcd9e7c1, destroyLeash=true, surface=Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e
01-21 18:29:20.458  1036  3259 V WindowManager: Setting visibility of Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: false, caller=com.android.server.wm.WindowContainer.sendAppVisibilityToClients:644 com.android.server.wm.AppWindowToken.setClientHidden:631 com.android.server.wm.AppWindowToken.onAnimationFinished:3903 com.android.server.wm.-$$Lambda$yVRF8YoeNdTa8GR1wDStVsHu8xM.run:2 com.android.server.wm.SurfaceAnimator.lambda$getFinishedCallback$0$SurfaceAnimator:100
01-21 18:29:20.458  1036  3259 D RemoteAnimationController:     AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}}
01-21 18:29:20.458  1036  3259 I RemoteAnimationController: Finishing remote animation
01-21 18:29:20.459   574   574 I SurfaceFlinger: Display 0 HWC layers:
01-21 18:29:20.459   574   574 I SurfaceFlinger:     type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name
01-21 18:29:20.459   574   574 I SurfaceFlinger: ------------+--------------+------+-----------+----------------------------+---------------------+------
01-21 18:29:20.459   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908c080 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.android.systemui.ImageWallpaper$_2845#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      CLIENT | 0x7b38ce3a00 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.sec.android.app.launcher/com.sec[...]ties.LauncherActivity$_3267#0 (Blur)
01-21 18:29:20.459   574   574 I SurfaceFlinger:      CLIENT |              | 0002 |  Unknown  |   0.0    0.0    0.0    0.0 |    0    0 1080 2155 | Background for -SurfaceView - com.ex[...].StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      CLIENT | 0x7b38ce3140 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2154.0 |    0    0 1080 2154 | SurfaceView - com.example.StevensPin[...].StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908eb00 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.example.Steven
01-21 18:29:20.459   574   574 I SurfaceFlinger: sPin/com.example.StevensPin.MainActivity$_17876#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908d0c0 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | Splash Screen com.example.StevensPin#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      DEVICE | 0x7b38ce3640 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  110.0 |    0    0 1080  110 | StatusBar$_2845#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908e100 | 0000 | RGBA_8888 |   0.0    0.0   67.0  431.0 | 1013  307 1080  738 | com.samsung.android.app.cocktailbars[...]arservice.CocktailBarService$_5925#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:      DEVICE | 0x7b570a27c0 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  126.0 |    0 2154 1080 2280 | NavigationBar0$_2845#0
01-21 18:29:20.459   574   574 I SurfaceFlinger:
01-21 18:29:20.459   574   615 I Layer   : id=164104 removeFromCurrentState Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash#0 (58)
01-21 18:29:20.459   574   615 I Layer   : id=164103 removeFromCurrentState Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash#0 (58)
01-21 18:29:20.459   574   615 I Layer   : id=164102 removeFromCurrentState Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash#0 (58)
01-21 18:29:20.460  3267 26603 I OpenGLRenderer: doUpdatePositionAsync is called and callVoidMethod
01-21 18:29:20.463  2845  3320 D WallpaperService: dispatchAppVisibility onVisibilityChanged(): false
01-21 18:29:20.464  2845  2845 I ImageWallpaper:  onVisibilityChanged false
01-21 18:29:20.464  2845  2845 D WallpaperService: reportVisibility onVisibilityChanged visible: false
01-21 18:29:20.464 28828 28828 E crash_dump64: unknown process state: t
01-21 18:29:20.469   574   574 I Layer   : id=164110[1] Destroyed Surface(name=92739a1 Splash Screen com.example.StevensPin)/@0xdcb165f - animation-leash#0
01-21 18:29:20.469   574   574 I Layer   : id=164100[1] Destroyed 92739a1 Splash Screen com.example.StevensPin#0
01-21 18:29:20.469   574   574 E Layer   : [Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash#0] No local sync point found, barrierLayer : [com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0]
01-21 18:29:20.469   574   574 E Layer   : [Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash#0] No local sync point found, barrierLayer : [com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0]
01-21 18:29:20.469   574   574 E Layer   : [Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash#0] No local sync point found, barrierLayer : [com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0]
01-21 18:29:20.471  3267  4273 D OpenGLRenderer: makeCurrent EglSurface : 0x7e8752fe00 -> 0x0
01-21 18:29:20.471  3267  4273 D OpenGLRenderer: destroyEglSurface : 0x7e8752fe00
01-21 18:29:20.471   574   574 I Layer   : id=164101[1] Destroyed Splash Screen com.example.StevensPin#0
01-21 18:29:20.471  3267  4273 I mali_egl: eglDestroySurface() in
01-21 18:29:20.472  3267  4273 I mali_winsys: delete_surface() [1080x2280] return
01-21 18:29:20.472  3267  4273 I mali_egl: eglDestroySurface() out
01-21 18:29:20.472   574  2223 E BufferQueueProducer: [com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0] disconnect: not connected (req=1)
01-21 18:29:20.472  3267  4273 E OpenGLRenderer: ReliableSurface: perform returned an error
01-21 18:29:20.472  3267  4273 W libEGL  : EGLNativeWindowType 0x7dfd5d4150 disconnect failed
01-21 18:29:20.472  3267  4273 D OpenGLRenderer: ~ReliableSurface : 0x7dfd5d4140
01-21 18:29:20.473  1036  3259 V WindowManager: Relayout Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: viewVisibility=8 req=1080x2280
01-21 18:29:20.474   574   574 I SurfaceFlinger: Display 0 HWC layers:
01-21 18:29:20.474   574   574 I SurfaceFlinger:     type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name
01-21 18:29:20.474   574   574 I SurfaceFlinger: ------------+--------------+------+-----------+----------------------------+---------------------+------
01-21 18:29:20.474   574   574 I SurfaceFlinger:      DEVICE | 0x7b38ce3140 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2154.0 |    0    0 1080 2154 | SurfaceView - com.example.StevensPin[...].StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.474   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908eb00 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.example.StevensPin/com.example.StevensPin.MainActivity$_17876#0
01-21 18:29:20.474   574   574 I SurfaceFlinger:      DEVICE | 0x7b38ce3640 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  110.0 |    0    0 1080  110 | StatusBar$_2845#0
01-21 18:29:20.474   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908e100 | 0000 | RGBA_8888 |   0.0    0.0   67.0  431.0 | 1013  307 1080  738 | com.samsung.android.app.cocktailbars[...]arservice.CocktailBarService$_5925#0
01-21 18:29:20.474   574   574 I SurfaceFlinger:      DEVICE | 0x7b570a27c0 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  126.0 |    0 2154 1080 2280 | NavigationBar0$_2845#0
01-21 18:29:20.474   574   574 I SurfaceFlinger:
01-21 18:29:20.475  1036  3259 V WindowManager: Relayout 3267: mAttrs={(0,0)(fillxfill) sim={adjust=nothing} layoutInDisplayCutoutMode=always ty=BASE_APPLICATION fmt=TRANSPARENT wanim=0x10302f1
01-21 18:29:20.475  1036  3259 V WindowManager:   fl=81910102
01-21 18:29:20.475  1036  3259 V WindowManager:   pfl=20000
01-21 18:29:20.475  1036  3259 V WindowManager:   vsysui=700 dimAmount=0.15 dimDuration=223 naviIconColor=0
01-21 18:29:20.475  1036  3259 V WindowManager:   sfl=40}, display=0
01-21 18:29:20.476  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: Relayout returned: old=(0,0,1080,2280) new=(0,0,1080,2280) req=(1080,2280)8 dur=4 res=0x5 s={false 0} ch=true
01-21 18:29:20.476  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: stopped(true) old=false
01-21 18:29:20.476 28828 28828 I crash_dump64: obtaining output fd from tombstoned, type: kDebuggerdTombstone
01-21 18:29:20.476   574  3341 I SurfaceFlinger: id=164104 Removed Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash#0 (55)
01-21 18:29:20.476   574  3341 I SurfaceFlinger: id=164103 Removed Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash#0 (55)
01-21 18:29:20.476   574  3341 I SurfaceFlinger: id=164102 Removed Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash#0 (55)
01-21 18:29:20.477   734   734 I /system/bin/tombstoned: received crash request for pid 17876
01-21 18:29:20.477  3267  3267 D LauncherAppWidgetHost: setListenIfResumed, mFlags = 4
01-21 18:29:20.477  1036  4093 I AppWidgetServiceImpl: stopListening callbacks : null
01-21 18:29:20.478  3267  3267 D Launcher.NotificationListener: removeNotificationsChangedListener
01-21 18:29:20.478  3267  3267 D BadgeCountUpdaterImpl: onNotificationsChangedDisConnected
01-21 18:29:20.478 28828 28828 I crash_dump64: performing dump of process 17876 (target tid = 17876)
01-21 18:29:20.478  3267  3267 D Launcher.NotificationListener: unregisterObserver, this is not notificationService!!
01-21 18:29:20.478  3267  3267 V SettingsHelper: *** unregister listener for com.android.launcher3.notification.-$$Lambda$NotificationListener$TPumyTwU0XeoXYvudWsC9Oq4HgU@b6d48eb
01-21 18:29:20.478  3267  3267 V SettingsHelper: *** unregister listener for com.android.launcher3.notification.-$$Lambda$NotificationListener$rJMoivvsqzlKdmqkNLlyopK1Us8@a81d648
01-21 18:29:20.482 28828 28828 F DEBUG   : *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
01-21 18:29:20.482 28828 28828 F DEBUG   : Build fingerprint: 'samsung/beyond2lteeea/beyond2:10/QP1A.190711.020/G975FXXS9DTL1:user/release-keys'
01-21 18:29:20.482 28828 28828 F DEBUG   : Revision: '26'
01-21 18:29:20.482 28828 28828 F DEBUG   : ABI: 'arm64'
01-21 18:29:20.483 28828 28828 F DEBUG   : Timestamp: 2021-01-21 18:29:20+0000
01-21 18:29:20.483 28828 28828 F DEBUG   : pid: 17876, tid: 17876, name: mple.StevensPin  >>> com.example.StevensPin <<<
01-21 18:29:20.483 28828 28828 F DEBUG   : uid: 10333
01-21 18:29:20.483 28828 28828 F DEBUG   : signal 6 (SIGABRT), code -1 (SI_QUEUE), fault addr --------
01-21 18:29:20.483 28828 28828 F DEBUG   : Abort message: '[FATAL:flutter/shell/platform/android/platform_view_android_jni_impl.cc(942)] Check failed: CheckException(env).
01-21 18:29:20.483 28828 28828 F DEBUG   : '
01-21 18:29:20.483 28828 28828 F DEBUG   :     x0  0000000000000000  x1  00000000000045d4  x2  0000000000000006  x3  0000007ff7aaf410
01-21 18:29:20.483 28828 28828 F DEBUG   :     x4  0080000000000000  x5  0080000000000000  x6  0080000000000000  x7  0000000000008000
01-21 18:29:20.483 28828 28828 F DEBUG   :     x8  00000000000000f0  x9  0000007f1e8175e0  x10 0000000000000000  x11 0000000000000001
01-21 18:29:20.483 28828 28828 F DEBUG   :     x12 00000000a861d980  x13 0000000000000003  x14 0000000000000000  x15 0000619e3bfed41e
01-21 18:29:20.483 28828 28828 F DEBUG   :     x16 0000007f1e8e58c0  x17 0000007f1e8c2880  x18 0000007f22810000  x19 00000000000000ac
01-21 18:29:20.483 28828 28828 F DEBUG   :     x20 00000000000045d4  x21 00000000000000b2  x22 00000000000045d4  x23 00000000ffffffff
01-21 18:29:20.483 28828 28828 F DEBUG   :     x24 0000007e15c64000  x25 0003fa3f9384f15a  x26 0000007e15c64050  x27 0000007f221b4a48
01-21 18:29:20.483 28828 28828 F DEBUG   :     x28 0000007e85d2b000  x29 0000007ff7aaf4c0
01-21 18:29:20.483 28828 28828 F DEBUG   :     sp  0000007ff7aaf3f0  lr  0000007f1e876330  pc  0000007f1e876360
01-21 18:29:20.483 28828 28828 F DEBUG   :
01-21 18:29:20.483 28828 28828 F DEBUG   : backtrace:
01-21 18:29:20.483 28828 28828 F DEBUG   :       #00 pc 0000000000083360  /apex/com.android.runtime/lib64/bionic/libc.so (abort+176) (BuildId: 3f350ca06c3b80560f65755286daf320)
01-21 18:29:20.483 28828 28828 F DEBUG   :       #01 pc 00000000002bc350  /data/app/com.example.StevensPin-QzbMul9E_Y3bNsdQmxQzGA==/lib/arm64/libflutter.so (BuildId: c0b2127d13e43f81f07fa8fada899d79892354eb)
01-21 18:29:20.483 28828 28828 F DEBUG   :       #02 pc 00000000002b261c  /data/app/com.example.StevensPin-QzbMul9E_Y3bNsdQmxQzGA==/lib/arm64/libflutter.so (BuildId: c0b2127d13e43f81f07fa8fada899d79892354eb)
01-21 18:29:20.486   574   574 I Layer   : id=164102[1] Destroyed Surface(name=AppWindowToken{7cbcf21 token=Token{3dca988 ActivityRecord{94e2f9c u0 com.sec.android.app.launcher/.activities.LauncherActivity t2613}}})/@0x8da830e - animation-leash#0
01-21 18:29:20.486   574   574 I Layer   : id=164103[1] Destroyed Surface(name=AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}})/@0xf40cd11 - animation-leash#0
01-21 18:29:20.486   574   574 I Layer   : id=164104[1] Destroyed Surface(name=240692b com.android.systemui.ImageWallpaper)/@0x4a8ea17 - animation-leash#0
01-21 18:29:20.500  6344  6562 I SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 17876 , isNotify : true , isForeground : true , fg list : [3267, 17876]
01-21 18:29:20.500  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.500  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.501  6344  6523 I SAMSUNGPAY: [ResetData] getSAResetDialogFlag : false
01-21 18:29:20.510  6344  6523 I SAMSUNGPAY: [Hint_ckl] isHomePackageRunning topPkgName = com.example.StevensPin, topClsName = com.example.StevensPin.MainActivity, return false , se : false
01-21 18:29:20.510  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.511  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.511  6344  6344 I SAMSUNGPAY: [Hint_IntroHintService] Hint Status - already invisible, skip hide : [4000000] - Home Package Not Running
01-21 18:29:20.512  1036  3259 E WindowManager: win=Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} destroySurfaces: appStopped=true win.mWindowRemovalAllowed=false win.mRemoveOnExit=false win.mViewVisibility=8 caller=com.android.server.wm.AppWindowToken.destroySurfaces:1248 com.android.server.wm.AppWindowToken.destroySurfaces:1229 com.android.server.wm.AppWindowToken.notifyAppStopped:1284 com.android.server.wm.ActivityRecord.activityStoppedLocked:2776 com.android.server.wm.ActivityTaskManagerService.activityStopped:2513 android.app.IActivityTaskManager$Stub.onTransact:2280 android.os.Binder.execTransactInternal:1056
01-21 18:29:20.512  1036  3259 I WindowManager: Destroying surface Surface(name=com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267)/@0x651cc96 called by com.android.server.wm.WindowStateAnimator.destroySurface:1834 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:733 com.android.server.wm.WindowState.destroySurfaceUnchecked:3649 com.android.server.wm.WindowState.destroySurface:3623 com.android.server.wm.AppWindowToken.destroySurfaces:1248 com.android.server.wm.AppWindowToken.destroySurfaces:1229 com.android.server.wm.AppWindowToken.notifyAppStopped:1284 com.android.server.wm.ActivityRecord.activityStoppedLocked:2776
01-21 18:29:20.513   574   615 I Layer   : id=164092 removeFromCurrentState com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0 (52)
01-21 18:29:20.513   574  3341 I SurfaceFlinger: id=164092 Removed com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0 (52)
01-21 18:29:20.517  1036  1144 D CodecSolution: isMaxAspectPackageEx: com.example.StevensPin : false(0)
01-21 18:29:20.517  6344  6562 I SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 3267 , isNotify : true , isForeground : false , fg list : [17876]
01-21 18:29:20.518  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.518  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.519  6344  6523 I SAMSUNGPAY: [ResetData] getSAResetDialogFlag : false
01-21 18:29:20.520   574   574 I Layer   : id=164092[1] Destroyed com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0
01-21 18:29:20.521  6344  6523 I SAMSUNGPAY: [Hint_ckl] isHomePackageRunning topPkgName = com.example.StevensPin, topClsName = com.example.StevensPin.MainActivity, return false , se : false
01-21 18:29:20.521  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.521  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.522  6344  6344 I SAMSUNGPAY: [Hint_IntroHintService] Hint Status - already invisible, skip hide : [4000000] - Home Package Not Running
01-21 18:29:20.563  1036  1064 W System  : A resource failed to call end.
01-21 18:29:20.647  1036  2898 D MdnieScenarioControlService:  packageName : com.example.StevensPin    className : com.example.StevensPin.MainActivity
01-21 18:29:20.647  1036  2898 V MdnieScenarioControlService: setUIMode from UI function(3)
01-21 18:29:20.757  1036  1036 D CustomFrequencyManagerService: FrequencyrequestList.getNextCStateDisableRequest, index: 2
01-21 18:29:20.758  1036  1036 D CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 1820000  uid : 1000  pid : 1036  tag : AMS_RESUME_TAIL@CPU_MIN@28
01-21 18:29:20.800  1036 28833 I DropBoxManagerService: add tag=data_app_native_crash isTagEnabled=true flags=0x2
01-21 18:29:20.801   734   734 E /system/bin/tombstoned: Tombstone written to: /data/tombstones/tombstone_06
01-21 18:29:20.802  1036 28832 W ActivityManager: crash : com.example.StevensPin,0
01-21 18:29:20.802  1036  1162 I BootReceiver: Copying /data/tombstones/tombstone_06 to DropBox (SYSTEM_TOMBSTONE)
01-21 18:29:20.803  1036  1162 I DropBoxManagerService: add tag=SYSTEM_TOMBSTONE isTagEnabled=true flags=0x2
01-21 18:29:20.804  1036 28832 W ActivityTaskManager:   Force finishing activity com.example.StevensPin/.MainActivity
01-21 18:29:20.804  1036 28832 V WindowManager: Prepare app transition: transit=TRANSIT_CRASHING_ACTIVITY_CLOSE mNextAppTransition=TRANSIT_UNSET alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:6356 com.android.server.wm.DisplayContent.prepareAppTransition:6350 com.android.server.wm.ActivityStack.finishTopCrashedActivityLocked:4649 com.android.server.wm.RootActivityContainer.finishTopCrashedActivities:1217 com.android.server.wm.ActivityTaskManagerService$LocalService.finishTopCrashedActivities:9079
01-21 18:29:20.804  1036 28832 D ActivityTaskManager: updateMinimizedState: unknown notifyReason=2
01-21 18:29:20.805  1036 28832 D InputDispatcher: Focused application set to (0): 7cbcf21
01-21 18:29:20.805  1036 28832 V WindowManager: Changing focus from Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity} to null displayId=0 Callers=com.android.server.wm.RootWindowContainer.updateFocusedWindowLocked:204 com.android.server.wm.WindowManagerService.updateFocusedWindowLocked:6443 com.android.server.wm.ActivityDisplay.setFocusedApp:1686 com.android.server.wm.ActivityTaskManagerService.setResumedActivityUncheckLocked:6981 com.android.server.wm.ActivityRecord.moveFocusableActivityToTop:1947 com.android.server.wm.ActivityDisplay.moveHomeActivityToTop:1778
01-21 18:29:20.805  1036 28832 V WindowManager: Prepare app transition: transit=TRANSIT_TASK_CLOSE mNextAppTransition=TRANSIT_CRASHING_ACTIVITY_CLOSE alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:6356 com.android.server.wm.DisplayContent.prepareAppTransition:6350 com.android.server.wm.ActivityStack.finishActivityLocked:4877 com.android.server.wm.ActivityStack.finishActivityLocked:4773 com.android.server.wm.ActivityStack.finishTopCrashedActivityLocked:4651
01-21 18:29:20.805  1036 28832 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.808  1036  1149 D GameSDK@LifeCycle: onFocusedStackChanged(): focusedStackInfo: Stack id=0 bounds=[0,0][1080,2280] displayId=0 userId=0
01-21 18:29:20.808  1036  1149 D GameSDK@LifeCycle:  configuration={1.1 234mcc30mnc [en_GB] ldltr sw411dp w411dp h778dp 420dpi nrml long port night finger -keyb/v/h -nav/h winConfig={ mBounds=Rect(0, 0 - 1080, 2280) mAppBounds=Rect(0, 107 - 1080, 2154) mWindowingMode=fullscreen mDisplayWindowingMode=fullscreen mActivityType=home mAlwaysOnTop=undefined mRotation=ROTATION_0} s.33912 desktop/d ?dc bts=0 ff=0 bf=0 themeSeq=0}
01-21 18:29:20.808  1036  1149 D GameSDK@LifeCycle:   taskId=2613: com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity bounds=[0,0][1080,2280] userId=0 visible=true topActivity=ComponentInfo{com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}
01-21 18:29:20.811  1036  1155 I ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.samsung.android.lool user:0
01-21 18:29:20.811  1036  1155 D ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.811  1036  1155 D ActivityManager: package  com.samsung.android.lool, user - 0 is SDcard whitelisted
01-21 18:29:20.811  1036  1155 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.android.lool user:0
01-21 18:29:20.811  1036  1155 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.811  1036  1155 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.android.lool user:0
01-21 18:29:20.811  1036  1155 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.812  1036  1149 D GameSDK@LifeCycle: onFocusedPackageChanged(): newPkgName: com.sec.android.app.launcher, newPid: 3267
01-21 18:29:20.813  1036  1149 D MdnieScenarioControlService: MultiWindowState : false , mode : 0
01-21 18:29:20.813  1036  1149 D GameManagerService: MultiWindowEventListener.onFocusedStackChanged()
01-21 18:29:20.813  1036  1149 D GameManagerService: getForegroundPair(), state=0, bounds=[0,0][1080,2280], displayId=0, userId=0, taskName=com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity
01-21 18:29:20.813  1036  1149 D GameManagerService: sendPauseConditionally() - mPrevNotiPackage: com.sec.android.app.myfiles
01-21 18:29:20.813  1036  1149 D GameManagerService: MultiWindowEventListener.onFocusedStackChanged(), pkgName: com.sec.android.app.launcher, clsName: com.sec.android.app.launcher.activities.LauncherActivity, fgActivityName:com.sec.android.app.launcher/.activities.LauncherActivity, userID:0
01-21 18:29:20.813  1036  1149 I WindowManager: Focus moving from Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity} to null displayId=0
01-21 18:29:20.813  2845  2845 D DividerPanelController: showDividerPanelView - isVisible : false, isAnimate : false, isTransient : false
01-21 18:29:20.814  2845  2845 D DividerPanelView: updateDividerPanelVisibility - isVisible : false
01-21 18:29:20.814  1036  1149 I WindowManager: Losing focus: Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.816   506   506 E audit   : type=1701 audit(1611253760.809:72959): auid=4294967295 uid=10333 gid=10333 ses=4294967295 subj=u:r:untrusted_app_27:s0:c77,c257,c512,c768 pid=17876 comm="mple.StevensPin" exe="/system/bin/app_process64" sig=6 res=1
01-21 18:29:20.822 28834 28834 E Zygote  : isWhitelistProcess - Process is Whitelisted
01-21 18:29:20.822 28834 28834 E Zygote  : accessInfo : 1
01-21 18:29:20.823  1036  2747 W PkgPredictorService: background app without no launcher icon com.sec.android.app.launcher for.uid: 10154 userId: 0
01-21 18:29:20.825  1036  1144 D CodecSolution: isMaxAspectPackageEx: com.sec.android.app.launcher : false(0)
01-21 18:29:20.825  6344  6562 I SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 3267 , isNotify : true , isForeground : true , fg list : [3267, 17876]
01-21 18:29:20.825  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.826  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.826  6344  6523 I SAMSUNGPAY: [ResetData] getSAResetDialogFlag : false
01-21 18:29:20.826   522   522 D Zygote  : Forked child process 28834
01-21 18:29:20.827  6344  6523 I SAMSUNGPAY: [Hint_ckl] isHomePackageRunning topPkgName = com.sec.android.app.launcher, topClsName = com.android.launcher3.Launcher, return true , se : true
01-21 18:29:20.828  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.828  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.828  6344  6344 I SAMSUNGPAY: [Hint_IntroHintService] Hint Status - already invisible, skip hide : [4000000] - 4000000
01-21 18:29:20.828  1036  1156 I ActivityManager: Start proc 28834:com.samsung.android.lool/1000 for broadcast {com.samsung.android.lool/com.samsung.android.sm.battery.receiver.BatteryReceiver}
01-21 18:29:20.830  1036  2792 D SamsungAlarmManager: setInexact Intent (T:3/F:0/AC:false) 20310119T182920 - CU:10092/CP:28045
01-21 18:29:20.830  1036  2792 I SamsungAlarmManager: setLocked to kernel - T:2 / 20210121T182921, SetElapsed=3032616202, nowELAPSED=3032615294
01-21 18:29:20.837 28834 28834 E ng.android.loo: Not starting debugger since process cannot load the jdwp agent.
01-21 18:29:20.838  1036  3259 D InputDispatcher: Focus left window (17876): 75e1c81 in display 0 0
01-21 18:29:20.840  1036  3084 D SamsungAlarmManager: setInexact Intent (T:3/F:0/AC:false) 20310119T182920 - CU:10092/CP:23789
01-21 18:29:20.840  1036  3084 I SamsungAlarmManager: setLocked to kernel - T:2 / 20210121T182921, SetElapsed=3032616202, nowELAPSED=3032615303
01-21 18:29:20.849 28834 28834 D ActivityThread: setConscryptValidator
01-21 18:29:20.849 28834 28834 D ActivityThread: setConscryptValidator - put
01-21 18:29:20.852  1036  4093 I ActivityManager: DSS OFF for com.samsung.android.lool
01-21 18:29:20.854  1036  4093 V WindowManager: Setting visibility of Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: true, caller=com.android.server.wm.WindowContainer.sendAppVisibilityToClients:644 com.android.server.wm.AppWindowToken.setClientHidden:631 com.android.server.wm.AppWindowToken.setVisibility:745 com.android.server.wm.ActivityRecord.setVisibility:2278 com.android.server.wm.ActivityRecord.setVisible:2292
01-21 18:29:20.856  1036  2147 I SensorService: [REARLIGHT] lux value : 37, code value : 0
01-21 18:29:20.856  1036  4724 V WindowManager: Relayout Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: viewVisibility=4 req=1080x2280
01-21 18:29:20.858  1036  4724 V WindowManager: rotationForOrientation(orient=5, last=0); user=0 USER_ROTATION_LOCKED
01-21 18:29:20.858  1036  4724 V WindowOrientationListener: getProposedRotation: -1
01-21 18:29:20.858  1036  4724 V WindowManager: Computed rotation=0 for display id=0 based on lastOrientation=5 and oldRotation=0, caller=com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1553 com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1490 com.android.server.wm.WindowManagerService.relayoutWindow:2645 com.android.server.wm.Session.relayout:202 android.view.IWindowSession$Stub.onTransact:716 com.android.server.wm.Session.onTransact:142
01-21 18:29:20.858  1036  4724 V WindowManager: Relayout 3267: mAttrs={(0,0)(fillxfill) sim={adjust=nothing} layoutInDisplayCutoutMode=always ty=BASE_APPLICATION fmt=TRANSPARENT wanim=0x10302f1
01-21 18:29:20.858  1036  4724 V WindowManager:   fl=81910102
01-21 18:29:20.858  1036  4724 V WindowManager:   pfl=20000
01-21 18:29:20.858  1036  4724 V WindowManager:   vsysui=700 dimAmount=0.15 dimDuration=223 naviIconColor=0
01-21 18:29:20.858  1036  4724 V WindowManager:   sfl=40}, display=0
01-21 18:29:20.858  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: Relayout returned: old=(0,0,1080,2280) new=(0,0,1080,2280) req=(1080,2280)4 dur=3 res=0x1 s={false 0} ch=false
01-21 18:29:20.859  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: stopped(false) old=true
01-21 18:29:20.859  3267  3267 D LauncherAppWidgetHost: setListenIfResumed, mFlags = 0
01-21 18:29:20.859  3267  3267 D LiveIconViewUpdater: onUpdateLiveIcon 33
01-21 18:29:20.859  1036  1149 D GameManagerService: notePauseComponent(), received paused-component: com.sec.android.app.launcher
01-21 18:29:20.860  3267  3267 E libprocessgroup: set_timerslack_ns write failed: Operation not permitted
01-21 18:29:20.860  3267  3267 D LiveIconViewUpdater: onUpdateLiveIcon 34
01-21 18:29:20.860  3267  3267 D LiveIconViewUpdater: onUpdateLiveIcon -1
01-21 18:29:20.861  3267  3267 D WallpapersButton: updateVisibility - mWallpaperType : 0
01-21 18:29:20.862  3267  3267 D ThemesButton: updateVisibility - sThemeStoreType : 1
01-21 18:29:20.862  3267  3267 D LiveIconViewUpdater: onUpdateLiveIcon 81
01-21 18:29:20.862  3267  3267 D LiveIconViewUpdater: onUpdateLiveIcon 84
01-21 18:29:20.871 28834 28834 I ng.android.loo: The ClassLoaderContext is a special shared library.
01-21 18:29:20.872  1036  2198 W InputDispatcher: channel '75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity (server)' ~ Consumer closed input channel or an error occurred.  events=0x9, fd=649
01-21 18:29:20.872  1036  2198 E InputDispatcher: channel '75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
01-21 18:29:20.873  1036  4093 V WindowManager: Relayout Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: viewVisibility=0 req=1080x2280
01-21 18:29:20.873   574   615 I SurfaceFlinger: id=164111 createSurf (1080x2280),1 flag=4, com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0
01-21 18:29:20.874  1036  4093 D WindowManager: makeSurface duration=1 name=com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267
01-21 18:29:20.874  1036  4093 V WindowManager: Changing focus from null to Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} displayId=0 Callers=com.android.server.wm.RootWindowContainer.updateFocusedWindowLocked:204 com.android.server.wm.WindowManagerService.updateFocusedWindowLocked:6443 com.android.server.wm.WindowManagerService.relayoutWindow:2608 com.android.server.wm.Session.relayout:202 android.view.IWindowSession$Stub.onTransact:716 com.android.server.wm.Session.onTransact:142
01-21 18:29:20.874  1036  4093 D StatusBarManagerService: notifyRequestedSystemKey recent=false home=false
01-21 18:29:20.874  1036  1144 D WindowManager: setSystemUiVisibility: displayId=0, vis=0x8718, fullVis=0x0, dockVis=0x0, win=Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}
01-21 18:29:20.875  1036  1149 I WindowManager: Focus moving from null to Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} displayId=0
01-21 18:29:20.875  1036  1149 I WindowManager: Gaining focus: Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}
01-21 18:29:20.875  2845  2845 D LightBarController: onNavigationVisibilityChanged : vis = 8718, nbModeChanged = false navigationBarMode = 4, navbarColorManagedByIme = false
01-21 18:29:20.875  1036  4093 V WindowManager: Relayout 3267: mAttrs={(0,0)(fillxfill) sim={adjust=nothing} layoutInDisplayCutoutMode=always ty=BASE_APPLICATION fmt=TRANSPARENT wanim=0x10302f1
01-21 18:29:20.875  1036  4093 V WindowManager:   fl=81910102
01-21 18:29:20.875  1036  4093 V WindowManager:   pfl=20000
01-21 18:29:20.875  1036  4093 V WindowManager:   vsysui=700 dimAmount=0.15 dimDuration=223 naviIconColor=0
01-21 18:29:20.875  1036  4093 V WindowManager:   sfl=40}, display=0
01-21 18:29:20.875  1036  2792 D WindowManager: adjustSystemUiVisibilityLw: displayId=0, vis=0x8718, resetVis=0x0, clearVis=0x0
01-21 18:29:20.875  1036  2792 D InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8718 DD: 0x8718 OD: 0x0
01-21 18:29:20.876   574   614 I SurfaceFlinger: id=164107 Removed Bounds for - com.example.StevensPin/com.example.StevensPin.MainActivity@0#0 (52)
01-21 18:29:20.876   522   522 I Zygote  : Process 17876 exited due to signal 6 (Aborted)
01-21 18:29:20.876   574   614 I SurfaceFlinger: id=164108 Removed SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0 (52)
01-21 18:29:20.876   574   614 I SurfaceFlinger: id=164109 Removed Background for -SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0 (52)
01-21 18:29:20.876  5925  5925 I TrayStateController: onSystemUiVisibilityChange : 34584 0
01-21 18:29:20.876  1036  5203 I WindowManager: WIN DEATH: Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:20.876  1036  5203 W InputDispatcher: Attempted to unregister already unregistered input channel '75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity (server)'
01-21 18:29:20.876  1036  5203 D InputTransport: Input channel destroyed: '75e1c81', fd=649
01-21 18:29:20.876  1036  5208 I ActivityManager: Process com.example.StevensPin (pid 17876) has died: vis+99 TOP (345,3296)
01-21 18:29:20.876  1036  3028 D InputTransport: Input channel destroyed: 'ClientS', fd=593
01-21 18:29:20.877 26605 26605 D InputTransport: Input channel destroyed: 'ClientS', fd=86
01-21 18:29:20.877  1036  5203 E SurfaceControl: [SEC_SF_EFFECTS] SurfaceControl.startSurfaceAnimation() sc=Surface(name=com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267)/@0x7948941
01-21 18:29:20.877  1036  1157 I libprocessgroup: Successfully killed process cgroup uid 10333 pid 17876 in 0ms
01-21 18:29:20.878   574  2225 E NativeSemDvfsGpuManager: acquire:: Start
01-21 18:29:20.878   574  2225 E NativeSemDvfsGpuManager: acquire:: timeout = 1000 mIsAcquired = 0  mTagName : SurfaceFlinger
01-21 18:29:20.878  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: Relayout returned: old=(0,0,1080,2280) new=(0,0,1080,2280) req=(1080,2280)0 dur=6 res=0x7 s={true 543520149504} ch=true
01-21 18:29:20.878  3267  4273 D OpenGLRenderer: createReliableSurface : 0x7dfd5d4140(0x7e8c535000)
01-21 18:29:20.878   574  2225 E NativeCustomFrequencyManager: [NativeCFMS] BpCustomFrequencyManager::requestGPU()
01-21 18:29:20.878   574  2225 E NativeSemDvfsGpuManager: acquire:: End
01-21 18:29:20.879  1036  5208 V WindowManager: Setting visibility of Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity EXITING}: false, caller=com.android.server.wm.WindowContainer.sendAppVisibilityToClients:644 com.android.server.wm.AppWindowToken.setClientHidden:631 com.android.server.wm.AppWindowToken.onAnimationFinished:3903 com.android.server.wm.AppWindowToken.commitVisibility:913 com.android.server.wm.AppWindowToken.onRemovedFromDisplay:1145
01-21 18:29:20.879  1036  5208 E WindowManager: win=Window{75e1c81 u0 com.example.StevensPin/com.example.StevensPin.MainActivity EXITING} destroySurfaces: appStopped=false win.mWindowRemovalAllowed=true win.mRemoveOnExit=true win.mViewVisibility=0 caller=com.android.server.wm.AppWindowToken.destroySurfaces:1248 com.android.server.wm.AppWindowToken.destroySurfaces:1229 com.android.server.wm.WindowState.onExitAnimationDone:5189 com.android.server.wm.-$$Lambda$01bPtngJg5AqEoOWfW3rWfV7MH4.accept:2 java.util.ArrayList.forEach:1262 com.android.server.wm.AppWindowToken.onAnimationFinished:3931 com.android.server.wm.AppWindowToken.commitVisibility:913
01-21 18:29:20.879  6344  6562 I SAMSUNGPAY: [Hint_ProcessStatusChange] invoke foreground activities changed - onProcessDied pid:17876 uid : 10333
01-21 18:29:20.879  1036  5208 I WindowManager: Destroying surface Surface(name=com.example.StevensPin/com.example.StevensPin.MainActivity$_17876)/@0x77b7c27 called by com.android.server.wm.WindowStateAnimator.destroySurface:1834 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:733 com.android.server.wm.WindowState.destroySurfaceUnchecked:3649 com.android.server.wm.WindowState.destroySurface:3623 com.android.server.wm.AppWindowToken.destroySurfaces:1248 com.android.server.wm.AppWindowToken.destroySurfaces:1229 com.android.server.wm.WindowState.onExitAnimationDone:5189 com.android.server.wm.-$$Lambda$01bPtngJg5AqEoOWfW3rWfV7MH4.accept:2
01-21 18:29:20.879  3267  4273 I mali_winsys: new_window_surface() [1080x2280] return: 0x3000
01-21 18:29:20.879  3267  4273 D OpenGLRenderer: eglCreateWindowSurface : 0x7e8752fe00
01-21 18:29:20.879   574  1185 I Layer   : id=164107 removeFromCurrentState Bounds for - com.example.StevensPin/com.example.StevensPin.MainActivity@0#0 (52)
01-21 18:29:20.879   574  1185 I Layer   : id=164106 removeFromCurrentState com.example.StevensPin/com.example.StevensPin.MainActivity$_17876#0 (52)
01-21 18:29:20.879   574  1185 I Layer   : id=164108 removeFromCurrentState SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0 (52)
01-21 18:29:20.879   574  1185 I Layer   : id=164109 removeFromCurrentState Background for -SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0 (52)
01-21 18:29:20.879  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.880  6344  6523 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.880  6344  6523 I SAMSUNGPAY: [ResetData] getSAResetDialogFlag : false
01-21 18:29:20.880   574  2223 I Layer   : id=164105 removeFromCurrentState 75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity#0 (52)
01-21 18:29:20.880  3267  3267 D LauncherRootView: finishDrawingWindow : 1st LauncherRootView dispatchDraw start
01-21 18:29:20.881  1036  5208 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.881   574  2223 I SurfaceFlinger: id=164105 Removed 75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity#0 (52)
01-21 18:29:20.881  3267  3267 D LauncherRootView: finishDrawingWindow : 1st LauncherRootView dispatchDraw end
01-21 18:29:20.881   574  2223 I SurfaceFlinger: id=164106 Removed com.example.StevensPin/com.example.StevensPin.MainActivity$_17876#0 (52)
01-21 18:29:20.881  3267  4273 D OpenGLRenderer: makeCurrent EglSurface : 0x0 -> 0x7e8752fe00
01-21 18:29:20.881  3267 26603 I OpenGLRenderer: doUpdatePositionAsync is called and callVoidMethod
01-21 18:29:20.883   574  2223 I Layer   : id=164099 removeFromCurrentState AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}#0 (52)
01-21 18:29:20.883   574  2223 I Layer   : id=164098 removeFromCurrentState Task=4064#0 (52)
01-21 18:29:20.883   574  1185 I SurfaceFlinger: id=164099 Removed AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}#0 (52)
01-21 18:29:20.883   574  1185 I SurfaceFlinger: id=164098 Removed Task=4064#0 (52)
01-21 18:29:20.883   574   615 I Layer   : id=164097 removeFromCurrentState animation background stackId=1767#0 (52)
01-21 18:29:20.883   574   615 I SurfaceFlinger: id=164097 Removed animation background stackId=1767#0 (52)
01-21 18:29:20.883  1036  5208 D CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT  frequency : 2530000  uid : 1000  pid : 1036  pkgName : AMS_APP_HOME@CPU_MIN@54
01-21 18:29:20.884 28834 28834 I ng.android.loo: The ClassLoaderContext is a special shared library.
01-21 18:29:20.884  1036  5208 D ActivityManagerPerformance: AMP_acquire() HOME
01-21 18:29:20.884  1036  5208 V WindowManager: Prepare app transition: transit=TRANSIT_ACTIVITY_OPEN mNextAppTransition=TRANSIT_CRASHING_ACTIVITY_CLOSE alwaysKeepCurrent=false displayId=0 Callers=com.android.server.wm.DisplayContent.prepareAppTransition:6356 com.android.server.wm.DisplayContent.prepareAppTransition:6350 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:3573 com.android.server.wm.ActivityStack.resumeTopActivityUncheckedLocked:3154 com.android.server.wm.ActivityRecord.makeActiveIfNeeded:2527
01-21 18:29:20.885  1036  5208 V WindowManager: rotationForOrientation(orient=5, last=0); user=0 USER_ROTATION_LOCKED
01-21 18:29:20.885  1036  5208 V WindowOrientationListener: getProposedRotation: -1
01-21 18:29:20.885  1036  5208 V WindowManager: Computed rotation=0 for display id=0 based on lastOrientation=5 and oldRotation=0, caller=com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1553 com.android.server.wm.DisplayContent.updateOrientationFromAppTokens:1507 com.android.server.wm.RootActivityContainer.ensureVisibilityAndConfig:688 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:3651 com.android.server.wm.ActivityStack.resumeTopActivityUncheckedLocked:3154 com.android.server.wm.ActivityRecord.makeActiveIfNeeded:2527
01-21 18:29:20.885  1036  5208 D TspStateManagerInternal: updateDefaultValue customSetting=null
01-21 18:29:20.885  1036  5208 D MARsPolicyManager: onPackageResumedFG pkgName = com.sec.android.app.launcher, userId = 0
01-21 18:29:20.886  1036  5208 W WindowManager: Execute app transition: mNextAppTransition=TRANSIT_CRASHING_ACTIVITY_CLOSE, displayId: 0 Callers=com.android.server.wm.RootActivityContainer.executeAppTransitionForAllDisplay:1154 com.android.server.wm.ActivityStackSupervisor.reportResumedActivityLocked:2692 com.android.server.wm.ActivityRecord.completeResumeLocked:2704 com.android.server.wm.ActivityStack.resumeTopActivityInnerLocked:3764 com.android.server.wm.ActivityStack.resumeTopActivityUncheckedLocked:3154
01-21 18:29:20.887   574   615 I Layer   : id=164096 removeFromCurrentState Stack=1767#0 (52)
01-21 18:29:20.887  1036  4093 D WindowManager: finishDrawingWindow: Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} mDrawState=DRAW_PENDING
01-21 18:29:20.888  2845  3320 D WallpaperService: dispatchAppVisibility onVisibilityChanged(): true
01-21 18:29:20.888   574   574 D Layer   : [SEC_SF_EFFECTS] applyEffect ## com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity$_3267#0
01-21 18:29:20.888   574   574 D Layer   : [SEC_SF_EFFECTS] applyEffect ## animMode=3, target=2, pixType=1
01-21 18:29:20.888   574   574 D Layer   : [SEC_SF_EFFECTS] applyEffect ## pixAnim anim=13, timeMs=0, value=0.00, interp=0
01-21 18:29:20.888   574   574 D Layer   : [SEC_SF_EFFECTS] applyEffect ## pixAnim anim=13, timeMs=223, value=132.00, interp=3
01-21 18:29:20.888   574   574 D Layer   : [SEC_SF_EFFECTS] applyEffect ## pixAnim anim=14, timeMs=0, value=0.00, interp=0
01-21 18:29:20.888   574   574 D Layer   : [SEC_SF_EFFECTS] applyEffect ## pixAnim anim=14, timeMs=223, value=-7.00, interp=3
01-21 18:29:20.888   574   574 I Layer   : id=164105[1] Destroyed 75e1c81 com.example.StevensPin/com.example.StevensPin.MainActivity#0
01-21 18:29:20.888   574   574 I Layer   : id=164099[1] Destroyed AppWindowToken{788cd84 token=Token{67ce797 ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t4064}}}#0
01-21 18:29:20.888   574   574 I Layer   : id=164097[1] Destroyed animation background stackId=1767#0
01-21 18:29:20.888   574   574 I Layer   : id=164098[1] Destroyed Task=4064#0
01-21 18:29:20.888  2845  2845 D WallpaperService: updateSurface forceRelayout=false forceReport=false redrawNeeded=false myWidth=1080 myHeight=2280 fixedSize=true x = 0 y = 0 mWidth=1080 mHeight=2280 mIsSleepMode=false
01-21 18:29:20.888  2845  2845 I ImageWallpaper:  onVisibilityChanged true
01-21 18:29:20.888  2845  2845 D WallpaperService: reportVisibility onVisibilityChanged visible: true
01-21 18:29:20.888  3267  3267 E libprocessgroup: set_timerslack_ns write failed: Operation not permitted
01-21 18:29:20.888  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: MSG_WINDOW_FOCUS_CHANGED 1 1
01-21 18:29:20.888  3267  3267 D InputMethodManager: prepareNavigationBarInfo() DecorView@892d452[LauncherActivity]
01-21 18:29:20.888  3267  3267 D InputMethodManager: getNavigationBarColor() 0
01-21 18:29:20.888  3267  3267 D PageOverlayMover: isMoving : false
01-21 18:29:20.889  1036  1150 W WindowManager: requestTraversal called while in layout. Callers=com.android.server.wm.WindowManagerService.requestTraversal:6430 com.android.server.wm.WindowState.onExitAnimationDone:5148 com.android.server.wm.-$$Lambda$01bPtngJg5AqEoOWfW3rWfV7MH4.accept:2
01-21 18:29:20.889  3267  3267 D InputMethodManager: prepareNavigationBarInfo() DecorView@892d452[LauncherActivity]
01-21 18:29:20.889  3267  3267 D InputMethodManager: getNavigationBarColor() 0
01-21 18:29:20.889  3267  3267 V InputMethodManager: Starting input: tba=com.sec.android.app.launcher ic=null mNaviBarColor 0 mIsGetNaviBarColorSuccess true , NavVisible : true , NavTrans : false
01-21 18:29:20.889  3267  3267 D InputMethodManager: startInputInner - Id : 0
01-21 18:29:20.889  3267  3267 I InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus
01-21 18:29:20.889   574   574 I Layer   : id=164106[1] Destroyed com.example.StevensPin/com.example.StevensPin.MainActivity$_17876#0
01-21 18:29:20.889  1036  4093 D InputMethodManagerService: mSecureKeypadEnabled = false
01-21 18:29:20.889  1036  4093 V InputMethodManagerService: startInputOrWindowGainedFocusInternalLocked: reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@aef641c inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@319b3c3 startInputFlags=FIRST_WINDOW_FOCUS_GAIN|INITIAL_CONNECTION softInputMode=STATE_UNSPECIFIED|ADJUST_NOTHING windowFlags=#81910102 unverifiedTargetSdkVersion=28
01-21 18:29:20.889  1036  1150 D PkgPredictorService: pkg:com.sec.android.app.launcher activity:com.sec.android.app.launcher.activities.LauncherActivity thisTime:-1
01-21 18:29:20.889   574   574 I Layer   : id=164107[1] Destroyed Bounds for - com.example.StevensPin/com.example.StevensPin.MainActivity@0#0
01-21 18:29:20.889   574   574 I Layer   : id=164108[1] Destroyed SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.889   574   574 I Layer   : id=164109[1] Destroyed Background for -SurfaceView - com.example.StevensPin/com.example.StevensPin.MainActivity@ccdf4f2@0#0
01-21 18:29:20.890   574   574 I SurfaceFlinger: Display 0 HWC layers:
01-21 18:29:20.890   574   574 I SurfaceFlinger:     type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name
01-21 18:29:20.890   574   574 I SurfaceFlinger: ------------+--------------+------+-----------+----------------------------+---------------------+------
01-21 18:29:20.890   574   574 I SurfaceFlinger:      DEVICE | 0x7b38ce3640 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  110.0 |    0    0 1080  110 | StatusBar$_2845#0
01-21 18:29:20.890   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908e100 | 0000 | RGBA_8888 |   0.0    0.0   67.0  431.0 | 1013  307 1080  738 | com.samsung.android.app.cocktailbars[...]arservice.CocktailBarService$_5925#0
01-21 18:29:20.890   574   574 I SurfaceFlinger:      DEVICE | 0x7b570a2540 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  126.0 |    0 2154 1080 2280 | NavigationBar0$_2845#0
01-21 18:29:20.890   574   574 I SurfaceFlinger:
01-21 18:29:20.890  6344  6523 I SAMSUNGPAY: [Hint_ckl] isHomePackageRunning topPkgName = com.sec.android.app.launcher, topClsName = com.android.launcher3.Launcher, return true , se : true
01-21 18:29:20.890 28834 28834 I ng.android.loo: The ClassLoaderContext is a special shared library.
01-21 18:29:20.891  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] isSupportOperator : XEU, GB
01-21 18:29:20.891  6344  6344 I SAMSUNGPAY: [ServiceTypeTable] Upgrade - ServiceTypeTable - entryFromCountryIso - index is : 53, iso : GB
01-21 18:29:20.891  6344  6344 I SAMSUNGPAY: [Hint_IntroHintService] Hint Status - already invisible, skip hide : [4000000] - 4000000
01-21 18:29:20.892  1036  4093 V InputMethodManagerService: IME PreRendering MASTER flag: false, LowRam: false
01-21 18:29:20.892  1036  4093 V InputMethodManagerService: Unspecified window will hide input
01-21 18:29:20.892  1036  4093 V InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false
01-21 18:29:20.892  1036  4093 D InputMethodManagerService: DESKTOP MODE! : 2
01-21 18:29:20.892  1036  4093 D InputMethodManagerService: NOT IN KNOX DESKTOP MODE!
01-21 18:29:20.892  1036  4093 V InputMethodManagerService: getDisplayIdOfInputMethodWindowToBeAdded : 0
01-21 18:29:20.893  1036  4093 V InputMethodManagerService: switching to client: client=android.os.BinderProxy@aef641c keyguard=false
01-21 18:29:20.893  1036  4093 V InputMethodManagerService: Enabling: SessionState{uid 10154 pid 3267 method 6824d6e session a26ac0f channel ClientState{75ce35 uid=10154 pid=3267 displayId=0} (server)}
01-21 18:29:20.893  1036  4093 D InputMethodManagerService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
01-21 18:29:20.893  1036  4093 D InputTransport: Input channel constructed: 'ClientS', fd=396
01-21 18:29:20.893  1036  4093 D InputTransport: Input channel destroyed: 'ClientS', fd=396
01-21 18:29:20.893   574  3341 I SurfaceFlinger: id=164096 Removed Stack=1767#0 (44)
01-21 18:29:20.893  3267  3267 I ViewRootImpl@a03442c[LauncherActivity]: stopped(false) old=false
01-21 18:29:20.893  3267  3267 D Launcher: !@Boot_DEBUG: Launcher.onResume()
01-21 18:29:20.893  3267  3267 D Launcher: !@Boot_EBS_D: Launcher.onResume()
01-21 18:29:20.893  3267  3267 D ON_RESUME: superCall : 0
01-21 18:29:20.893  3267  3267 D Launcher: setGestureOngoingWithOtherActivity, isOngoing : false
01-21 18:29:20.893   686 13899 I CameraService: UidPolicy: No processes running for a uid=10333 disabled=0
01-21 18:29:20.893  3267  3267 D FastBitmapDrawable: animatePress : false  immediate : true invalidate : true
01-21 18:29:20.893  3267  3267 D AppsSearchBar: restoreCurrentCellLayoutAlpha: null
01-21 18:29:20.893  3267  3267 D PageOverlayMover: isMoving : false
01-21 18:29:20.894  1036  1149 W ActivityManager: setHasOverlayUi called on unknown pid: 17876
01-21 18:29:20.894 26605 26605 I HONEYBOARD: HoneyBoardService onFinishInput
01-21 18:29:20.894 26605 26605 I HONEYBOARD: a IC have been unbinded,  InputConnectionWrapper{idHash=#df67e42 mMissingMethods=}
01-21 18:29:20.895 26605 26605 I HONEYBOARD: HoneyBoardService [PF_CL][onFinishInput]  340615 ns
01-21 18:29:20.895 26605 26605 D InputMethodService: checkDisplayOfStartInputAndUpdateKeyboard display Id 0last 0
01-21 18:29:20.895 26605 26605 I HONEYBOARD: HoneyBoardService [IMI] onStartInput - caller pid : 3267 , caller uid : 10154
01-21 18:29:20.895 26605 26605 I HONEYBOARD: i updateConfigs
01-21 18:29:20.895  1036  1149 D GameManagerService: noteResumeComponent(), received resumed-component: com.sec.android.app.launcher
01-21 18:29:20.895  1036  2806 D GameManagerService: onLooperPrepared(), msg: { when=0 what=10000 obj=ComponentInfo{com.sec.android.app.launcher/com.android.launcher3.Launcher} target=com.samsung.android.game.GameManagerService$FgCheckThread$1 }
01-21 18:29:20.895  1036  2806 D GameManagerService: sendPauseConditionally() - mPrevNotiPackage: com.sec.android.app.myfiles
01-21 18:29:20.895  1036  2806 D GameManagerService: notifyResumePause(). of pkg: com.sec.android.app.launcher, type: 4, isMinimized: false, isTunableApp: false
01-21 18:29:20.895  1036  2806 D GameManagerService:   notifyResumePause(). do nothing. mKillNotiCount: 1
01-21 18:29:20.895  1036  2806 D GameManagerService:NetworkLimit: callRelease
01-21 18:29:20.895 26605 26605 I HONEYBOARD: i isEnabledNightMode : true
01-21 18:29:20.895 26605 26605 I HONEYBOARD: a IC have been binded, InputConnectionWrapper{idHash=#5780e53 mMissingMethods=}
01-21 18:29:20.895 26605 26605 I HONEYBOARD: h [EditorInputType]setPrivateImeOptionsToTable privateImeOptions ( null )
01-21 18:29:20.895 26605 26605 I HONEYBOARD: b incognitoMode : false
01-21 18:29:20.895  1036  1149 D GameManagerService: identifyGamePackage. com.sec.android.app.launcher, mCurrentUserId: 0, callerUserId: 0
01-21 18:29:20.895  1036  1149 D GamePkgDataHelper: getGamePkgData(). com.sec.android.app.launcher
01-21 18:29:20.896  1036 14665 D WifiLowLatency.LlHandler: MSG_TRAFFIC_POLL_ENABLE 0
01-21 18:29:20.896  1036  1149 D GamePkgDataHelper: getSosPolicy(). com.sec.android.app.launcher
01-21 18:29:20.896 26605 26605 I HONEYBOARD: a needOff = true , isJpnConvertState : false, isForceOff = true
01-21 18:29:20.896  1036  4093 D SdpManagerService: Not an enterprise user : 0
01-21 18:29:20.896  1036  4093 I chatty  : uid=1000(system) Binder:1036_10 identical 1 line
01-21 18:29:20.896  1036  4093 D SdpManagerService: Not an enterprise user : 0
01-21 18:29:20.896 26605 26605 I HONEYBOARD: h getDefaultInputRange : UNKNOWN
01-21 18:29:20.896 26605 26605 I HONEYBOARD: a currentState : 0
01-21 18:29:20.896 26605 26605 I HONEYBOARD: a [UpdatePolicy] [post] a: 0 cl: 65538 kit: [0/0] vt: 0 ir: 1
01-21 18:29:20.897 26605 26605 I HONEYBOARD: HoneyBoardService [PF_OP][onStartInput]  2415077 ns
01-21 18:29:20.897  1036  4093 D GamePkgDataHelper: getSosPolicy(). com.sec.android.app.launcher
01-21 18:29:20.898  3267  3267 D SPayUpdater: updateSpayHandler, show = false, currentDefaultPage = false
01-21 18:29:20.898  3267  3267 D ON_RESUME: End : 5
01-21 18:29:20.898  1036  1144 D WindowManager: setSystemUiVisibility: displayId=0, vis=0x8708, fullVis=0x0, dockVis=0x0, win=Window{6ec1d28 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}
01-21 18:29:20.898  6344  6344 I SAMSUNGPAY: [Hint_IntroHintService] onReceive() action=com.sec.android.app.launcher.intent.action.UPDATE_SPAY_HANDLER
01-21 18:29:20.898  3267 13338 D Launcher: DisplayMetrics from Resources : DisplayMetrics{density=2.625, width=1080, height=2047, scaledDensity=2.8875, xdpi=397.56448, ydpi=393.95853}
01-21 18:29:20.898  6344  6344 I SAMSUNGPAY: [Hint_IntroHintService] home change, s home : false , default : false , gesture : false , s result : false , prev : false
01-21 18:29:20.898  3267 13338 D Launcher: realMetrics from Wm : DisplayMetrics{density=2.625, width=1080, height=2280, scaledDensity=2.625, xdpi=397.56448, ydpi=393.95853}
01-21 18:29:20.898  3267 13338 D Launcher: DeviceProfile, isLand : false, isMultiWin :false, availableWidthPx : 1080, availableHeightPx : 2154
01-21 18:29:20.899  1036  1036 I Pageboost: package null
01-21 18:29:20.899  3267  3267 D UserEvent:
01-21 18:29:20.899  3267  3267 D UserEvent: -----------------------------------------------------
01-21 18:29:20.899  3267  3267 D UserEvent: action:RESUME
01-21 18:29:20.899  3267  3267 D UserEvent:  Source child:ALLAPPS
01-21 18:29:20.899  3267  3267 D UserEvent:  Elapsed container 64425 ms, session 64425 ms, action 0 ms
01-21 18:29:20.899  3267  3267 D UserEvent:
01-21 18:29:20.899  3267  3267 D Launcher.NotificationListener: setNotificationsChangedListener connected : true created : true
01-21 18:29:20.899  3267  3267 D BadgeCountUpdaterImpl: onNotificationsChangedConnected
01-21 18:29:20.899  3267  3267 D Launcher.NotificationListener: registerObserver this is not notificationService!!
01-21 18:29:20.899  3418  3418 E pageboostd: Received HALT command code 2
01-21 18:29:20.899  3267  3267 V SettingsHelper: *** register listener for com.android.launcher3.notification.-$$Lambda$NotificationListener$TPumyTwU0XeoXYvudWsC9Oq4HgU@b6d48eb
01-21 18:29:20.899  3267  3267 V SettingsHelper: *** register listener for com.android.launcher3.notification.-$$Lambda$NotificationListener$rJMoivvsqzlKdmqkNLlyopK1Us8@a81d648
01-21 18:29:20.899  3267  3267 D Launcher.NotificationListener: onNotificationFullRefresh
01-21 18:29:20.899  3267  3633 D InstallPairAppsReceiver: Pair apps key is null
01-21 18:29:20.901  3954  4094 D SDHMS:va: writeSysfs:: path = /sys/power/execution_mode_change, value = 0
01-21 18:29:20.901  3954  4094 D SDHMS:va: writeSysfs:: path = /sys/power/boost_mode_change, value = 1
01-21 18:29:20.904   574   574 I Layer   : id=164096[1] Destroyed Stack=1767#0
01-21 18:29:20.905  1036  5208 D InputDispatcher: Focus entered window (3267): 6ec1d28 in display 0 0
01-21 18:29:20.906  2845  2845 D LightBarController: onNavigationVisibilityChanged : vis = 8708, nbModeChanged = false navigationBarMode = 4, navbarColorManagedByIme = false
01-21 18:29:20.906  2845  2845 V NavBarStoreImpl: handleEvent [EventType] GET_BOOL_TINT_CONTROLLER_ENABLED [Module] LightBarController
01-21 18:29:20.906  2845  2845 V NavBarStoreImpl: --[Band]COLOR_PACK_GET_TINT_SAMPLING_ENABLED
01-21 18:29:20.906  2845  2845 V NavBarStoreImpl: ----apply(SET_TINT_SAMPLING_ENABLED)
01-21 18:29:20.906  2845  2845 V NavBarStoreImpl: getResult(GET_BOOL_TINT_CONTROLLER_ENABLED)=false
01-21 18:29:20.907  3267 26604 I OpenGLRenderer: doUpdatePositionAsync is called and callVoidMethod
01-21 18:29:20.907  1036  5208 D WindowManager: adjustSystemUiVisibilityLw: displayId=0, vis=0x8708, resetVis=0x0, clearVis=0x0
01-21 18:29:20.907  1036  5208 D InputManager-JNI: setSystemUiVisibility dexmode: false changed: true displayid: 0 visibility: 0x8708 DD: 0x8708 OD: 0x0
01-21 18:29:20.907  3267  3267 D Launcher: onEnterAnimationComplete.
01-21 18:29:20.907  3267  3267 D Launcher: onEnterAnimationComplete.
01-21 18:29:20.908  5925  5925 I TrayStateController: onSystemUiVisibilityChange : 34568 0
01-21 18:29:20.911   574   574 I SurfaceFlinger: Display 0 HWC layers:
01-21 18:29:20.911   574   574 I SurfaceFlinger:     type    |    handle    | flag |  format   |   source crop (l,t,r,b)    |         frame       | name
01-21 18:29:20.911   574   574 I SurfaceFlinger: ------------+--------------+------+-----------+----------------------------+---------------------+------
01-21 18:29:20.911   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908c080 | 0002 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.android.systemui.ImageWallpaper$_2845#0
01-21 18:29:20.911   574   574 I SurfaceFlinger:      CLIENT | 0x7b3908d340 | 0000 | RGBA_8888 |   0.0    0.0 1080.0 2280.0 |    0    0 1080 2280 | com.sec.android.app.launcher/com.sec[...]ties.LauncherActivity$_3267#0 (Blur)
01-21 18:29:20.911   574   574 I SurfaceFlinger:      DEVICE | 0x7b38ce3640 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  110.0 |    0    0 1080  110 | StatusBar$_2845#0
01-21 18:29:20.911   574   574 I SurfaceFlinger:      DEVICE | 0x7b3908e100 | 0000 | RGBA_8888 |   0.0    0.0   67.0  431.0 | 1013  307 1080  738 | com.samsung.android.app.cocktailbars[...]arservice.CocktailBarService$_5925#0
01-21 18:29:20.911   574   574 I SurfaceFlinger:      DEVICE | 0x7b570a2540 | 0000 | RGBA_8888 |   0.0    0.0 1080.0  126.0 |    0 2154 1080 2280 | NavigationBar0$_2845#0
01-21 18:29:20.911   574   574 I SurfaceFlinger:
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.facebook.katana missingTitleAndText : true isGroupHeader : true
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.facebook.katana missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 I chatty  : uid=10154(com.sec.android.app.launcher) launcher-loader identical 2 lines
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.facebook.katana missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.zhiliaoapp.musically missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.google.android.youtube missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 I chatty  : uid=10154(com.sec.android.app.launcher) launcher-loader identical 3 lines
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.google.android.youtube missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.microsoft.skydrive missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.linkedin.android missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 I chatty  : uid=10154(com.sec.android.app.launcher) launcher-loader identical 1 line
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.linkedin.android missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.whatsapp missingTitleAndText : false isGroupHeader : true
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.whatsapp missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.whatsapp missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.samsung.android.app.tips missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.samsung.android.app.smartcapture missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: shouldBeFilteredOut : com.amazon.mShop.android.shopping missingTitleAndText : false isGroupHeader : false
01-21 18:29:20.925  3267  3633 D Launcher.NotificationListener: Full refresh isConnected : true active size : 19
01-21 18:29:20.925  3267  3267 D PopupDataProvider: onNotificationFullRefresh prev dotInfoSize : 9
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.facebook.katana count : 15
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.zhiliaoapp.musically count : 1
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.microsoft.skydrive count : 1
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.samsung.android.app.smartcapture count : 1
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.amazon.mShop.android.shopping count : 1
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.google.android.youtube count : 477
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.samsung.android.app.tips count : 1
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.whatsapp count : 19
01-21 18:29:20.926  3267  3267 D PopupDataProvider: refresh badge  package : com.linkedin.android count : 7
01-21 18:29:20.936 28834 28834 I SmSettingSearchProvider: version : 1100700010, lang : en_GB
01-21 18:29:20.937 28834 28834 I CapsuleProvider_1.0.16: releasing initialize wait lock.
01-21 18:29:20.938 28834 28834 I CapsuleProvider_1.0.16: onCreate
01-21 18:29:20.939 28834 28834 D DIAGMON_SDK[605029]: setDeviceId :
01-21 18:29:20.942  1036  4724 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:20.944  1036  4724 D SecContentProvider: query(), uri = 17 selection = isPowerOffAllowed
01-21 18:29:20.944  1036  4724 D SecContentProvider: called from android.uid.system:1000
01-21 18:29:20.944  1036  4724 D API test: getContainerInfo: value is
01-21 18:29:20.944  1036  4724 D RestrictionPolicy: isExistEFSFile : false
01-21 18:29:20.944  1036  4724 D RestrictionPolicy: isPowerOffAllowed : true
01-21 18:29:20.954 28834 28834 I DMT-StubUpdateUtils: current : 1100700010, market : 0
01-21 18:29:20.955  1036  2898 D MdnieScenarioControlService:  packageName : com.sec.android.app.launcher    className : com.android.launcher3.Launcher
01-21 18:29:20.955  1036  2898 V MdnieScenarioControlService: setUIMode from UI function(3)
01-21 18:29:20.955 28834 28834 I DMT-StubUpdateUtils: current : 701100110, market : 0
01-21 18:29:20.956 28834 28834 D SamsungAnalytics605029: [Utils] dma pkg:670401000
01-21 18:29:20.960 28834 28834 D SamsungAnalytics605029: [Utils] dma pkg:670401000
01-21 18:29:20.960 28834 28834 D SamsungAnalytics605029: AppVersion = 11.0.07.0, prefAppVerison = 11.0.07.0, beforeSendCommonTime = 1611080383438, success = true
01-21 18:29:20.960 28834 28834 D SamsungAnalytics605029: newThread on Executor
01-21 18:29:20.963 28834 28834 D SamsungAnalytics605029: [Tracker] Tracker start:6.05.029 , senderType : 3
01-21 18:29:20.964 28834 28866 D SamsungAnalytics605029: [Utils] dma pkg:670401000
01-21 18:29:20.964 28834 28866 D SamsungAnalytics605029: [Setting Sender] No status log
01-21 18:29:20.984 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] :  setConfiguration type : DEFAULT
01-21 18:29:20.987 28834 28834 I DIAGMON_SDK[605029][dc60qlc6ri] : generated SR object
01-21 18:29:20.987 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : Diagmon Logger Init
01-21 18:29:20.988 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : MAIN_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_main.log
01-21 18:29:20.988 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : CRASH_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon.log
01-21 18:29:20.988 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : EVENT_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_event.log
01-21 18:29:20.988 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : THREAD_STACK_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_thread.log
01-21 18:29:20.988 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : MEMORY_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_memory.log
01-21 18:29:20.989 28834 28834 D DIAGMON_SDK[605029][dc60qlc6ri] : STORAGE_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_storage.log
01-21 18:29:20.991 28834 28834 I BatteryReceiver: Received : com.samsung.android.sm.ACTION_ERROR
01-21 18:29:20.992 28834 28834 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1632 android.content.ContextWrapper.startService:683 com.samsung.android.sm.battery.receiver.BatteryReceiver.c:6 com.samsung.android.sm.battery.receiver.BatteryReceiver.onReceive:16 android.app.ActivityThread.handleReceiver:4229
01-21 18:29:20.995  1036  4724 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
01-21 18:29:20.995  1036  1155 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
01-21 18:29:20.996  1036  1155 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.stats.service.DropBoxEntryAddedReceiver
01-21 18:29:20.996  1036  1155 W BroadcastQueue: Background execution not allowed: receiving Intent { act=android.intent.action.DROPBOX_ENTRY_ADDED flg=0x10 (has extras) } to com.google.android.gms/.chimera.GmsIntentOperationService$PersistentTrustedReceiver
01-21 18:29:20.996  1036  1155 I ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.samsung.android.dqagent user:0
01-21 18:29:20.996  1036  1155 D ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.996  1036  1155 D ActivityManager: package  com.samsung.android.dqagent, user - 0 is SDcard whitelisted
01-21 18:29:20.997  1036  1155 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.android.dqagent user:0
01-21 18:29:20.997  1036  1155 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:20.997  1036  1155 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.android.dqagent user:0
01-21 18:29:20.997  1036  1155 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:21.006   522   522 D Zygote  : Forked child process 28874
01-21 18:29:21.008 28874 28874 E Zygote  : isWhitelistProcess - Process is Whitelisted
01-21 18:29:21.008 28874 28874 E Zygote  : accessInfo : 1
01-21 18:29:21.009 28834 28871 D AppErrorNotification: errorType : 24, process : com.example.StevensPin , uid : 0
01-21 18:29:21.012  1036  1156 I ActivityManager: Start proc 28874:com.samsung.android.dqagent/1000 for broadcast {com.samsung.android.dqagent/com.samsung.android.dqagent.receiver.DQADataReceiver}
01-21 18:29:21.013 28874 28874 E android.dqagen: Not starting debugger since process cannot load the jdwp agent.
01-21 18:29:21.019 28874 28874 D ActivityThread: setConscryptValidator
01-21 18:29:21.019 28874 28874 D ActivityThread: setConscryptValidator - put
01-21 18:29:21.021  1036  4093 I ActivityManager: DSS OFF for com.samsung.android.dqagent
01-21 18:29:21.025  1036  2783 W Looper  : Drained
01-21 18:29:21.030  1036  4724 I ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.samsung.android.lool user:0
01-21 18:29:21.030  1036  4724 D ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed.
01-21 18:29:21.030  1036  4724 D ActivityManager: package  com.samsung.android.lool, user - 0 is SDcard whitelisted
01-21 18:29:21.030  1036  4724 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.android.lool user:0
01-21 18:29:21.030  1036  4724 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:21.030  1036  4724 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.samsung.android.lool user:0
01-21 18:29:21.030  1036  4724 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:21.030  1036  4724 W ActivityManager: wait for provider publish: waiters=1 callerApp=ProcessRecord{578b504 28834:com.samsung.android.lool/1000} cpr=ContentProviderRecord{a47aed u0 com.samsung.android.lool/com.samsung.android.sm.database.SmProvider}
01-21 18:29:21.037   522   522 D Zygote  : Forked child process 28892
01-21 18:29:21.038 28874 28874 D ApplicationLoaders: Returning zygote-cached class loader: /system/framework/android.hidl.base-V1.0-java.jar
01-21 18:29:21.038 28874 28874 D ApplicationLoaders: Returning zygote-cached class loader: /system/framework/android.hidl.manager-V1.0-java.jar
01-21 18:29:21.038 28874 28874 D ApplicationLoaders: Returning zygote-cached class loader: /system/framework/android.hidl.base-V1.0-java.jar
01-21 18:29:21.040 28892 28892 E Zygote  : isWhitelistProcess - Process is Whitelisted
01-21 18:29:21.041  1036  1156 I ActivityManager: Start proc 28892:com.samsung.android.sm.provider/1000 for content provider {com.samsung.android.lool/com.samsung.android.sm.database.SmProvider}
01-21 18:29:21.041 28892 28892 E Zygote  : accessInfo : 1
01-21 18:29:21.049 28892 28892 E oid.sm.provide: Not starting debugger since process cannot load the jdwp agent.
01-21 18:29:21.062 28892 28892 D ActivityThread: setConscryptValidator
01-21 18:29:21.062 28892 28892 D ActivityThread: setConscryptValidator - put
01-21 18:29:21.063  1036  4093 I ActivityManager: DSS OFF for com.samsung.android.lool
01-21 18:29:21.078 28892 28892 I oid.sm.provide: The ClassLoaderContext is a special shared library.
01-21 18:29:21.080 28874 28874 D DQA     : Policy is still valid
01-21 18:29:21.088 28892 28892 I oid.sm.provide: The ClassLoaderContext is a special shared library.
01-21 18:29:21.090  1036  4093 D CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 2530000  uid : 1000  pid : 1036  tag : APP_LAUNCH@CPU_MIN@7
01-21 18:29:21.095 28892 28892 I oid.sm.provide: The ClassLoaderContext is a special shared library.
01-21 18:29:21.108 28874 28874 D libmdf  : libmdf v2.9.0.0 On 64bit PLATFORM
01-21 18:29:21.123   697 28914 D keystore: [getKeyCharacteristics::end]
01-21 18:29:21.126 28874 28874 D DQA     : key found:true
01-21 18:29:21.128  1036  4093 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:21.129   697 28916 D keystore: [getKeyCharacteristics::end]
01-21 18:29:21.135   484   484 W keymaster_tee: [WRN]begin req PARAMS: A32 B2 P64
01-21 18:29:21.137   697 28917 D keystore: [BEGIN::end]
01-21 18:29:21.139   697 28918 D keystore: [UPDATE::end]
01-21 18:29:21.141   697 28919 D keystore: [FINISH::end]
01-21 18:29:21.169 28834 28871 W PkgUtils: p: com.google.android.youtube, u:0
01-21 18:29:21.170 28892 28892 I DMT-StubUpdateUtils: current : 1100700010, market : 0
01-21 18:29:21.170 28892 28892 I DMT-StubUpdateUtils: current : 701100110, market : 0
01-21 18:29:21.180 28892 28892 D SamsungAnalytics605029: [Utils] dma pkg:670401000
01-21 18:29:21.193 28892 28892 D SamsungAnalytics605029: [Utils] dma pkg:670401000
01-21 18:29:21.194 28892 28892 D SamsungAnalytics605029: AppVersion = 11.0.07.0, prefAppVerison = 11.0.07.0, beforeSendCommonTime = 1611080383438, success = true
01-21 18:29:21.194 28892 28892 D SamsungAnalytics605029: newThread on Executor
01-21 18:29:21.196 28892 28892 D SamsungAnalytics605029: [Tracker] Tracker start:6.05.029 , senderType : 3
01-21 18:29:21.196 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 91
01-21 18:29:21.207 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 117
01-21 18:29:21.217 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 67
01-21 18:29:21.221 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 107
01-21 18:29:21.224 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 115
01-21 18:29:21.227 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] :  setConfiguration type : DEFAULT
01-21 18:29:21.227 28892 28922 D SamsungAnalytics605029: [Utils] dma pkg:670401000
01-21 18:29:21.228 28892 28922 D SamsungAnalytics605029: [Setting Sender] No status log
01-21 18:29:21.228 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 101
01-21 18:29:21.233 28834 28871 I BatteryStatsManager: getWeeklyBatteryStats batteryStatsDB.size() : 82
01-21 18:29:21.236 28892 28892 I DIAGMON_SDK[605029][dc60qlc6ri] : generated SR object
01-21 18:29:21.237 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : Diagmon Logger Init
01-21 18:29:21.237 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : MAIN_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_main.log
01-21 18:29:21.237 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : CRASH_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon.log
01-21 18:29:21.237 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : EVENT_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_event.log
01-21 18:29:21.238 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : THREAD_STACK_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_thread.log
01-21 18:29:21.238 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : MEMORY_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_memory.log
01-21 18:29:21.238 28892 28892 D DIAGMON_SDK[605029][dc60qlc6ri] : STORAGE_LOG_PATH : /data/user/0/com.samsung.android.lool/exception/diagmon_storage.log
01-21 18:29:21.255 28874 28874 D DQA     : [SemCSDBOpenHelper] Getting DB object succeeded
01-21 18:29:21.283 28874 28874 D DQA     : IS_ARGEE: true, IS_PP_FIRST: true, needAgreement: false
01-21 18:29:21.283 28874 28874 D DQA     : DB Health Check
01-21 18:29:21.283 28874 28874 D SamsungAnalytics:DQA: [Tracker] Tracker start:DQA_v0.1
01-21 18:29:21.284 28874 28874 D DQA     : create DQA mode: USR
01-21 18:29:21.287 28874 28874 D DQA     : get data intent
01-21 18:29:21.288 28874 28874 D DQA     : [Manager] Manager Instance is created - UseDatabase true
01-21 18:29:21.292   697 28928 D keystore: [getKeyCharacteristics::end]
01-21 18:29:21.292 28874 28874 D DQA     : key found:true
01-21 18:29:21.296   697 28929 D keystore: [getKeyCharacteristics::end]
01-21 18:29:21.298   484   484 W keymaster_tee: [WRN]begin req PARAMS: A32 B2 P64
01-21 18:29:21.147  1036  4093 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:21.299  1036  2851 I Pageboost: Launcher Page Up
01-21 18:29:21.299  1036  2851 E Pageboost: init for SI Policy is not done yet : global true sysint false
01-21 18:29:21.300   697 28931 D keystore: [BEGIN::end]
01-21 18:29:21.301  1036  2851 I Pageboost: IO Prefetch for : com.whatsapp
01-21 18:29:21.301  1036  2851 I Pageboost: IO Prefetch for : com.zhiliaoapp.musically
01-21 18:29:21.301  1036  2851 I Pageboost: IO Prefetch for : com.azure.authenticator
01-21 18:29:21.302   697 28932 D keystore: [UPDATE::end]
01-21 18:29:21.301  3418 28933 E pageboostd: prefetch start : app comwhatsapp
01-21 18:29:21.304  3418 28933 E pageboostd: comwhatsapp, amt 905216 scnt 8 fcnt 35
01-21 18:29:21.304  3418 28933 E pageboostd: prefetch end : app comwhatsapp data_amount 905216
01-21 18:29:21.304  3418 28934 E pageboostd: prefetch start : app comzhiliaoappmusically
01-21 18:29:21.305  1036  1149 W ActivityTaskManager: Activity top resumed state loss timeout for ActivityRecord{275a216 u0 com.example.StevensPin/.MainActivity t-1 f}
01-21 18:29:21.305   697 28936 D keystore: [FINISH::end]
01-21 18:29:21.319  3418 28934 E pageboostd: comzhiliaoappmusically, amt 38223872 scnt 35 fcnt 114
01-21 18:29:21.319  3418 28934 E pageboostd: prefetch end : app comzhiliaoappmusically data_amount 38223872
01-21 18:29:21.319  3418 28935 E pageboostd: prefetch start : app comazureauthenticator
01-21 18:29:21.322  3418 28935 E pageboostd: comazureauthenticator, amt 10489856 scnt 16 fcnt 38
01-21 18:29:21.322  3418 28935 E pageboostd: prefetch end : app comazureauthenticator data_amount 10489856
01-21 18:29:21.359 28874 28874 D DQA     : [SemDBOpenHelper] db success
01-21 18:29:21.360 28874 28874 D DQA     : [SemDBOpenHelper] Getting DB object succeeded
01-21 18:29:21.360 28874 28874 D DQA     : [Manager] Manager Instance is not null
01-21 18:29:21.360 28874 28874 D DQA     : save data
01-21 18:29:21.365 28874 28874 D SamsungAnalytics:DQA: [Log Sender] insert
01-21 18:29:21.389  1036  4724 I ActivityManager: Killing 22524:com.samsung.android.game.gos/u0a83 (adj 999): empty #37
01-21 18:29:21.434 28834 28871 I BatteryStatsManager: weekly result.size() : 7
01-21 18:29:21.460   522   522 I Zygote  : Process 22524 exited due to signal 9 (Killed)
01-21 18:29:21.462   686  3003 I CameraService: UidPolicy: No processes running for a uid=10083 disabled=0
01-21 18:29:21.463  1036  1157 I libprocessgroup: Successfully killed process cgroup uid 10083 pid 22524 in 70ms
01-21 18:29:21.536  1036  2147 I SensorService: [REARLIGHT] lux value : 34, code value : 0
01-21 18:29:21.601 28834 28871 W ng.android.loo: resources.arsc in APK '/data/app/com.facebook.katana-SZYNDP8hC00Q2Gv9kFWYbQ==/base.apk' is compressed.
01-21 18:29:21.684  1036  1036 D CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT  frequency : 2530000  uid : 1000  pid : 1036  tag : AMS_APP_HOME@CPU_MIN@54
01-21 18:29:21.720 28834 28871 W ng.android.loo: resources.arsc in APK '/data/app/com.samsung.android.visionintelligence-mU8PuHskz4yEknQ-W90MWg==/base.apk' is compressed.
01-21 18:29:21.739  1036  2185 D SamsungAlarmManager: Expired : 4
01-21 18:29:21.740  1036  2185 V SamsungAlarmManager: Sending to uid : 10092 action=com.google.android.gms.gcm.HEARTBEAT_ALARM alarm=Alarm{2ef462b type 2 when 3032616202 com.google.android.gms}
01-21 18:29:21.752  1036  1144 D PowerManagerService: [api] setDeviceIdleTempWhitelist: appids: [0]10092  (uid: 1000 pid: 1036)
01-21 18:29:21.752  1036  2185 I SamsungAlarmManager: setLocked to kernel - T:2 / 20210121T182927, SetElapsed=3032621829, nowELAPSED=3032616215
01-21 18:29:21.753  1036  4724 D SamsungAlarmManager: Cancel Alarm calling from uid:10092 pid :28045 / op:PendingIntent{56bbc21: PendingIntentRecord{831df22 com.google.android.gms broadcastIntent}}
01-21 18:29:21.755 28045  4359 E WakeLock: GCM_HB_ALARM release without a matched acquire!
01-21 18:29:21.755  1036  5208 D SamsungAlarmManager: setExact Intent (T:2/F:5/AC:false) 20210121T183021 - CU:10092/CP:28045
01-21 18:29:21.755  1036  5208 I SamsungAlarmManager: setLocked to kernel - T:2 / 20210121T182927, SetElapsed=3032621829, nowELAPSED=3032616218
01-21 18:29:21.823  1036  5208 D SamsungAlarmManager: Cancel Alarm calling from uid:10092 pid :28045 / op:PendingIntent{4b75846: PendingIntentRecord{831df22 com.google.android.gms broadcastIntent}}
01-21 18:29:21.825  1036  5208 I SamsungAlarmManager: setLocked to kernel - T:2 / 20210121T182927, SetElapsed=3032621829, nowELAPSED=3032616288
01-21 18:29:21.828  1036  5208 D SamsungAlarmManager: setExact Intent (T:2/F:5/AC:false) 20210121T183511 - CU:10092/CP:28045
01-21 18:29:21.829  1036  5208 I SamsungAlarmManager: setLocked to kernel - T:2 / 20210121T182927, SetElapsed=3032621829, nowELAPSED=3032616292
01-21 18:29:21.858  1036  4290 E WifiService: 10290 has no permission about LOCAL_MAC_ADDRESS
01-21 18:29:21.871 28834 28871 W ng.android.loo: resources.arsc in APK '/data/app/com.instagram.android-fwumo_V1d1yUKxAALzAg-Q==/base.apk' is compressed.
01-21 18:29:21.880   574  2224 E NativeSemDvfsGpuManager: release:: Start
01-21 18:29:21.880   574  2224 E NativeSemDvfsGpuManager: release():: mIsAcquired = 1 , mName = GPU  , mTagName : SurfaceFlinger
01-21 18:29:21.882   574  2224 E NativeCustomFrequencyManager: [NativeCFMS] BpCustomFrequencyManager::releaseGPU()
01-21 18:29:21.882   574  2224 E NativeSemDvfsGpuManager: release:: End
01-21 18:29:21.902  1036 14068 D GameManagerService: identifyGamePackage. com.sec.android.app.launcher, mCurrentUserId: 0, callerUserId: 0
01-21 18:29:21.902  1036 14068 D GamePkgDataHelper: getGamePkgData(). com.sec.android.app.launcher
01-21 18:29:21.978 28834 28871 W ng.android.loo: resources.arsc in APK '/data/app/com.facebook.orca-l2aAWX5VPa9oIOoHqavdDQ==/base.apk' is compressed.
01-21 18:29:22.078 28834 28871 V FasUtils: There is com.example.StevensPin [10333] in FAS table
01-21 18:29:22.097 28834 28871 D BatteryIssueDaoImpl: deleteAnomalyPastSpecificDay
01-21 18:29:22.098  1036  5208 I GenerationRegistry: mBackingStore.isClosed() : false
01-21 18:29:22.099 28834 28871 I BatteryIssueDaoImpl: set badge_for_dm_battery : 0
01-21 18:29:22.126 28834 28871 W AppErrorNotification: Skip. com.example.StevensPin is not notiable item
01-21 18:29:22.127 28834 28834 I SM_UTILS: smBadge - batteryCnt : 0, malwareApp : 0, aasaCnt 0
01-21 18:29:22.131  1036  4290 D PackageManager: setEnabledSetting : userId = 0 packageName = com.samsung.android.lool cmp = com.samsung.android.sm.battery.BatteryActivityForCard newState = 0 callingPackage = 1000/com.samsung.android.lool
01-21 18:29:22.136  1036  2147 I SensorService: [REARLIGHT] lux value : 35, code value : 0
01-21 18:29:22.137  1036  4290 D PackageManager: setEnabledSetting : userId = 0 packageName = com.samsung.android.lool cmp = com.samsung.android.sm.security.SecurityActivityForCard newState = 0 callingPackage = 1000/com.samsung.android.lool
01-21 18:29:22.142  1036  4290 D PackageManager: setEnabledSetting : userId = 0 packageName = com.samsung.android.lool cmp = com.samsung.android.sm.scoreboard.ScoreBoardActivityForCard newState = 0 callingPackage = 1000/com.samsung.android.lool
01-21 18:29:22.148  1036  4290 D SettingsProvider: isChangeAllowed() : name = badge_for_dm_scoreboard
01-21 18:29:22.148 28834 28834 I SM_UTILS: badge_for_dm_scoreboard badge_count=0 putInt result=true
01-21 18:29:22.148  1036  4290 D SettingsProvider: isChangeAllowed() : name = badge_for_dm_battery
01-21 18:29:22.148 28834 28834 I SM_UTILS: badge_for_dm_battery badge_count=0 putInt result=true
01-21 18:29:22.149  1036  4290 D SettingsProvider: isChangeAllowed() : name = badge_for_dm_security
01-21 18:29:22.149 28834 28834 I SM_UTILS: badge_for_dm_security badge_count=0 putInt result=true
01-21 18:29:22.161  1036  4290 I ActivityManager: Killing 26301:com.microsoft.appmanager/u0a157 (adj 999): empty #37
01-21 18:29:22.161  1036  4290 I ActivityManager: Killing 26250:com.android.documentsui/u0a70 (adj 999): empty #38
01-21 18:29:22.266   522   522 I Zygote  : Process 26250 exited due to signal 9 (Killed)
01-21 18:29:22.271   686  3003 I CameraService: UidPolicy: No processes running for a uid=10070 disabled=0
01-21 18:29:22.283  1036  4728 D ConnectivityService: ConnectivityService NetworkRequestInfo binderDied(NetworkRequest [ LISTEN id=21021, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&FOREGROUND Uid: 10157] ], android.os.BinderProxy@b0a68cc)
01-21 18:29:22.284   522   522 I Zygote  : Process 26301 exited due to signal 9 (Killed)
01-21 18:29:22.285  1036  2719 D ConnectivityService: releasing NetworkRequest [ LISTEN id=21021, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&FOREGROUND Uid: 10157] ] (release request)
01-21 18:29:22.286  1036  1157 I libprocessgroup: Successfully killed process cgroup uid 10157 pid 26301 in 122ms
01-21 18:29:22.287  1036  1157 I libprocessgroup: Successfully killed process cgroup uid 10070 pid 26250 in 0ms
01-21 18:29:22.288   686  3003 I CameraService: UidPolicy: No processes running for a uid=10157 disabled=0
01-21 18:29:22.406  1036  3028 D CustomFrequencyManagerService: FrequencyrequestList.getNextSchedTuneBoostRequest, index: 0
01-21 18:29:22.737  1036  2147 I SensorService: [REARLIGHT] lux value : 36, code value : 0
01-21 18:29:22.910  3408  3408 I io_stats: !@   8,0 r 17649704 577750012 w 19617944 385059516 d 1657059 217234192 f 5956478 8731001 iot 15875716 12166935 th 102400 102400 65284 pt 152 inp 0 0 1119578.374
01-21 18:29:23.009   522   522 I zygote  : Delayed USAP Pool refill. New USAPs: 1
01-21 18:29:23.036   522   522 D Zygote  : Forked child process 28941
01-21 18:29:23.318  1036  2171 D SensorHubManager: onGetSensorHubDataLocked: library(4) = 1, 1, 7, 0
01-21 18:29:23.319  1036  2172 D CAE     : onGetSensorHubData(SensorHubParserProvider.java:91) - onGetSensorHubData Event [event buffer len :4], AP_WAKEUP
01-21 18:29:23.319  1036  2172 I CAE     : parse(SensorHubParserProvider.java:192) - buffer size = 4
01-21 18:29:23.319  1036  2172 I CAE     : parse(SensorHubParserProvider.java:203) - 1, 1, 7, 0,
01-21 18:29:23.319  1036  2172 D CAE     : display(ContextProvider.java:375) - ================= AUTO_ROTATION =================
01-21 18:29:23.320  1036  2172 I CAE     : display(ContextProvider.java:391) - Angle=[0]
01-21 18:29:23.320  1036  2177 D SemContextService: Service.updateContext() : service = Auto Rotation
01-21 18:29:23.321  1036  1144 D SemContextManager: onSemContextChanged() : event = Auto Rotation Angle : 0
01-21 18:29:23.321  1036  1144 D SemContextManager: AutoRotationEvent : Angle = 0
01-21 18:29:23.321  1036  1144 D WindowOrientationListener: OrientationSensorJudge.onSemContextChanged, Rotation: 0
01-21 18:29:23.322  1036  1144 V WindowManager: rotationForOrientation(orient=5, last=0); user=0 USER_ROTATION_LOCKED
01-21 18:29:23.322  1036  1144 V WindowOrientationListener: getProposedRotation: 0
01-21 18:29:23.323  1036  1144 V WindowManager: Computed rotation=0 for display id=0 based on lastOrientation=5 and oldRotation=0, caller=com.android.server.wm.DisplayContent.updateRotationUnchecked:1578 com.android.server.wm.WindowManagerService.updateRotationUnchecked:4297 com.android.server.wm.WindowManagerService.updateRotation:4278 com.android.server.wm.DisplayRotation$OrientationListener$UpdateRunnable.run:1065 android.os.Handler.handleCallback:883 android.os.Handler.dispatchMessage:100
01-21 18:29:23.350   574   574 I SurfaceFlinger: SFWD update time=1119578815201327
01-21 18:29:23.408  1036  2851 I Pageboost: Launcher App Execution
01-21 18:29:23.408  1036  2851 E Pageboost: ioinfo read failed
01-21 18:29:23.437  1036  2171 D SensorHubManager: onGetSensorHubDataLocked: library(4) = 1, 1, 7, -1
01-21 18:29:23.438  1036  2172 D CAE     : onGetSensorHubData(SensorHubParserProvider.java:91) - onGetSensorHubData Event [event buffer len :4], AP_WAKEUP
01-21 18:29:23.438  1036  2172 I CAE     : parse(SensorHubParserProvider.java:192) - buffer size = 4
01-21 18:29:23.438  1036  2172 I CAE     : parse(SensorHubParserProvider.java:203) - 1, 1, 7, -1,
01-21 18:29:23.438  1036  2172 D CAE     : display(ContextProvider.java:375) - ================= AUTO_ROTATION =================
01-21 18:29:23.438  1036  2172 I CAE     : display(ContextProvider.java:391) - Angle=[-1]
01-21 18:29:23.439  1036  2177 D SemContextService: Service.updateContext() : service = Auto Rotation
01-21 18:29:23.439  1036  1144 D SemContextManager: onSemContextChanged() : event = Auto Rotation Angle : -1
01-21 18:29:23.439  1036  1144 D SemContextManager: AutoRotationEvent : Angle = -1
01-21 18:29:23.439  1036  1144 D WindowOrientationListener: OrientationSensorJudge.onSemContextChanged, Rotation: -1
01-21 18:29:23.440  1036  1144 V WindowManager: rotationForOrientation(orient=5, last=0); user=0 USER_ROTATION_LOCKED
01-21 18:29:23.440  1036  1144 V WindowOrientationListener: getProposedRotation: -1
01-21 18:29:23.440  1036  1144 V WindowManager: Computed rotation=0 for display id=0 based on lastOrientation=5 and oldRotation=0, caller=com.android.server.wm.DisplayContent.updateRotationUnchecked:1578 com.android.server.wm.WindowManagerService.updateRotationUnchecked:4297 com.android.server.wm.WindowManagerService.updateRotation:4278 com.android.server.wm.DisplayRotation$OrientationListener$UpdateRunnable.run:1065 android.os.Handler.handleCallback:883 android.os.Handler.dispatchMessage:100
01-21 18:29:23.508  1036  2708 D TelephonyManager: getAllCellInfo : Caller (PID / UID / TID): 1036 / 1000 / 2708
01-21 18:29:23.620  1036  3627 E TaskPersister: File error accessing recents directory (directory doesn't exist?).
01-21 18:29:23.937  1036  2147 I SensorService: [REARLIGHT] lux value : 46, code value : 0
01-21 18:29:24.273  3954  4227 D SDHMS:com.sec.android.sdhms.thermal.siop.B: SIOP:: AP:212(336,100) BAT:263(263,0) CHG:296(296,0) USB:267(267,0) WIFI:218(269,50) PA:225(281,50) LRP:271(271,0) LRF:271(271) LRB:269(269)
01-21 18:29:24.538  1036  2147 I SensorService: [REARLIGHT] lux value : 46, code value : 0
01-21 18:29:25.134  1036  2747 D PkgPredictorService-NapPreloadController: preload pkg: [] type: ml
01-21 18:29:25.136  1036  2851 I Pageboost: IoRecord pid : 17876
01-21 18:29:25.137  1036  2747 D PkgPredictorService-NapPreloadController: Sent pkg = com.example.StevensPin type: ml
01-21 18:29:25.137  1036  3085 D ActivityManager: [ML] packageName : com.example.StevensPin uid : 0 type : ml
01-21 18:29:25.137  1036  3085 D ActivityManager: [ML]Checking for the Machine Learning launch isPkgEverLaunched :true, isPkgStopped : false, isDataCleared :false, isAutoRunBlocked : false, isPkgDisabled : false
01-21 18:29:25.137  1036  3085 D ActivityManager: [ML]launchEmptyProcess packageName :com.example.StevensPin, userId : 0, type :ml
01-21 18:29:25.137  1036  2147 I SensorService: [REARLIGHT] lux value : 39, code value : 0
01-21 18:29:25.139  1036  2851 I Pageboost: getResultFromKernel Failed
01-21 18:29:25.139  1036  2851 W System.err: java.io.FileNotFoundException: /proc/17876/io_record_control: open failed: ENOENT (No such file or directory)
01-21 18:29:25.139  1036  2851 W System.err:    at libcore.io.IoBridge.open(IoBridge.java:496)
01-21 18:29:25.139  1036  2851 W System.err:    at java.io.FileOutputStream.<init>(FileOutputStream.java:235)
01-21 18:29:25.139  1036  2851 W System.err:    at java.io.FileOutputStream.<init>(FileOutputStream.java:186)
01-21 18:29:25.139  1036  2851 W System.err:    at java.io.FileWriter.<init>(FileWriter.java:90)
01-21 18:29:25.139  1036  2851 W System.err:    at com.android.server.am.Pageboost$IoRecord.getResultFromKernel(Pageboost.java:2875)
01-21 18:29:25.139  1036  2851 W System.err:    at com.android.server.am.Pageboost$PageboostHandler.handleMessage(Pageboost.java:3352)
01-21 18:29:25.139  1036  2851 W System.err:    at android.os.Handler.dispatchMessage(Handler.java:107)
01-21 18:29:25.139  1036  2851 W System.err:    at android.os.Looper.loop(Looper.java:237)
01-21 18:29:25.140  1036  2851 W System.err:    at android.os.HandlerThread.run(HandlerThread.java:67)
01-21 18:29:25.140  1036  2851 W System.err:    at com.android.server.ServiceThread.run(ServiceThread.java:44)
01-21 18:29:25.140  1036  2851 W System.err: Caused by: android.system.ErrnoException: open failed: ENOENT (No such file or directory)
01-21 18:29:25.140  1036  2851 W System.err:    at libcore.io.Linux.open(Native Method)
01-21 18:29:25.140  1036  2851 W System.err:    at libcore.io.ForwardingOs.open(ForwardingOs.java:167)
01-21 18:29:25.140  1036  2851 W System.err:    at libcore.io.BlockGuardOs.open(BlockGuardOs.java:252)
01-21 18:29:25.140  1036  2851 W System.err:    at libcore.io.IoBridge.open(IoBridge.java:482)
01-21 18:29:25.140  1036  2851 W System.err:    ... 9 more
01-21 18:29:25.142  1036  3085 E ActivityTaskManager: MachinLearning intent received, starting MlLaunch
01-21 18:29:25.144  1036  3085 I ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.example.StevensPin user:0
01-21 18:29:25.144  1036  3085 D ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed.
01-21 18:29:25.144  1036  3085 D ActivityManager: package  com.example.StevensPin, user - 0 is SDcard whitelisted
01-21 18:29:25.144  1036  3085 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.example.StevensPin user:0
01-21 18:29:25.144  1036  3085 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:25.145  1036  3085 I ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.example.StevensPin user:0
01-21 18:29:25.145  1036  3085 D ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed.
01-21 18:29:25.146  1036  3085 W ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.sendBroadcast:1088 com.android.server.am.ActivityManagerService.launchEmptyProcess:11644 com.android.server.am.ActivityManagerService.access$1500:527 com.android.server.am.ActivityManagerService$MlLaunchReceiver.onReceive:11459 android.app.LoadedApk$ReceiverDispatcher$Args.lambda$getRunnable$0$LoadedApk$ReceiverDispatcher$Args:1646
01-21 18:29:25.147  1036  1036 D PkgPredictorService-NapPreloadController: Get reply pkgName = com.example.StevensPin type = ml uid = 0
01-21 18:29:25.147  1036  3085 D ActivityManager: [ML]starting Machine Learning
01-21 18:29:25.147  1036  3085 D ActivityManager: [ML] machine learning preload success
01-21 18:29:25.149  1036  2851 I Pageboost: captureFinished fail
01-21 18:29:25.150  1036  2851 I Pageboost: db create : CREATE TABLE IF NOT EXISTS comexampleStevensPin (FILENAME TEXT, OFFSET INTEGER, SIZE INTEGER, FORVRAMDISK INTEGER, BITMAP BLOB, unique (FILENAME, OFFSET) );
01-21 18:29:25.163  1036  2851 I Pageboost: db update :com.example.StevensPin ret 1
01-21 18:29:25.183   522   522 D Zygote  : Forked child process 28948
01-21 18:29:25.189 28948 28948 E Zygote  : isWhitelistProcess - Process is Whitelisted
01-21 18:29:25.189 28948 28948 E Zygote  : accessInfo : 1
01-21 18:29:25.192  1036  1156 I ActivityManager: Start proc 28948:com.example.StevensPin/u0a333 for mllaunch {com.example.StevensPin/com.example.StevensPin.MainActivity}
01-21 18:29:25.198 28948 28948 E mple.StevensPi: Not starting debugger since process cannot load the jdwp agent.
01-21 18:29:25.206 28948 28948 D ActivityThread: setConscryptValidator
01-21 18:29:25.206 28948 28948 D ActivityThread: setConscryptValidator - put
01-21 18:29:25.207  1036  3028 I ActivityManager: DSS OFF for com.example.StevensPin
01-21 18:29:25.213  1036  3028 I ActivityManager: Killing 22911:com.samsung.android.dynamiclock/u0a72 (adj 999): empty #37
01-21 18:29:25.214  1036  3028 I ActivityManager: Killing 27948:com.samsung.android.calendar/u0a235 (adj 999): empty #38
01-21 18:29:25.272 28948 28948 I System.out: should load native is true
01-21 18:29:25.275 28948 28948 D NetworkSecurityConfig: No Network Security Config specified, using platform default
01-21 18:29:25.290   522   522 I Zygote  : Process 22911 exited due to signal 9 (Killed)
01-21 18:29:25.296   686 26093 I CameraService: UidPolicy: No processes running for a uid=10072 disabled=0
01-21 18:29:25.298  1036  1157 I libprocessgroup: Successfully killed process cgroup uid 10072 pid 22911 in 83ms

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Jan 21, 2021
@TahaTesser
Copy link
Member

Hi @Faizan-sts
Are you using proguard, you need to add it anymore, Can you please provide a minimal complete reproducible code sample for issues related to startup crash?

You do have a crash in your adb logcat platform_view_android_jni_impl
Thank you

@TahaTesser TahaTesser added the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Jan 22, 2021
@Faizan-sts
Copy link
Author

Hi @TahaTesser

I was using msal_mobile for authentication and added -keep class com.microsoft.identity.** { *; } in my 'proguard-rules.pro' file. I picked this from the error you spotted above in adb logcat platform_view_android_jni_impl.

App not crashing on startup now, but i'm running into another issue. Which i save for a new thread if not sorted.

But still need to clear about these two commands. flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory> & flutter build apk --obfuscate --split-debug-info=debug_info. why the first one is incorrect although i'm successfully building app with it. And what does the second one do differently ?

Thanks for you help

@no-response no-response bot removed the waiting for customer response The Flutter team cannot make further progress on this issue until the original reporter responds label Jan 23, 2021
@TahaTesser TahaTesser changed the title Flutter fails to build apk with obfuscate command [Obfuscating Code] Explain the usage of flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory> and flutter build apk --obfuscate --split-debug-info=debug_info Jan 25, 2021
@TahaTesser
Copy link
Member

@Faizan-sts
Glad you isolate the cause of the issue
That's a good question, I will label this issue for a documentation update.
The author from #67014 was following the docs was suggested to a similar but different command, and was suggested as a not the right command.

Thank you

@TahaTesser TahaTesser changed the title [Obfuscating Code] Explain the usage of flutter build apk --obfuscate --split-debug-info=/<project-name>/<directory> and flutter build apk --obfuscate --split-debug-info=debug_info [Obfuscating Code] Explain the usage of --obfuscate --split-debug-info=/<project-name>/<directory> and --obfuscate --split-debug-info=debug_info Jan 25, 2021
@TahaTesser TahaTesser added a: build Building flutter applications with the tool a: release Challenges faced when attempting to productionize an app documentation tool Affects the "flutter" command-line tool. See also t: labels. and removed in triage Presently being triaged by the triage team labels Jan 25, 2021
@Faizan-sts
Copy link
Author

Thanks for the suggestions. Like i said, very new to mobile development. Could you make a comment or your thoughts on the issue im facing here. Am i missing something straight forwar here again ?

@olof-dev
Copy link
Contributor

olof-dev commented Dec 6, 2021

I believe --split-debug-info=debug_info just outputs the program symbols into files in the subdirectory debug_info of the project folder. If you put /<project-name>/<directory> you have to make sure you give the correct full path to the project directory.

@eliasyishak eliasyishak added P2 Important issues not at the top of the work list triaged-tool Triaged by Flutter Tool team labels Oct 16, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
a: build Building flutter applications with the tool a: release Challenges faced when attempting to productionize an app d: stackoverflow Good question for Stack Overflow P2 Important issues not at the top of the work list team-tool Owned by Flutter Tool team tool Affects the "flutter" command-line tool. See also t: labels. triaged-tool Triaged by Flutter Tool team
Projects
None yet
Development

No branches or pull requests

6 participants