playgameservices / play-games-plugin-for-unity

Google Play Games plugin for Unity
Other
3.45k stars 962 forks source link

PlayServices SignIn Fail , no change, it worked before #2569

Closed robert-paraschiv closed 5 years ago

robert-paraschiv commented 5 years ago

[SOLVED] I added Google Play Services into my project about a month ago , tested it and it all worked perfectly. Today I wanted to check on it again ( i didn't do any change to the play services scripts or packages that I had , I left everything working) and it says " SignInOnClick: Failed to Sign into Play Games Services." . Any ideas? Thanks!

[SOLUTION] I got it working, the issue was with some "0Auth consent" that needed to be updated, in the google dev console. (https://console.developers.google.com)

th0m4s commented 5 years ago

Do you have any stacktrace to search where does the problem comes from?

NorthStar79 commented 5 years ago

probably you are using Unity 2019.x. same problem here, exactly same code works well on Unity 2018.x but it doesn't work on 2019.x no errors what so ever.

th0m4s commented 5 years ago

The services are working for me in 2019.0 and 2019.1. Maybe you can try a Force resolve in the Google Play Games menu or provide a stacktrace, it would be helpful to analyse it.

robert-paraschiv commented 5 years ago

I did try to Force Resolve, but it didn't help.

robert-paraschiv commented 5 years ago

The services are working for me in 2019.0 and 2019.1. Maybe you can try a Force resolve in the Google Play Games menu or provide a stacktrace, it would be helpful to analyse it.

how can I provice a stacktrace? Never did befrore, i googled it but I didn't understand much . Thanks

robert-paraschiv commented 5 years ago

New Text Document.txt is that it? Capture

th0m4s commented 5 years ago

In you project, this is your code that prints the message because the plugin returns success=false.

There are a lot of situations where the plugin returns false. It might be a server error, a device error or just a user cancel. Note that you can't login in the Editor, so it will return false if you are in the Editor.

A stacktrace is the history of the call (ie. the methods that were called before the message/error occurs). In the Editor, the stacktrace corresponds to the lines after the message (if it's an error) and to get the stacktrace from Android, there are 2 ways. You can select your device in the console (AndroidPlayer): Android Player selection

or you can use ADB logcat: adb logcat | findstr "Unity" (the Android SDK platform-tools needs to be in your PATH env variable)

In you case, the stacktrace might not be useful because we already know where the error is.

I think your problem is that you use Social.localUser.Authenticate and not PlayGamesPlatform.Instance.Authenticate. Let me explain... When the user is not authenticated, localUser is not linked to Google Play, so you want to authenticate using a empty provider. So by using PlayGamesPlatform, so explicitly asks the device to use the Google Play Games provider.

Hope this might correct your problem

robert-paraschiv commented 5 years ago

I've changed as you said, but it didn't fix the problem.

th0m4s commented 5 years ago

Do you activate the services before calling Authenticate? You need to use this code: (config is a PlayGamesClientConfiguration object that you've created with your config)

PlayGamesPlatform.InitializeInstance(config);
PlayGamesPlatform.Activate();
robert-paraschiv commented 5 years ago

Here is the whole script, maybe you can find something wrong in it. Thanks for trying to help

using System.Collections;
using System.Collections.Generic;
using System.Threading.Tasks;
using Firebase;
using Firebase.Database;
using Firebase.Unity.Editor;
using UnityEngine;
using UnityEngine.SceneManagement;
using GooglePlayGames;
using GooglePlayGames.BasicApi;
using Firebase.Auth;
using GooglePlayGames.BasicApi.SavedGame;
using System;

public class LoadScreen : MonoBehaviour
{
    public static bool SaveDataToCloud = true;
    public static bool LoadDataFromCloud = false;

    DatabaseReference reference;
    string userID = "";
    string displayName = "";
    string userEmail = "";
    private bool isSaving = false;

    // Use this for initialization
    void Start()
    {
        // Initialize Play Games Configuration and Activate it.
        PlayGamesClientConfiguration config = new PlayGamesClientConfiguration.Builder()
         .EnableSavedGames()
         .RequestServerAuthCode(false /*forceRefresh*/)
         .RequestEmail()
         .Build();
        PlayGamesPlatform.InitializeInstance(config);
        PlayGamesPlatform.Activate();
        Debug.LogFormat("SignInOnClick: Play Games Configuration initialized");
        SignInWithPlayGames();
        StartCoroutine(TimerLoadNextScene());
        // OpenSave(true);

    }

    public void OpenSave(bool saving)
    {
        if (Social.localUser.authenticated)
        {
            isSaving = saving;
            ((PlayGamesPlatform)Social.Active).SavedGame
                .OpenWithAutomaticConflictResolution("first", GooglePlayGames.BasicApi.DataSource.ReadCacheOrNetwork,
                GooglePlayGames.BasicApi.SavedGame.ConflictResolutionStrategy.UseLongestPlaytime, SaveGameOpened);
        }
    }

    private void SaveGameOpened(SavedGameRequestStatus status, ISavedGameMetadata meta)
    {

        if (status == SavedGameRequestStatus.Success)
        {
            if (isSaving) //
            {

                int unlockedRed = PlayerPrefs.GetInt("redUnlockedStatus", 0);
                int unlockedGreen = PlayerPrefs.GetInt("greenUnlockedStatus", 0);
                int unlockedSphere = PlayerPrefs.GetInt("sphereUnlockedStatus", 0);
                char[] unlockedStatus = { (char)(char)(unlockedRed + '0') , (char)(char)(unlockedGreen + '0'), (char)(char)(unlockedSphere + '0') };

                byte[] data = System.Text.ASCIIEncoding.ASCII.GetBytes(unlockedStatus);

                SavedGameMetadataUpdate update = new SavedGameMetadataUpdate.Builder().WithUpdatedDescription("Saved at" + DateTime.Now.ToString()).Build();
                ((PlayGamesPlatform)Social.Active).SavedGame.CommitUpdate(meta, update, data, SaveUpdate);
            }
            else //
            {
                ((PlayGamesPlatform)Social.Active).SavedGame.ReadBinaryData(meta, SaveRead);
            }
        }
    }

    private void SaveRead(SavedGameRequestStatus status, byte[] data)
    {
        if (status == SavedGameRequestStatus.Success)
        {
            string saveData = System.Text.ASCIIEncoding.ASCII.GetString(data);

                PlayerPrefs.SetInt("redUnlockedStatus", (int)saveData[0]);           
                PlayerPrefs.SetInt("greenUnlockedStatus", (int)saveData[1]);          
                PlayerPrefs.SetInt("sphereUnlockedStatus", (int) saveData[2]);

            Debug.LogFormat("1111111111111111111111111111111111111111111111111111111111111111111: Play Games Configuration initialized" + saveData);
            LoadNextScene();

        }
    }

    private void LoadNextScene()
    {
        SceneManager.LoadScene(1);
    }

    private void SaveUpdate(SavedGameRequestStatus status, ISavedGameMetadata meta)
    {
        Debug.LogFormat("0000000000000000000000000000000000000000000000000000000000000000000000000  saveUpdate" + meta.ToString());

        OpenSave(LoadDataFromCloud);
    }

    public string saveDataToFirebase(string userId, string userName, string userEmail) // Setting data to Fireabase Database
    {
        reference.Child("Users").Child(userId.ToString()).Child("DisplayName").SetValueAsync(userName);
        reference.Child("Users").Child(userId.ToString()).Child("UserEmail").SetValueAsync(userEmail);
        return "Save data to firebase Done.";
    }

    public void SignInWithPlayGames()
    {
        // Initialize Firebase Auth
        Firebase.Auth.FirebaseAuth auth = Firebase.Auth.FirebaseAuth.DefaultInstance;

        // Sign In and Get a server auth code.
        PlayGamesPlatform.Instance.Authenticate((bool success) =>
        {
            if (!success)
            {

                Debug.LogError("SignInOnClick: Failed to Sign into Play Games Services.");
                return;
            }

            string authCode = PlayGamesPlatform.Instance.GetServerAuthCode();

            if (string.IsNullOrEmpty(authCode))
            {
                Debug.LogError("SignInOnClick: Signed into Play Games Services but failed to get the server auth code.");
                return;
            }
            Debug.LogFormat("SignInOnClick: Auth code is: {0}", authCode);

            // Use Server Auth Code to make a credential
            Firebase.Auth.Credential credential = Firebase.Auth.PlayGamesAuthProvider.GetCredential(authCode);

            // Sign In to Firebase with the credential
            auth.SignInWithCredentialAsync(credential).ContinueWith(task =>
            {
                if (task.IsCanceled)
                {
                    Debug.LogError("SignInOnClick was canceled.");
                    return;
                }
                if (task.IsFaulted)
                {
                    Debug.LogError("SignInOnClick encountered an error: " + task.Exception);
                    return;
                }

                Firebase.Auth.FirebaseUser newUser = task.Result;
                Debug.LogFormat("SignInOnClick: User signed in successfully: {0} ({1})", newUser.DisplayName, newUser.UserId, newUser.Email);
                displayName = newUser.DisplayName;
                userID = newUser.UserId;
                userEmail = ((PlayGamesLocalUser)Social.localUser).Email;

                //

                // #1
                Firebase.FirebaseApp.CheckAndFixDependenciesAsync().ContinueWith(firebaseTask =>
                {
                    var dependencyStatus = firebaseTask.Result;
                    if (dependencyStatus == Firebase.DependencyStatus.Available)
                    {
                        // Create and hold a reference to your FirebaseApp,
                        // where app is a Firebase.FirebaseApp property of your application class.
                        //   app = Firebase.FirebaseApp.DefaultInstance;

                        // Set a flag here to indicate whether Firebase is ready to use by your app.

                        // #2
                        // Set up the Editor before calling into the realtime database.
                        FirebaseApp.DefaultInstance.SetEditorDatabaseUrl("https://");

                        // #3
                        // Get the root reference location of the database.
                        reference = FirebaseDatabase.DefaultInstance.RootReference;

                        //_________________________

                        string DebugMsg = saveDataToFirebase(userID, displayName, userEmail);
                        Debug.Log(DebugMsg); // print message in console

                        // < ---------------------------------------------------------------------------------- >

                        //                      Might be useful                         ----

                        //reference.Child("0").GetValueAsync().ContinueWith(task1 =>
                        //{
                        //    if (task1.IsFaulted)
                        //    {
                        //        // Handle the error...
                        //    }
                        //    else if (task1.IsCompleted)
                        //    {
                        //        DataSnapshot snapshot = task1.Result;
                        //        Debug.Log(snapshot.Child("Name").Value);
                        //        timer = 2;
                        //        Debug.Log(timer);
                        //        // Do something with snapshot...
                        //    }
                        //});

                        // < ---------------------------------------------------------------------------------- >

                    }
                    else
                    {
                        UnityEngine.Debug.LogError(System.String.Format(
                          "Could not resolve all Firebase dependencies: {0}", dependencyStatus));
                        // Firebase Unity SDK is not safe to use here.
                    }
                });

            });
            //OpenSave(SaveDataToCloud);
            OpenSave(LoadDataFromCloud);
        });
    }

    IEnumerator TimerLoadNextScene()
    {

        yield return StartCoroutine(LoadNext(7.0F));

    }

    IEnumerator LoadNext(float waitTime)
    {
        yield return new WaitForSeconds(waitTime);
        LoadNextScene();
    }

}
th0m4s commented 5 years ago

Just after a first read, why do you want to save data to Firebase? That's strange because you are using the SavedGames from Google Play Games and Firebase...

I'm reading the script again to find the problem

robert-paraschiv commented 5 years ago

I also want to save some data in a firebase for some future features.

th0m4s commented 5 years ago

Ok for Firebase. I don't find a error in your script (but it might be one, I'm not a pro, sorry...)

You can also add a second parameter to the callback: (bool success, string message) to get a possible error from the services. Try printing this message to see where does the error comes from.

robert-paraschiv commented 5 years ago

Did as you said, and the results are as follows :

05-09 20:23:47.363 27384 27420 E Unity   : SignInOnClick: Failed to Sign into Play Games Services.
05-09 20:23:47.363 27384 27420 E Unity   :
05-09 20:23:47.363 27384 27420 E Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 20:23:47.363 27384 27420 E Unity   :
05-09 20:23:47.363 27384 27420 E Unity   : Message: Authentication canceled
th0m4s commented 5 years ago

This is really strange...

The message told us that the auth was canceled [be the user]. On your device, do you see any popup, any green loading spinner in the center of the screen? A click while the spinning is loading might be interpreted as a close "window" and cancel the auth.

th0m4s commented 5 years ago

And normally, the services print their own status message, do you have it? The log line starts with Starting Auth Transition. Op: SIGN_IN status:

robert-paraschiv commented 5 years ago

There's no such log. When opened, it shows "Connecting to" + game name, then the spinner appears, but it stops quickly and nothing else happens after.

th0m4s commented 5 years ago

Oh yes, I forgot something. You need to add

PlayGamesPlatform.DebugLogEnabled = true;

before Activate() to print this message

legas1 commented 5 years ago

Also adb logcat without Unity focusing would be useful, because there are other services which shows debug info about authentication.

th0m4s commented 5 years ago

@Noah1911 what do you mean by "without Unity focusing"?

robert-paraschiv commented 5 years ago
05-09 21:51:05.195  3080  3116 E Unity   : SignInOnClick: Failed to Sign into Play Games Services.
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.195  3080  3116 E Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.195  3080  3116 E Unity   : SignInOnClick: Authentication canceled
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.195  3080  3116 E Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.197  3080  3116 I Unity   :  [Play Games Plugin DLL] 05/09/19 21:51:05 +03:00 DEBUG: Invoking user callback on game thread
05-09 21:51:05.197  3080  3116 I Unity   :
05-09 21:51:05.197  3080  3116 I Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.197  3080  3116 I Unity   :
05-09 21:51:05.491  3080  3116 I Unity   :  [Play Games Plugin DLL] 05/09/19 21:51:05 +03:00 DEBUG: Starting Auth Transition. Op: SIGN_IN status: ERROR_NOT_AUTHORIZED
05-09 21:51:05.491  3080  3116 I Unity   :
05-09 21:51:05.491  3080  3116 I Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.491  3080  3116 I Unity   :
05-09 21:51:05.491  3080  3116 I Unity   :  [Play Games Plugin DLL] 05/09/19 21:51:05 +03:00 DEBUG: AuthState == Unauthenticated calling auth callbacks with failure
legas1 commented 5 years ago

@Noah1911 what do you mean by "without Unity focusing"?

@OriginalsByToto just adb logcat without piping | findstr "Unity" or -s Unity

th0m4s commented 5 years ago

Oh ok, I didn't understand what you are talking about... Yes of course.

th0m4s commented 5 years ago
05-09 21:51:05.195  3080  3116 E Unity   : SignInOnClick: Failed to Sign into Play Games Services.
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.195  3080  3116 E Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.195  3080  3116 E Unity   : SignInOnClick: Authentication canceled
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.195  3080  3116 E Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.195  3080  3116 E Unity   :
05-09 21:51:05.197  3080  3116 I Unity   :  [Play Games Plugin DLL] 05/09/19 21:51:05 +03:00 DEBUG: Invoking user callback on game thread
05-09 21:51:05.197  3080  3116 I Unity   :
05-09 21:51:05.197  3080  3116 I Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.197  3080  3116 I Unity   :
05-09 21:51:05.491  3080  3116 I Unity   :  [Play Games Plugin DLL] 05/09/19 21:51:05 +03:00 DEBUG: Starting Auth Transition. Op: SIGN_IN status: ERROR_NOT_AUTHORIZED
05-09 21:51:05.491  3080  3116 I Unity   :
05-09 21:51:05.491  3080  3116 I Unity   : (Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)
05-09 21:51:05.491  3080  3116 I Unity   :
05-09 21:51:05.491  3080  3116 I Unity   :  [Play Games Plugin DLL] 05/09/19 21:51:05 +03:00 DEBUG: AuthState == Unauthenticated calling auth callbacks with failure

Here we have new information about the error: ERROR_NOT_AUTHORIZED. Just a simple question, do you have a Google Play Developer Account? If yes, is your app listed in My Applications and Games services (both needs to be linked together)?

The message told us that the auth was canceled [be the user]

I was wrong in this message, the auth was not canceled by the user but by the game services themselves

robert-paraschiv commented 5 years ago

I do have a dev account, the app is listed in "Game services", but not in my Applications as i don't want to post the app to PlayStore yet. And also it worked without that, tested on multiple devices and accounts so i don't think that's the problem.

howlmoon123 commented 5 years ago

Having the same problem. Worked on Unity 2018, could get Achievements, Leaderboards, and all the other services, and the sign-on pop-up. Only upgraded to Unity 2019 and all I get is "app quit working" pop-up.

legas1 commented 5 years ago

@howlmoon123 post logcat logs please...

howlmoon123 commented 5 years ago
--------- beginning of system

2019-05-11 20:23:34.906 1634-2487/? D/ConnectivityService: updateCapabilities: oldCap = [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&FOREGROUND LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -64], newCap = [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -63] 2019-05-11 20:23:34.906 1634-2487/? D/ConnectivityService: notifyType CAP_CHANGED for NetworkAgentInfo [WIFI () - 513] 2019-05-11 20:23:34.907 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ REQUEST id=1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.907 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ TRACK_DEFAULT id=3, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.907 21714-21714/? E/propClient: PropClient failed to load 2019-05-11 20:23:34.907 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ TRACK_DEFAULT id=3, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.908 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=5, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.908 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10086 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.908 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=5, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.908 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.908 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=6, [ Transports: CELLULAR|WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.908 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10223 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.909 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1001 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.909 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10115 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.909 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.909 1634-2481/? I/chatty: uid=1000(system) ConnectivityThr identical 2 lines 2019-05-11 20:23:34.909 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.909 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10041 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1200 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.910 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=6, [ Transports: CELLULAR|WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1000 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10019 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.910 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=7, [] ] 2019-05-11 20:23:34.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10126 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10115 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10194 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5017 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.912 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.912 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.912 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.912 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5017 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.912 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.912 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10055 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10124 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 2982-2982/? D/EPDG -- SIM0 [SMARTWIFI]: Wifi RSSI intent received -- newRssi : -63intent Intent { act=android.net.wifi.RSSI_CHANGED flg=0x4000010 (has extras) } 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: Rssi : -63 highrange : -75 lowrange : -80 mIsRssiInHystersis : false 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10125 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: wifi oldest entry removed 2019-05-11 20:23:34.913 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: wifi entry added 2019-05-11 20:23:34.913 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: New entry : (-63 : 0 ) 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: isWifiSignalUpgraded: lastStrength: -64 currentStrength: -63 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: isL2WHandoverProfilingRunning: returning: false 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: No need to send L2WHandoverProfiling runnable 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: No need to run ping : (lastStrength-64 : mWeakWifiLevel2 : mWifiGoodDbValue-74 : mWifiBadDbValue-80 : currentStrength)-63 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: isWifiSignalDegraded: lastStrength: -64 currentStrength: -63 2019-05-11 20:23:34.913 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: getHandoverThresholdMet: value is: false 2019-05-11 20:23:34.913 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=7, [] ] 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10135 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.914 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10004 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.914 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.914 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10055 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.915 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10244 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.915 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5017 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.916 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10126 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.916 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10244 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.916 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10019 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.917 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.917 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.917 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10046 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.918 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10124 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.917 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=8, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.918 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10124 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1000 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10204 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1000 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.919 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=8, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10041 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10246 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10115 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10035 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.920 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=9, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10246 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10086 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10211 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10109 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10034 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.921 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=9, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10226 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.922 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10301 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10248 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ TRACK_DEFAULT id=11, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10046 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10019 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.923 21714-21714/? E/propClient: PropClient failed to load 2019-05-11 20:23:34.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.924 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.924 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10035 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.924 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ TRACK_DEFAULT id=11, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.924 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10076 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.925 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=56, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.925 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=56, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.926 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=57, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.926 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=57, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.926 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=104, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.926 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=104, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.927 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=116, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.928 1634-4905/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.928 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=116, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.929 1634-2974/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.929 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.929 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=129, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.930 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=129, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:34.930 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=134, [ Transports: WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.930 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=134, [ Transports: WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:34.930 1634-2974/? D/ConnectivityService: filterNetworkStateForUid() uid: 10041 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:34.931 1634-2409/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.775 1634-2625/? D/WifiConnectivityMonitor: [|223] 2019-05-11 20:23:35.904 1634-2487/? D/ConnectivityService: updateCapabilities: oldCap = [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN&VALIDATED&FOREGROUND LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -63], newCap = [ Transports: WIFI Capabilities: NOT_METERED&INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN LinkUpBandwidth>=1048576Kbps LinkDnBandwidth>=1048576Kbps SignalStrength: -64] 2019-05-11 20:23:35.905 1634-2487/? D/ConnectivityService: notifyType CAP_CHANGED for NetworkAgentInfo [WIFI () - 513] 2019-05-11 20:23:35.905 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ REQUEST id=1, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.905 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ TRACK_DEFAULT id=3, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.906 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ TRACK_DEFAULT id=3, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.907 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10086 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.907 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=5, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.908 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=5, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.908 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=6, [ Transports: CELLULAR|WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.908 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.908 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=6, [ Transports: CELLULAR|WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.909 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=7, [] ] 2019-05-11 20:23:35.909 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=7, [] ] 2019-05-11 20:23:35.909 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10223 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.910 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1001 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.911 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10115 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.912 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=8, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.913 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.916 2982-2982/? D/EPDG -- SIM0 [SMARTWIFI]: Wifi RSSI intent received -- newRssi : -64intent Intent { act=android.net.wifi.RSSI_CHANGED flg=0x4000010 (has extras) } 2019-05-11 20:23:35.918 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=8, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.920 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: Rssi : -64 highrange : -75 lowrange : -80 mIsRssiInHystersis : false 2019-05-11 20:23:35.920 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: wifi oldest entry removed 2019-05-11 20:23:35.920 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: wifi entry added 2019-05-11 20:23:35.920 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: New entry : (-64 : 0 ) 2019-05-11 20:23:35.920 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: isWifiSignalUpgraded: lastStrength: -63 currentStrength: -64 2019-05-11 20:23:35.920 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: isL2WHandoverProfilingRunning: returning: false 2019-05-11 20:23:35.920 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: No need to send L2WHandoverProfiling runnable 2019-05-11 20:23:35.921 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: No need to run ping : (lastStrength-63 : mWeakWifiLevel2 : mWifiGoodDbValue-74 : mWifiBadDbValue-80 : currentStrength)-64 2019-05-11 20:23:35.921 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: isWifiSignalDegraded: lastStrength: -63 currentStrength: -64 2019-05-11 20:23:35.921 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: getHandoverThresholdMet: value is: false 2019-05-11 20:23:35.921 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.922 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=9, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.922 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=9, [ Transports: WIFI Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.923 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.924 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ TRACK_DEFAULT id=11, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.925 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ TRACK_DEFAULT id=11, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.925 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.926 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=56, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.926 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=56, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.927 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=57, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.927 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=57, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.928 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10041 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.928 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=104, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.928 1634-2409/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.928 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=104, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.928 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=116, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.929 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=116, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.929 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=129, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.929 1634-2974/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.930 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1200 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.930 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=129, [ Capabilities: INTERNET&NOT_RESTRICTED&TRUSTED] ] 2019-05-11 20:23:35.930 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.931 1634-2487/? D/ConnectivityService: sending notification for NetworkRequest [ LISTEN id=134, [ Transports: WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.931 1634-2487/? D/ConnectivityService: sending notification CAP_CHANGED for NetworkRequest [ LISTEN id=134, [ Transports: WIFI Capabilities: NOT_RESTRICTED&TRUSTED&NOT_VPN] ] 2019-05-11 20:23:35.932 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1000 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.932 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10019 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.933 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10126 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.933 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.933 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10115 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.933 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10041 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.934 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.934 1634-4905/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.934 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10194 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.934 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5017 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.935 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.935 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.935 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.936 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.936 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.937 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5017 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.937 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.937 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.937 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10055 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.938 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10124 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.938 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.939 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10125 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.939 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.939 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.939 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10135 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.940 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10004 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.940 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.941 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10055 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.942 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10244 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.942 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5017 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.942 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10126 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.942 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10244 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.943 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10019 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.943 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.943 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.944 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10046 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.944 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10124 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.945 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10124 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.945 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1000 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.946 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10204 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.946 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.947 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.947 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 1000 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.947 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.947 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.948 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.948 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10041 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.948 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.948 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.948 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10246 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.949 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.949 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10115 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.949 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10035 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.949 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.949 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10246 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10086 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10211 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10109 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10034 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.950 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10114 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10226 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10301 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10248 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 5009 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.951 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10046 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10019 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10035 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:35.952 1634-2481/? D/ConnectivityService: filterNetworkStateForUid() uid: 10076 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:36.015 1634-2362/? D/SamsungAlarmManager: Expired : 4 2019-05-11 20:23:36.016 1634-2362/? I/SamsungAlarmManager: setLocked to kernel - T:2 / 20190511T202413, SetElapsed=15668131, nowELAPSED=15631030 2019-05-11 20:23:36.016 1634-2362/? I/SamsungAlarmManager: setLocked to kernel - T:3 / 20190511T202400, SetElapsed=15655014, nowELAPSED=15631030 2019-05-11 20:23:36.017 1634-2362/? V/SamsungAlarmManager: Sending to uid : 10115 action=WakingExecutorService.ACTION_ALARM.com.facebook.katana.Mqtt_Wakeup alarm=Alarm{b9e5c31 type 2 when 15631029 com.facebook.katana} 2019-05-11 20:23:36.033 1634-4905/? D/SamsungAlarmManager: Cancel Alarm calling from uid:10115 pid :17087 / op:PendingIntent{4476097: PendingIntentRecord{7f577a1 com.facebook.katana broadcastIntent}} 2019-05-11 20:23:36.046 1634-4905/? D/PackageManager: setEnabledSetting : userId = 0 packageName = com.facebook.katana cmp = com.facebook.mqttlite.MqttService newState = 1 callingPackage = 10115/com.facebook.katana 2019-05-11 20:23:36.072 1634-4905/? I/ActivityManager: KPU : put [com.sec.android.provider.badge] : 4117 K 2019-05-11 20:23:36.073 1634-4905/? I/ActivityManager: Killing 17268:com.sec.android.provider.badge/u0a6 (adj 906): DHA:empty #25 2019-05-11 20:23:36.102 2945-3177/? D/ForegroundUtils: could not check pending caller 2019-05-11 20:23:36.102 2838-22999/? D/ProcessObserver_FLP: onProcessDied, 17268/10006 2019-05-11 20:23:36.505 1634-2391/? D/InputReader: Input event(6): value=1 when=7428620377000 2019-05-11 20:23:36.508 1634-2391/? D/WindowManager: interceptKeyTq s_result=1 2019-05-11 20:23:36.509 1634-2390/? D/PowerManagerService: [api] userActivityFromNative : 10 (event: 1 flags: 0) eventTime = 7428620 2019-05-11 20:23:36.514 1634-2390/? D/API test: getContainerInfo: value is 2019-05-11 20:23:36.521 2687-2687/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: newTime=1557622271889 2019-05-11 20:23:36.522 1634-4905/? D/SecContentProvider: query(), uri = 17 selection = isSettingsChangesAllowed 2019-05-11 20:23:36.523 1634-4905/? D/SecContentProvider: called from android.uid.systemui:10074 2019-05-11 20:23:36.523 2687-2862/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: done. 2019-05-11 20:23:36.775 1634-2391/? D/InputReader: Input event(6): value=0 when=7428890611000 2019-05-11 20:23:36.782 1634-2391/? D/WindowManager: interceptKeyTq s_result=1 2019-05-11 20:23:36.789 1634-2390/? D/API test: getContainerInfo: value is 2019-05-11 20:23:36.791 1634-2390/? D/PowerManagerService: [api] [s] userActivity : event: 0 flags: 0 (uid: 1000 pid: 1634) eventTime = 7428906 2019-05-11 20:23:36.795 2687-2687/? D/Recents: toggleRecentApps 2019-05-11 20:23:36.800 2687-2687/? D/RecentsImpl: startRecentsActivity - hideMenuEvent 2019-05-11 20:23:36.801 2687-2687/? D/SystemServicesProxy: sendCloseSystemWindows: reason=recentapps 2019-05-11 20:23:36.809 1634-2409/? I/ActivityManager: START u0 {act=null typ=null flg=0x10804000 cmp=ComponentInfo{com.android.systemui/com.android.systemui.recents.RecentsActivity}} from uid 10074 2019-05-11 20:23:36.812 732-762/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only 2019-05-11 20:23:36.813 1634-2409/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1632000 uid : 1000 pid : 1634 pkgName : AMS_ACT_START@CPU_MIN@85 2019-05-11 20:23:36.816 1634-2409/? D/ActivityManagerPerformance: AMP_acquire() ACT_START 2019-05-11 20:23:36.818 1634-1634/? D/MdnieScenarioControlService: Listener Real Multi Window State : true 2019-05-11 20:23:36.818 1634-1634/? D/CS_HdrController: MultiWindowEventListener::onFocusStackChanged(5) 2019-05-11 20:23:36.820 4548-4548/? V/Launcher: Launcher.onPause() 2019-05-11 20:23:36.822 1634-2409/? D/ActivityManager: isScaleDownAnimationEnabled() : false 2019-05-11 20:23:36.823 1634-2409/? D/PersonaManagerService: Current focused persona service handled id set to : 0 2019-05-11 20:23:36.823 1634-2409/? D/InputDispatcher: Focused application set to: xxxx 2019-05-11 20:23:36.825 1634-2409/? D/InputDispatcher: Focus left window: 4548 2019-05-11 20:23:36.832 1634-2409/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false 2019-05-11 20:23:36.835 1634-2409/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.android.systemui, userId = 0 2019-05-11 20:23:36.835 1634-2558/? D/GameManagerService: handleForegroundChange(). pkgName: com.android.systemui, clsName: com.android.systemui.recents.RecentsActivity,FgActivityName:com.android.systemui/.recents.RecentsActivity 2019-05-11 20:23:36.835 1634-2558/? D/GameManagerService: sem_perfomance_mode: 0 2019-05-11 20:23:36.835 1634-2558/? D/GameManagerService: notifyResumePause(). pkg: com.android.systemui, type: 4, isMinimized: false, isTunableApp: false 2019-05-11 20:23:36.835 1634-2558/? D/GameManagerService: notifyResumePause(). do nothing. mKillNotiCount: 3 2019-05-11 20:23:36.841 2687-2862/? D/SystemServicesProxy: startRecentsActivity for UserHandle{-2} done. 2019-05-11 20:23:36.841 1634-1634/? D/CS_HdrController: updateMultiWindowState : 0 2019-05-11 20:23:36.842 1634-1634/? D/CodecSolution: MultiWindowEventListener::onMultiWindowFocusChanged(5) 2019-05-11 20:23:36.845 4548-4548/? I/WallpaperScroller: WallpaperScroller pause 2019-05-11 20:23:36.846 1634-5462/? D/SensorService: Calling activate off 20 2019-05-11 20:23:36.846 723-2345/? I/qti_sensors_hal: enable: Disabling sensor handle=78 2019-05-11 20:23:36.847 2687-2687/? D/ApplicationPackageManager: updateItemMetaDataForFixedIconScale: package: com.howlersstudio.allensrage 2019-05-11 20:23:36.848 1634-4905/? D/PackageManager: getSelectedMetaData : packageName(com.howlersstudio.allensrage) or Metadata strings {[Ljava.lang.String;@d9c5284} 2019-05-11 20:23:36.848 2687-2687/? I/ApplicationPackageManager: return adaptive icon for com.howlersstudio.allensrage 2019-05-11 20:23:36.848 723-894/? I/qti_sensors_hal: processResp: handle=78, msg_hdr->msg_id=0 2019-05-11 20:23:36.850 4548-4548/? D/SensorManager: unregisterListener ::
2019-05-11 20:23:36.850 4548-4548/? D/ViewRootImpl@cffd4bd[LauncherActivity]: MSG_WINDOW_FOCUS_CHANGED 0 2019-05-11 20:23:36.853 2687-2687/? D/AnalyticUtils: sendScreenViewLog 500 2019-05-11 20:23:36.853 22786-22807/? W/SearchServiceCore: Abort, client detached. 2019-05-11 20:23:36.859 22786-21069/? I/PBSessionCacheImpl: Deleted sessionId[100215445422619936] from persistence. 2019-05-11 20:23:36.861 2687-2862/? D/SystemServicesProxy: sendCloseSystemWindows: done. 2019-05-11 20:23:36.863 1634-1634/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false 2019-05-11 20:23:36.864 2687-3048/? D/vol.VolumeDialogControl: onReceive ACTION_CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:36.865 2687-3045/? D/LocationControllerImpl: onReceive() = android.intent.action.CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:36.867 1634-2974/? D/ActivityManager: post active user change for 0 fullscreen true isHomeActivity() false 2019-05-11 20:23:36.868 2687-2687/? D/WallpaperService: updateSurface forceRelayout=true redrawNeeded=false myWidth=1188 myHeight=2112 fixedSize=true x = 0 y = 0 mWidth=1188 mHeight=2112 mIsSleepMode=false 2019-05-11 20:23:36.870 1634-4905/? V/WindowManager: Relayout Window{62d98d3 u0 com.android.systemui.ImageWallpaper}: viewVisibility=0 req=1188x2112 WM.LayoutParams{(0,0)(1188x2112) gr=#800033 ty=2013 fl=#10318 fmt=2 wanim=0x103030e colorMode=0 naviIconColor=0 sfl=0x8} 2019-05-11 20:23:36.872 4548-4548/? I/WallpaperScroller: WallpaperScroller shutdown 2019-05-11 20:23:36.872 4548-4548/? D/Launcher: resetWallpaperOffsets 2019-05-11 20:23:36.875 2687-2687/? D/ImageWallpaper: onOffsetsChanged: xOffset=0.0, yOffset=0.0, xOffsetStep=0.0, yOffsetStep=0.0, xPixels=0, yPixels=0 2019-05-11 20:23:36.876 2687-2687/? D/ImageWallpaper: newRotation : 0,mLastRotation : 0 2019-05-11 20:23:36.876 2687-2687/? W/SemDesktopModeManager: Desktop Mode feature not available or SemDesktopModeManager not instantiated. Please check Configuration.semDesktopModeEnabled instead. 2019-05-11 20:23:36.876 2687-2687/? D/ImageWallpaper: drawFrame:[frame.width()]1188[frame.height()]2112 2019-05-11 20:23:36.876 2687-2687/? D/ImageWallpaper: surfaceDimensionsChanged=false mDisplayWidth=1080 mDisplayHeight=1920 2019-05-11 20:23:36.876 2687-2687/? D/ImageWallpaper: redrawNeeded = false, mOffsetsChanged = false 2019-05-11 20:23:36.876 2687-2687/? D/ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed. 2019-05-11 20:23:36.880 4548-4548/? D/StageManager: saved stages : inStack [1] , outStack[2] 2019-05-11 20:23:36.880 1634-2409/? V/WindowManager: Relayout Window{19c8900 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}: viewVisibility=0 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#120 ty=1 fl=#89910500 pfl=0x24040 fmt=-3 vsysui=0x700 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:36.881 767-767/? I/SurfaceFlinger: id=390 createSurf (1080x1920),1 flag=4, com.android.systemui/com.android.systemui.recents.RecentsActivity#0 2019-05-11 20:23:36.883 1634-2409/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:36.884 1634-1882/? D/WindowManager: set systemUiVisibility : systemUiFlags= 0x708 fullscreenStackSysUiFlags= 0x0 2019-05-11 20:23:36.888 1634-2409/? D/InputDispatcher: Focus entered window: 2687 2019-05-11 20:23:36.889 2687-2687/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:36.889 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x7 surface={valid=true 510928412672} changed=true 2019-05-11 20:23:36.894 4548-4548/? I/Launcher: onWindowVisibilityChanged : false 2019-05-11 20:23:36.898 2687-3073/? D/OpenGLRenderer: eglCreateWindowSurface = 0x76fffee280 2019-05-11 20:23:36.900 4548-4790/? D/OpenGLRenderer: eglDestroySurface = 0x7702594180 2019-05-11 20:23:36.900 2687-2687/? D/vol.SecVolumeDialogImpl: dismissH reason: 2 2019-05-11 20:23:36.900 2687-2687/? D/Tile.AirplaneModeTile: onReceive: android.intent.action.CLOSE_SYSTEM_DIALOGS mSimCount 1 2019-05-11 20:23:36.900 2687-2687/? D/PopupUI: PopupUIReceiver.onReceive() action : android.intent.action.CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:36.900 2687-2687/? D/PopupUI.PopupUINotifications: dismissAlertDialogs() 2019-05-11 20:23:36.900 2687-2687/? D/BrightnessMirror: hideMirror cancelled since it's not visible 2019-05-11 20:23:36.900 2687-2687/? D/GlobalActionsDialog: mBroadcastReceiver : onReceive : android.intent.action.CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:36.900 2687-2687/? D/GlobalActionsDialog: mBroadcastReceiver : onReceive : MESSAGE_DISMISS 2019-05-11 20:23:36.901 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: MSG_RESIZED_REPORT: frame=Rect(0, 0 - 1080, 1920) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 63 - 0, 0) or=1 2019-05-11 20:23:36.901 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: MSG_WINDOW_FOCUS_CHANGED 1 2019-05-11 20:23:36.902 2687-2687/? V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@8a21be7 nm : com.android.systemui ic=null 2019-05-11 20:23:36.902 2687-2687/? I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus 2019-05-11 20:23:36.902 1634-5462/? V/WindowManager: Relayout Window{232fa8 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: viewVisibility=4 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#130 ty=1 fl=#81910d00 pfl=0x20000 fmt=-2 wanim=0x10302ea vsysui=0x700 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:36.902 1634-2409/? D/InputMethodManagerService: startInputOrWindowGainedFocus : windowGainedFocus 2019-05-11 20:23:36.902 1634-2409/? D/InputMethodManagerService: windowGainedFocus: destinationUserId (getCallingUid) = 0 2019-05-11 20:23:36.902 1634-2409/? D/InputMethodManagerService: windowGainedFocus: currentUserId=0 2019-05-11 20:23:36.902 1634-2409/? D/InputMethodManagerService: windowGainedFocus: mCurrentFocusedUserId=0 2019-05-11 20:23:36.902 1634-2409/? D/InputMethodManagerService: windowGainedFocus : lock - currentUserId = 0 destinationUserId = 0 2019-05-11 20:23:36.902 1634-2409/? D/InputMethodManagerService: windowGainedFocus : mCurrentFocusedUserId - 0 and mSecureKeypadEnabled - false, userSwitched - false 2019-05-11 20:23:36.907 1634-2409/? V/InputMethodManagerService: windowGainedFocus : reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@96e9a6c inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@22556a2 nm = com.android.systemui controlFlags=#100 softInputMode=#120 windowFlags=#89910500 2019-05-11 20:23:36.907 1634-2409/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false 2019-05-11 20:23:36.907 4548-4548/? D/ViewRootImpl@cffd4bd[LauncherActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x5 surface={valid=false 0} changed=true 2019-05-11 20:23:36.907 1634-2409/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false 2019-05-11 20:23:36.908 1634-2409/? D/InputMethodManagerService: setCurrentInputInfo - inputContext : null eidtorInfo : android.view.inputmethod.EditorInfo@22556a2 missingMethods : 0 2019-05-11 20:23:36.910 15257-15257/? I/InputMethodWrapper: call dispatchStartInputWithToken 2019-05-11 20:23:36.910 15257-15257/? I/InputMethodService: dispatchStartInputWithToken 2019-05-11 20:23:36.912 2687-6628/? D/SamsungAnalytics: [DLC Sender] send result success : 0 2019-05-11 20:23:36.914 1634-4174/? D/Dex2oatAdjuster: Before fg size = 0 2019-05-11 20:23:36.914 1634-4174/? D/Dex2oatAdjuster: After bg size = 0 fg size = 0 2019-05-11 20:23:36.915 10635-10649/? I/SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 4548 , isNotify : true , isForeground : false , fg list : [] 2019-05-11 20:23:36.915 2945-3177/? D/ForegroundUtils: could not check pending caller 2019-05-11 20:23:36.918 2838-22999/? D/ProcessObserver_FLP: onForegroundActivities changed, 4548/10077/false 2019-05-11 20:23:36.925 1634-2409/? V/WindowManager: finishDrawingLocked: mDrawState=COMMIT_DRAW_PENDING Window{19c8900 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity} in Surface(name=com.android.systemui/com.android.systemui.recents.RecentsActivity) 2019-05-11 20:23:36.940 2687-2687/? D/WallpaperService: updateSurface forceRelayout=true redrawNeeded=false myWidth=1188 myHeight=2112 fixedSize=true x = 0 y = 0 mWidth=1188 mHeight=2112 mIsSleepMode=false 2019-05-11 20:23:36.941 1634-4905/? V/WindowManager: Relayout Window{62d98d3 u0 com.android.systemui.ImageWallpaper}: viewVisibility=0 req=1188x2112 WM.LayoutParams{(0,0)(1188x2112) gr=#800033 ty=2013 fl=#10318 fmt=2 wanim=0x103030e colorMode=0 naviIconColor=0 sfl=0x8} 2019-05-11 20:23:36.943 4548-4548/? I/Launcher: onWindowVisibilityChanged : false 2019-05-11 20:23:36.946 2687-2687/? D/ImageWallpaper: onOffsetsChanged: xOffset=0.0, yOffset=0.0, xOffsetStep=0.0, yOffsetStep=0.0, xPixels=0, yPixels=0 2019-05-11 20:23:36.946 1634-4905/? V/WindowManager: Relayout Window{232fa8 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity EXITING}: viewVisibility=8 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#130 ty=1 fl=#81910d00 pfl=0x20000 fmt=-2 wanim=0x10302ea vsysui=0x700 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:36.947 2687-2687/? D/ImageWallpaper: newRotation : 0,mLastRotation : 0 2019-05-11 20:23:36.947 2687-2687/? W/SemDesktopModeManager: Desktop Mode feature not available or SemDesktopModeManager not instantiated. Please check Configuration.semDesktopModeEnabled instead. 2019-05-11 20:23:36.947 2687-2687/? D/ImageWallpaper: drawFrame:[frame.width()]1188[frame.height()]2112 2019-05-11 20:23:36.947 2687-2687/? D/ImageWallpaper: surfaceDimensionsChanged=false mDisplayWidth=1080 mDisplayHeight=1920 2019-05-11 20:23:36.947 2687-2687/? D/ImageWallpaper: redrawNeeded = false, mOffsetsChanged = false 2019-05-11 20:23:36.947 2687-2687/? D/ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed. 2019-05-11 20:23:36.950 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: MSG_RESIZED: frame=Rect(0, 0 - 1080, 1920) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=1 2019-05-11 20:23:36.951 4548-4548/? D/ViewRootImpl@cffd4bd[LauncherActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=false 0} changed=false 2019-05-11 20:23:36.951 1634-2642/? I/OpenGLRenderer: Initialized EGL, version 1.4 2019-05-11 20:23:36.951 1634-2642/? D/OpenGLRenderer: Swap behavior 2 2019-05-11 20:23:36.964 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b53af080 | 0000 | RGBA_8888 | 0.0 0.0 1079.0 1919.0 | 0 0 1080 1920 | com.sec.android.app.launcher/com.sec[...]uncher.activities.LauncherActivity#0 Device | 0x79b53d1f00 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.android.systemui/com.android.systemui.recents.RecentsActivity#0 2019-05-11 20:23:37.046 1634-2400/? D/MdnieScenarioControlService: packageName : com.android.systemui className : com.android.systemui.recents.RecentsActivity 2019-05-11 20:23:37.047 1634-2400/? V/MdnieScenarioControlService: setUIMode from UI function(3) 2019-05-11 20:23:37.130 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b501ea00 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.android.systemui/com.android.systemui.recents.RecentsActivity#0 2019-05-11 20:23:37.216 1634-6976/? D/GamePkgDataHelper: getGamePkgDataIncServer(). com.android.systemui 2019-05-11 20:23:37.217 1634-6976/? D/GameManagerService: identifyGamePackage. com.android.systemui 2019-05-11 20:23:37.217 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.android.systemui 2019-05-11 20:23:37.217 1634-6976/? D/GameManagerService: identifyGamePackage. com.android.systemui 2019-05-11 20:23:37.217 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.android.systemui 2019-05-11 20:23:37.223 1634-6976/? D/GameManagerService: identifyGamePackage. com.android.systemui 2019-05-11 20:23:37.223 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.android.systemui 2019-05-11 20:23:37.227 1634-6976/? D/GameManagerService: identifyGamePackage. com.android.systemui 2019-05-11 20:23:37.228 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.android.systemui 2019-05-11 20:23:37.246 1634-6976/? D/SSRM:T: SIOP:: AP = 350, PST = 383 (W:10), BAT = 292, CHG = 352 2019-05-11 20:23:37.262 732-762/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only 2019-05-11 20:23:37.263 1634-1933/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1555200 uid : 1000 pid : 1634 pkgName : AMS_RESUME_TAIL@CPU_MIN@75 2019-05-11 20:23:37.263 1634-1933/? D/ActivityManagerPerformance: AMP_acquire() TAIL 2019-05-11 20:23:37.263 1634-1933/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1632000 uid : 1000 pid : 1634 tag : AMS_ACT_START@CPU_MIN@85 2019-05-11 20:23:37.267 1634-1933/? D/ActivityManagerPerformance: AMP_release() ACT_START 2019-05-11 20:23:37.290 1634-2342/? I/WindowManager: Destroying surface Surface(name=com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity) called by com.android.server.wm.WindowStateAnimator.destroySurface:2501 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:985 com.android.server.wm.WindowState.destroyOrSaveSurfaceUnchecked:3679 com.android.server.wm.WindowState.destroySurface:3627 com.android.server.wm.AppWindowToken.destroySurfaces:722 com.android.server.wm.AppWindowToken.destroySurfaces:706 com.android.server.wm.WindowState.onExitAnimationDone:5326 com.android.server.wm.AppWindowAnimator.stepAnimationLocked:508 2019-05-11 20:23:37.290 767-837/? I/SurfaceFlinger: id=389 Removed com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity#0 (1/5) 2019-05-11 20:23:37.295 767-840/? I/SurfaceFlinger: id=389 Removed com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity#0 (-2/5) 2019-05-11 20:23:37.306 767-767/? I/Layer: id=389 onRemoved com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity#0 2019-05-11 20:23:37.566 1634-1634/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1555200 uid : 1000 pid : 1634 tag : AMS_RESUME_TAIL@CPU_MIN@75 2019-05-11 20:23:37.569 1634-4905/? D/BatteryService: !@BatteryListener : batteryPropertiesChanged! 2019-05-11 20:23:37.570 1634-4905/? D/BatteryService: level:54, scale:100, status:2, health:2, present:true, voltage: 3844, temperature: 293, technology: Li-ion, AC powered:false, USB powered:true, POGO powered:false, Wireless powered:false, icon:17303845, invalid charger:0, maxChargingCurrent:0, maxChargingVoltage:0, chargeCounter:0 2019-05-11 20:23:37.570 1634-4905/? D/BatteryService: online:4, current avg:168, charge type:1, power sharing:false, high voltage charger:false, capacity:280000, batterySWSelfDischarging:false, misc_event:0, current_event:0, current_now:-637 2019-05-11 20:23:37.570 1634-1634/? D/BatteryService: Sending ACTION_BATTERY_CHANGED. 2019-05-11 20:23:37.573 1634-1634/? I/MotionRecognitionService: Plugged 2019-05-11 20:23:37.573 1634-1634/? D/MotionRecognitionService: mCableConnection= 1 2019-05-11 20:23:37.573 1634-1634/? D/MotionRecognitionService: setPowerConnected : mGripEnabled = false 2019-05-11 20:23:37.573 1634-1634/? D/SamsungPhoneWindowManager: ACTION_BATTERY_CHANGED - Level :: 54, battStatus :: 2 2019-05-11 20:23:37.575 2687-2687/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED 2019-05-11 20:23:37.576 2687-2687/? D/BatteryController: onReceive-ACTION_BATTERY_CHANGED : mLevel=54, mBatteryStatus=2 2019-05-11 20:23:37.578 2645-2645/? V/HeadsetService: Received Intent.ACTION_BATTERY_CHANGED 2019-05-11 20:23:37.578 2645-3243/? D/HeadsetStateMachine: Disconnected process message: 10, size: 0 2019-05-11 20:23:37.578 1634-1930/? D/UsbDeviceManager: handleMessage -> MSG_UPDATE_CHARGING_STATE = 1 2019-05-11 20:23:37.580 2687-2687/? D/PowerUI: priorPlugType = 2 mPlugType = 2 2019-05-11 20:23:37.580 2982-3117/? D/EPDG -- SIM0 [EpdgSubScription]: android.intent.action.BATTERY_CHANGED intent received. 2019-05-11 20:23:37.581 2687-2687/? D/PowerUI.Notification: showChargingNotice oldChargingType : 1 currentChargingType : 1 oldChargingTime : 13704000 mChargingTime : 13704000 2019-05-11 20:23:37.581 2687-2687/? D/PowerUI.Notification: There is no change about charging status, so return! 2019-05-11 20:23:37.584 20552-20552/? D/BatteryManager: Receiving Battery Change 54.000004% 2019-05-11 20:23:37.584 20552-20552/? D/BatteryManager: Receiving Battery Change1 0.54% 2019-05-11 20:23:37.584 20552-20552/? D/BatteryManager: Receiving Battery Change2 0.15% 2019-05-11 20:23:37.584 20552-20552/? D/BatteryManager: Receiving Battery Change3 false% 2019-05-11 20:23:37.732 729-729/? I/android.hardware.wifi@1.0-service: getLinkLayerStats 2019-05-11 20:23:37.940 1634-6976/? D/SSRM:T: SIOP:: AP = 360, PST = 380 (W:10), BAT = 293, CHG = 352 2019-05-11 20:23:37.945 1634-2391/? D/InputReader: Input event(5): value=1 when=7430060321000 2019-05-11 20:23:37.945 1634-2391/? D/InputReader: Input event(5): value=1 when=7430060321000 2019-05-11 20:23:37.945 1634-2391/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.763 ] when=7430060321000 2019-05-11 20:23:37.946 1634-2390/? I/InputDispatcher: Delivering touch to (2687): action: 0x0, toolType: 1 2019-05-11 20:23:37.947 1634-2390/? I/InputDispatcher: Delivering touch to (2687): action: 0x0, toolType: 1 2019-05-11 20:23:37.947 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: ViewPostIme pointer 0 2019-05-11 20:23:38.047 1634-2391/? D/InputReader: Input event(5): value=0 when=7430162678000 2019-05-11 20:23:38.047 1634-2391/? D/InputReader: Input event(5): value=0 when=7430162678000 2019-05-11 20:23:38.047 1634-2391/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=7430162678000 2019-05-11 20:23:38.047 1634-2390/? I/InputDispatcher: Delivering touch to (2687): action: 0x1, toolType: 1 2019-05-11 20:23:38.047 1634-2390/? I/InputDispatcher: Delivering touch to (2687): action: 0x1, toolType: 1 2019-05-11 20:23:38.048 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: ViewPostIme pointer 1 2019-05-11 20:23:38.052 2687-2687/? D/RecentsTransitionHelper: startTaskActivity for id=22 stackId=-1 user=0 lastActiveTime=1557624186886 to stackId=-1 2019-05-11 20:23:38.052 2687-2687/? D/SystemServicesProxy: startActivityFromRecents: task=22 2019-05-11 20:23:38.053 2687-2687/? D/SystemServicesProxy: sendCloseSystemWindows: reason=homekey 2019-05-11 20:23:38.055 2687-2687/? D/SystemUIAnalytics: sendEventLog 500, 5101, com.howlersstudio.allensrage, 1 2019-05-11 20:23:38.067 1634-2409/? I/ActivityManager: START u0 {act=android.intent.action.MAIN typ=null flg=0x10100000 cmp=ComponentInfo{com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity}} from uid 10027 2019-05-11 20:23:38.069 732-762/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only 2019-05-11 20:23:38.069 1634-2409/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1555200 uid : 1000 pid : 1634 pkgName : AMS_APP_SWITCH@CPU_MIN@64 2019-05-11 20:23:38.071 1634-2409/? D/ActivityManagerPerformance: AMP_acquire() APP_SWITCH 2019-05-11 20:23:38.072 1634-4179/? D/ActivityManagerPerformance: Received MSG_CFMS_HINT_AMS_SWITCH pkgName: com.howlersstudio.allensrage 2019-05-11 20:23:38.077 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:38.077 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:38.077 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:38.078 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:38.078 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:38.078 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:38.078 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:38.078 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:38.078 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:38.081 2687-2862/? D/SystemServicesProxy: startActivityFromRecents: done. 2019-05-11 20:23:38.083 2687-2687/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.084 1634-1634/? D/MdnieScenarioControlService: Listener Real Multi Window State : false 2019-05-11 20:23:38.084 1634-1634/? D/CS_HdrController: MultiWindowEventListener::onFocusStackChanged(1) 2019-05-11 20:23:38.085 2687-3073/? D/OpenGLRenderer: eglCreateWindowSurface = 0x76fffff9c0 2019-05-11 20:23:38.088 2687-3073/? D/OpenGLRenderer: eglDestroySurface = 0x76fffff9c0 2019-05-11 20:23:38.089 2687-2687/? E/BufferItemConsumer: [unnamed-2687-7] Failed to release buffer: Unknown error -1 (1) 2019-05-11 20:23:38.089 1634-1634/? D/CS_HdrController: updateMultiWindowState : 0 2019-05-11 20:23:38.090 1634-1634/? D/CodecSolution: MultiWindowEventListener::onMultiWindowFocusChanged(1) 2019-05-11 20:23:38.094 1634-1634/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false 2019-05-11 20:23:38.095 2687-2862/? D/SystemServicesProxy: sendCloseSystemWindows: done. 2019-05-11 20:23:38.095 1634-2342/? D/ViewRootImpl@b7b64b4[allensrage]: setView = DecorView@5f4ac52[allensrage] TM=true MM=false 2019-05-11 20:23:38.096 2687-3048/? D/vol.VolumeDialogControl: onReceive ACTION_CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:38.098 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;activeStream 2019-05-11 20:23:38.098 1021-2523/? V/APM_AudioPolicyManager: ### active stream : 0 2019-05-11 20:23:38.098 1634-6976/? D/AudioService: active stream is 0x0 2019-05-11 20:23:38.101 2687-3045/? D/LocationControllerImpl: onReceive() = android.intent.action.CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:38.104 1634-2342/? D/ViewRootImpl@b7b64b4[allensrage]: dispatchAttachedToWindow 2019-05-11 20:23:38.104 1634-2342/? V/WindowManager: Relayout Window{370e8dd u0 Splash Screen com.howlersstudio.allensrage}: viewVisibility=0 req=1079x1856 WM.LayoutParams{(0,0)(fillxfill) sim=#20 ty=3 fl=#81830518 pfl=0x20011 wanim=0x10302fd vsysui=0x600 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:38.108 767-767/? I/SurfaceFlinger: id=391 createSurf (1080x1920),1 flag=404, Splash Screen com.howlersstudio.allensrage#0 2019-05-11 20:23:38.109 1634-2342/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.112 1634-2342/? D/ViewRootImpl@b7b64b4[allensrage]: Relayout returned: old=[0,0][0,0] new=[0,0][1080,1920] result=0x7 surface={valid=true 511027679232} changed=true 2019-05-11 20:23:38.114 1634-4905/? D/ActivityManager: isScaleDownAnimationEnabled() : false 2019-05-11 20:23:38.115 1634-4905/? D/StorageManagerService: getExternalStorageMountMode : 1 2019-05-11 20:23:38.115 1634-4905/? D/StorageManagerService: getExternalStorageMountMode : 3 2019-05-11 20:23:38.115 1634-4905/? D/StorageManagerService: getExternalStorageMountMode : final mountMode=1, uid : 10330, packageName : com.howlersstudio.allensrage 2019-05-11 20:23:38.115 1634-4905/? I/ApplicationPolicy: isApplicationExternalStorageWhitelisted:com.howlersstudio.allensrage user:0 2019-05-11 20:23:38.115 1634-4905/? D/ApplicationPolicy: isApplicationExternalStorageWhitelisted: DO is not enabled on user 0. Allowed. 2019-05-11 20:23:38.115 1634-4905/? D/ActivityManager: package com.howlersstudio.allensrage, user - 0 is SDcard whitelisted 2019-05-11 20:23:38.115 1634-4905/? I/ApplicationPolicy: isApplicationExternalStorageBlacklisted:com.howlersstudio.allensrage user:0 2019-05-11 20:23:38.116 1634-4905/? D/ApplicationPolicy: isApplicationExternalStorageBlacklisted: DO is not enabled on user 0. Allowed. 2019-05-11 20:23:38.130 1634-2342/? V/WindowManager: finishDrawingLocked: mDrawState=COMMIT_DRAW_PENDING Window{370e8dd u0 Splash Screen com.howlersstudio.allensrage} in Surface(name=Splash Screen com.howlersstudio.allensrage) 2019-05-11 20:23:38.135 1634-4905/? I/ActivityManager: Start proc 21745:com.howlersstudio.allensrage/u0a330 for activity com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity 2019-05-11 20:23:38.137 21745-21745/? E/Zygote: isWhitelistProcess - Process is Whitelisted 2019-05-11 20:23:38.139 21745-21745/? E/libpersona: scanKnoxPersonas 2019-05-11 20:23:38.139 21745-21745/? E/libpersona: Couldn't open the File - /data/system/users/0/personalist.xml - No such file or directory 2019-05-11 20:23:38.143 21745-21745/? W/SELinux: SELinux selinux_android_compute_policy_index : Policy Index[2], Con:u:r:zygote:s0 RAM:SEPF_SAMSUNG-SM-G891A_8.0.0_0009, [-1 -1 -1 -1 0 1] 2019-05-11 20:23:38.144 21745-21745/? I/SELinux: SELinux: seapp_context_lookup: seinfo=untrusted, level=s0:c512,c768, pkgname=com.howlersstudio.allensrage 2019-05-11 20:23:38.146 2687-2687/? D/vol.SecVolumeDialogImpl: dismissH reason: 2 2019-05-11 20:23:38.146 2687-2687/? D/Tile.AirplaneModeTile: onReceive: android.intent.action.CLOSE_SYSTEM_DIALOGS mSimCount 1 2019-05-11 20:23:38.146 2687-2687/? D/PopupUI: PopupUIReceiver.onReceive() action : android.intent.action.CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:38.146 2687-2687/? D/PopupUI.PopupUINotifications: dismissAlertDialogs() 2019-05-11 20:23:38.146 2687-2687/? D/BrightnessMirror: hideMirror cancelled since it's not visible 2019-05-11 20:23:38.147 2687-2687/? D/GlobalActionsDialog: mBroadcastReceiver : onReceive : android.intent.action.CLOSE_SYSTEM_DIALOGS 2019-05-11 20:23:38.147 2687-2687/? D/GlobalActionsDialog: mBroadcastReceiver : onReceive : MESSAGE_DISMISS 2019-05-11 20:23:38.150 2687-6628/? D/SamsungAnalytics: [DLC Sender] send result success : 0 2019-05-11 20:23:38.156 21745-21745/? W/zygote: Using default instruction set features for ARM CPU variant (cortex-a9) using conservative defaults 2019-05-11 20:23:38.183 21745-21745/? D/TimaKeyStoreProvider: TimaKeyStore is not enabled: cannot add TimaSignature Service and generateKeyPair Service 2019-05-11 20:23:38.183 21745-21745/? D/ActivityThread: Added TimaKeyStore provider 2019-05-11 20:23:38.185 1634-2974/? I/ActivityManager: DSS on for com.howlersstudio.allensrage and scale is 1.0 2019-05-11 20:23:38.188 1634-2974/? V/WindowManager: rotationForOrientationLw(orient=1, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false 2019-05-11 20:23:38.193 1634-2974/? D/PersonaManagerService: Current focused persona service handled id set to : 0 2019-05-11 20:23:38.194 1634-2974/? D/InputDispatcher: Focused application set to: xxxx 2019-05-11 20:23:38.194 1634-2974/? D/InputDispatcher: Focus left window: 2687 2019-05-11 20:23:38.196 1634-2974/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.howlersstudio.allensrage, userId = 0 2019-05-11 20:23:38.196 1634-2558/? D/GameManagerService: handleForegroundChange(). pkgName: com.howlersstudio.allensrage, clsName: com.unity3d.player.UnityPlayerActivity,FgActivityName:com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity 2019-05-11 20:23:38.197 1634-2558/? D/GameManagerService: sem_perfomance_mode: 0 2019-05-11 20:23:38.197 1634-2558/? D/GameManagerService: notifyResumePause(). pkg: com.howlersstudio.allensrage, type: 4, isMinimized: false, isTunableApp: false 2019-05-11 20:23:38.197 1634-2558/? D/GameManagerService: notifyResumePause(). do nothing. mKillNotiCount: 3 2019-05-11 20:23:38.197 2687-2707/? D/RecentsTransitionHelper: IAppTransitionAnimationSpecsFuture.get(): post composing and wait 2019-05-11 20:23:38.204 1634-6976/? D/GamePkgDataHelper: getGamePkgDataIncServer(). com.howlersstudio.allensrage 2019-05-11 20:23:38.205 1634-4174/? D/Dex2oatAdjuster: Before bg size = 0 2019-05-11 20:23:38.205 1634-2342/? D/SamsungAnimationCreator: createAnimation type:LowEnd transit:12 enter:false wallpaperXoffset:-54 split:false fixedOri:false 2019-05-11 20:23:38.205 1634-4174/? D/Dex2oatAdjuster: After bg size = 0 fg size = 0 2019-05-11 20:23:38.205 1634-2342/? D/SamsungAnimationCreator: createAnimation displayFrame:Rect(0, 0 - 1080, 1920) frame:null insets:null 2019-05-11 20:23:38.205 2838-22999/? D/ProcessObserver_FLP: onForegroundActivities changed, 21745/10330/true 2019-05-11 20:23:38.205 10635-10649/? I/SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 21745 , isNotify : true , isForeground : true , fg list : [21745] 2019-05-11 20:23:38.206 2945-3177/? D/ForegroundUtils: could not check pending caller 2019-05-11 20:23:38.208 1634-6976/? D/GameManagerService: identifyGamePackage. com.howlersstudio.allensrage 2019-05-11 20:23:38.208 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.howlersstudio.allensrage 2019-05-11 20:23:38.208 2687-2687/? D/RecentsTransitionHelper: IAppTransitionAnimationSpecsFuture.get(): run composeSpecs 2019-05-11 20:23:38.209 767-767/? I/SurfaceFlinger: id=392 createSurf (915x106),1 flag=4, thumbnail anim#0 2019-05-11 20:23:38.209 1634-6976/? D/GameManagerService: identifyGamePackage. com.howlersstudio.allensrage 2019-05-11 20:23:38.209 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.howlersstudio.allensrage 2019-05-11 20:23:38.210 1634-2342/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.210 1634-6976/? D/GameManagerService: identifyGamePackage. com.howlersstudio.allensrage 2019-05-11 20:23:38.210 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.howlersstudio.allensrage 2019-05-11 20:23:38.215 21745-21745/? I/zygote: no shared libraies, dex_files: 1 2019-05-11 20:23:38.215 1634-6976/? D/GameManagerService: identifyGamePackage. com.howlersstudio.allensrage 2019-05-11 20:23:38.216 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.howlersstudio.allensrage 2019-05-11 20:23:38.222 1634-6976/? D/GameManagerService: identifyGamePackage. com.howlersstudio.allensrage 2019-05-11 20:23:38.222 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.howlersstudio.allensrage 2019-05-11 20:23:38.223 2687-2687/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.225 2687-3073/? D/OpenGLRenderer: eglCreateWindowSurface = 0x76fffee380 2019-05-11 20:23:38.226 1634-1882/? D/WindowManager: set systemUiVisibility : systemUiFlags= 0x608 fullscreenStackSysUiFlags= 0x0 2019-05-11 20:23:38.231 2687-3073/? D/OpenGLRenderer: eglDestroySurface = 0x76fffee380 2019-05-11 20:23:38.231 2687-2687/? E/BufferItemConsumer: [unnamed-2687-8] Failed to release buffer: Unknown error -1 (1) 2019-05-11 20:23:38.231 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: MSG_WINDOW_FOCUS_CHANGED 0 2019-05-11 20:23:38.235 1634-2409/? D/WindowManager: adjustSystemUiVisibilityLw : vis= 0x608 2019-05-11 20:23:38.238 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b53d1f00 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.android.systemui/com.android.systemui.recents.RecentsActivity#0 Device | 0x79b53d1500 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1626.0 | 81 391 998 1772 | Splash Screen com.howlersstudio.allensrage#0 Device | 0x79b53fe500 | 0000 | RGBA_8888 | 0.0 0.0 915.0 106.0 | 81 391 997 498 | thumbnail anim#0 2019-05-11 20:23:38.241 2687-2707/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: newTime=1557622271889 2019-05-11 20:23:38.242 1634-2409/? D/SecContentProvider: query(), uri = 17 selection = isSettingsChangesAllowed 2019-05-11 20:23:38.242 1634-2409/? D/SecContentProvider: called from android.uid.systemui:10074 2019-05-11 20:23:38.243 2687-2862/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: done. 2019-05-11 20:23:38.256 1634-6976/? D/SSRM:T: SIOP:: AP = 360, PST = 378 (W:10), BAT = 293, CHG = 352 2019-05-11 20:23:38.326 3926-3926/? D/io_stats: !@ 8,0 r 410969 12957040 w 120635 2599816 d 13509 1026124 f 38884 38898 iot 233200 177068 th 51200 0 0 pt 0 inp 0 0 7430.442 2019-05-11 20:23:38.331 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: setView = DecorView@732116f[UnityPlayerActivity] TM=true MM=false 2019-05-11 20:23:38.331 1634-5462/? D/ActivityManager: post active user change for 0 fullscreen true isHomeActivity() false 2019-05-11 20:23:38.332 21745-21745/? V/InputMethodManager: Not IME target window, ignoring 2019-05-11 20:23:38.333 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: dispatchAttachedToWindow 2019-05-11 20:23:38.336 1634-5462/? V/WindowManager: Relayout Window{48d73aa u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity}: viewVisibility=0 req=1079x1856 WM.LayoutParams{(0,0)(fillxfill) sim=#120 ty=1 fl=#80810500 pfl=0x20000 wanim=0x10302fd vsysui=0x600 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:38.337 1634-2400/? D/MdnieScenarioControlService: packageName : com.howlersstudio.allensrage className : com.unity3d.player.UnityPlayerActivity 2019-05-11 20:23:38.337 1634-2400/? V/MdnieScenarioControlService: setUIMode from UI function(3) 2019-05-11 20:23:38.339 767-767/? I/SurfaceFlinger: id=393 createSurf (1080x1920),2 flag=404, com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#0 2019-05-11 20:23:38.341 1634-5462/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.344 1634-5462/? D/InputDispatcher: Focus entered window: 21745 2019-05-11 20:23:38.345 21745-21745/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.346 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: Relayout returned: old=[0,0][0,0] new=[0,0][1080,1920] result=0x7 surface={valid=true 3751776256} changed=true 2019-05-11 20:23:38.348 767-767/? I/SurfaceFlinger: id=394 createSurf (1080x1920),4 flag=404, SurfaceView - com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity@56aff5a@0#0 2019-05-11 20:23:38.349 767-767/? I/SurfaceFlinger: id=395 createSurf (1080x1920),-1 flag=20404, Background for - SurfaceView - com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity@56aff5a@0#0 2019-05-11 20:23:38.350 21745-21745/? D/SurfaceView: BG show() Surface(name=Background for - SurfaceView - com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity@56aff5a@0) android.view.SurfaceView{56aff5a VFE...... .F....ID 0,0-1080,1920} 2019-05-11 20:23:38.366 21745-21745/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.366 21745-21745/? D/SurfaceView: surfaceCreated 1 android.view.SurfaceView{56aff5a VFE...... .F....ID 0,0-1080,1920} 2019-05-11 20:23:38.367 21745-21745/? D/SurfaceView: surfaceChanged (1080,1920) 1 android.view.SurfaceView{56aff5a VFE...... .F....ID 0,0-1080,1920} 2019-05-11 20:23:38.368 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: MSG_RESIZED_REPORT: frame=Rect(0, 0 - 1080, 1920) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=1 2019-05-11 20:23:38.368 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: MSG_WINDOW_FOCUS_CHANGED 1 2019-05-11 20:23:38.370 21745-21745/? V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@1f8558b nm : com.howlersstudio.allensrage ic=null 2019-05-11 20:23:38.370 21745-21745/? I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus 2019-05-11 20:23:38.371 1634-5462/? D/InputMethodManagerService: startInputOrWindowGainedFocus : windowGainedFocus 2019-05-11 20:23:38.371 1634-5462/? D/InputMethodManagerService: windowGainedFocus: destinationUserId (getCallingUid) = 0 2019-05-11 20:23:38.371 1634-5462/? D/InputMethodManagerService: windowGainedFocus: currentUserId=0 2019-05-11 20:23:38.371 1634-5462/? D/InputMethodManagerService: windowGainedFocus: mCurrentFocusedUserId=0 2019-05-11 20:23:38.371 1634-5462/? D/InputMethodManagerService: windowGainedFocus : lock - currentUserId = 0 destinationUserId = 0 2019-05-11 20:23:38.371 1634-5462/? D/InputMethodManagerService: windowGainedFocus : mCurrentFocusedUserId - 0 and mSecureKeypadEnabled - false, userSwitched - false 2019-05-11 20:23:38.371 1634-5462/? V/InputMethodManagerService: windowGainedFocus : reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@22964c inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@8f43b9b nm = com.howlersstudio.allensrage controlFlags=#105 softInputMode=#120 windowFlags=#80810500 2019-05-11 20:23:38.371 1634-5462/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false 2019-05-11 20:23:38.372 1634-5462/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false 2019-05-11 20:23:38.372 1634-5462/? V/InputMethodManagerService: Creating new session for client ClientState{f08cb38 uid 10330 pid 21745} 2019-05-11 20:23:38.374 1634-5462/? D/InputMethodManagerService: setCurrentInputInfo - inputContext : null eidtorInfo : android.view.inputmethod.EditorInfo@8f43b9b missingMethods : 0 2019-05-11 20:23:38.375 21745-21745/? V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@54ef668 nm : com.howlersstudio.allensrage ic=null 2019-05-11 20:23:38.375 15257-15257/? I/InputMethodWrapper: call dispatchStartInputWithToken 2019-05-11 20:23:38.375 15257-15257/? I/InputMethodService: dispatchStartInputWithToken 2019-05-11 20:23:38.383 1634-2974/? V/WindowManager: Relayout Window{48d73aa u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity}: viewVisibility=0 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#20 ty=1 fl=#80810500 pfl=0x20000 fmt=-3 wanim=0x10302fd vsysui=0x600 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:38.386 767-767/? D/SurfaceFlinger: duplicate layer name: changing com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity to com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 2019-05-11 20:23:38.386 767-767/? I/SurfaceFlinger: id=396 createSurf (1080x1920),1 flag=4, com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 2019-05-11 20:23:38.388 1634-2974/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.395 21745-21745/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:38.395 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x7 surface={valid=true 3503972352} changed=true 2019-05-11 20:23:38.420 21745-21745/? I/vndksupport: sphal namespace is not configured for this process. Loading /vendor/lib/hw/gralloc.msm8996.so from the current namespace instead. 2019-05-11 20:23:38.426 1634-2974/? W/StorageManager: getStorageLowBytes lowPercent : 5, lowBytes : 1231144345, maxLowBytes : 524288000 2019-05-11 20:23:38.439 1634-2974/? V/WindowManager: finishDrawingLocked: mDrawState=COMMIT_DRAW_PENDING Window{48d73aa u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity} in Surface(name=com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity) 2019-05-11 20:23:38.443 21745-21763/? I/Unity: SystemInfo CPU = ARMv7 VFPv3 NEON, Cores = 4, Memory = 3722mb 2019-05-11 20:23:38.443 21745-21763/? I/Unity: SystemInfo ARM big.LITTLE configuration: 2 big (mask: 0xc), 2 little (mask: 0x3) 2019-05-11 20:23:38.444 21745-21763/? I/Unity: ApplicationInfo com.howlersstudio.allensrage version 0.1 build eecf1018-fef0-4d46-9501-b4d7d0836fcf 2019-05-11 20:23:38.444 21745-21763/? I/Unity: Built from '2019.1/staging' branch, Version '2019.1.0f2 (292b93d75a2c)', Build type 'Release', Scripting Backend 'mono', CPU 'armeabi-v7a', Stripping 'Disabled' 2019-05-11 20:23:38.448 1634-2342/? D/ViewRootImpl@b7b64b4[allensrage]: dispatchDetachedFromWindow 2019-05-11 20:23:38.448 1634-2342/? D/InputEventReceiver: channel '370e8dd Splash Screen com.howlersstudio.allensrage (client)' ~ Disposing input event receiver. 2019-05-11 20:23:38.448 1634-2342/? D/InputEventReceiver: channel '370e8dd Splash Screen com.howlersstudio.allensrage (client)' ~NativeInputEventReceiver. 2019-05-11 20:23:38.452 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b501ea00 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.android.systemui/com.android.systemui.recents.RecentsActivity#0 Device | 0x79b53d1500 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1880.0 | 11 53 1069 1894 | Splash Screen com.howlersstudio.allensrage#0 2019-05-11 20:23:38.457 1634-2974/? V/WindowManager: Relayout Window{48d73aa u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity}: viewVisibility=0 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#20 ty=1 fl=#80810580 pfl=0x20000 fmt=-3 wanim=0x10302fd vsysui=0x600 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:38.461 1634-2974/? D/PowerManagerService: [api] acquire WakeLock flags=0x2000000a tag=WindowManager uid=1000 pid=1634 ws=WorkSource{10330} pkg=android 2019-05-11 20:23:38.463 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=true 3503972352} changed=false 2019-05-11 20:23:38.468 1634-2342/? I/WindowManager: Destroying surface Surface(name=com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity) called by com.android.server.wm.WindowStateAnimator.destroyDeferredSurfaceLocked:1023 com.android.server.wm.WindowStateAnimator.destroyPreservedSurfaceLocked:667 com.android.server.wm.WindowManagerService.destroyPreservedSurfaceLocked:6198 com.android.server.wm.WindowAnimator.animate:300 com.android.server.wm.WindowAnimator.lambda$-com_android_server_wm_WindowAnimator_4294:111 com.android.server.wm.-$Lambda$OQfQhd_xsxt9hoLAjIbVfOwa-jY.$m$0:4 com.android.server.wm.-$Lambda$OQfQhd_xsxt9hoLAjIbVfOwa-jY.doFrame:0 android.view.Choreographer$CallbackRecord.run:909 2019-05-11 20:23:38.468 1634-1933/? I/ActivityManager: Displayed com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity: +331ms 2019-05-11 20:23:38.469 767-840/? I/SurfaceFlinger: id=393 Removed com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#0 (4/8) 2019-05-11 20:23:38.469 1634-1933/? E/ANDR-PERF-JNI: com_qualcomm_qtiperformance_native_perf_io_prefetch_start 2019-05-11 20:23:38.469 1634-1933/? E/ANDR-PERF-JNI: gIOPHAl initialized 2019-05-11 20:23:38.469 767-840/? I/SurfaceFlinger: id=393 Removed com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#0 (-2/8) 2019-05-11 20:23:38.481 767-767/? I/Layer: id=393 onRemoved com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#0 2019-05-11 20:23:38.484 1634-2974/? V/WindowManager: Relayout Window{48d73aa u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity}: viewVisibility=0 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#20 ty=1 fl=#80810580 pfl=0x20000 fmt=-3 wanim=0x10302fd vsysui=0x1706 sysuil=true needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:38.488 1634-1882/? D/WindowManager: set systemUiVisibility : systemUiFlags= 0x170e fullscreenStackSysUiFlags= 0x0 2019-05-11 20:23:38.493 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=true 3503972352} changed=false 2019-05-11 20:23:38.500 1634-5462/? D/WindowManager: adjustSystemUiVisibilityLw : vis= 0x170e 2019-05-11 20:23:38.502 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b501ea00 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.android.systemui/com.android.systemui.recents.RecentsActivity#0 SolidColor | | 0002 | Unknown | 0.0 0.0 -1.0 -1.0 | 6 27 1075 1906 | Background for - SurfaceView - com.h[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79b53af580 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1899.0 | 6 27 1075 1906 | com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 Device | 0x79b53d1500 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1899.0 | 6 27 1075 1906 | Splash Screen com.howlersstudio.allensrage 2019-05-11 20:23:38.502 767-767/? I/SurfaceFlinger: #0 2019-05-11 20:23:38.582 21745-21763/? I/Adreno: QUALCOMM build : 1b7798b, I8a9bdcf8d3 Build Date : 03/15/18 OpenGL ES Shader Compiler Version: EV031.22.00.01 Local Branch : Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.UM.6.5.R1.08.00.00.312.043 Remote Branch : NONE Reconstruct Branch : NOTHING 2019-05-11 20:23:38.583 21745-21763/? I/vndksupport: sphal namespace is not configured for this process. Loading /vendor/lib/hw/gralloc.msm8996.so from the current namespace instead. 2019-05-11 20:23:38.587 21745-21763/? I/Adreno: PFP: 0x005ff087, ME: 0x005ff063 2019-05-11 20:23:38.610 21745-21763/? D/Unity: GL_OES_EGL_image GL_OES_EGL_image_external GL_OES_EGL_sync GL_OES_vertex_half_float GL_OES_framebuffer_object GL_OES_rgb8_rgba8 GL_OES_compressed_ETC1_RGB8_texture GL_AMD_compressed_ATC_texture GL_KHR_texture_compression_astc_ldr GL_KHR_texture_compression_astc_hdr GL_OES_texture_compression_astc GL_OES_texture_npot GL_EXT_texture_filter_anisotropic GL_EXT_texture_format_BGRA8888 GL_OES_texture_3D GL_EXT_color_buffer_float GL_EXT_color_buffer_half_float GL_QCOM_alpha_test GL_OES_depth24 GL_OES_packed_depth_stencil GL_OES_depth_texture GL_OES_depth_texture_cube_map GL_EXT_sRGB GL_OES_texture_float GL_OES_texture_float_linear GL_OES_texture_half_float GL_OES_texture_half_float_linear GL_EXT_texture_type_2_10_10_10_REV GL_EXT_texture_sRGB_decode GL_OES_element_index_uint GL_EXT_copy_image GL_EXT_geometry_shader GL_EXT_tessellation_shader GL_OES_texture_stencil8 GL_EXT_shader_io_blocks GL_OES_shader_image_atomic GL_OES_sample_variables GL_EXT_texture_border_clamp GL_EXT_multisampled_render_to_texture GL_EXT_mul 2019-05-11 20:23:38.610 21745-21763/? D/Unity: tisampled_render_to_texture2 GL_OES_shader_multisample_interpolation GL_EXT_texture_cube_map_array GL_EXT_draw_buffers_indexed GL_EXT_gpu_shader5 GL_EXT_robustness GL_EXT_texture_buffer GL_EXT_shader_framebuffer_fetch GL_ARM_shader_framebuffer_fetch_depth_stencil GL_OES_texture_storage_multisample_2d_array GL_OES_sample_shading GL_OES_get_program_binary GL_EXT_debug_label GL_KHR_blend_equation_advanced GL_KHR_blend_equation_advanced_coherent GL_QCOM_tiled_rendering GL_ANDROID_extension_pack_es31a GL_EXT_primitive_bounding_box GL_OES_standard_derivatives GL_OES_vertex_array_object GL_EXT_disjoint_timer_query GL_KHR_debug GL_EXT_YUV_target GL_EXT_sRGB_write_control GL_EXT_texture_norm16 GL_EXT_discard_framebuffer GL_OES_surfaceless_context GL_OVR_multiview GL_OVR_multiview2 GL_EXT_texture_sRGB_R8 GL_KHR_no_error GL_EXT_debug_marker GL_OES_EGL_image_external_essl3 GL_OVR_multiview_multisampled_render_to_texture GL_EXT_buffer_storage GL_EXT_external_buffer GL_EXT_blit_framebuffer_params GL_EXT_clip_cull_distance 2019-05-11 20:23:38.610 21745-21763/? D/Unity: GL_EXT_protected_textures GL_EXT_shader_non_constant_global_initializers GL_QCOM_texture_foveated GL_QCOM_shader_framebuffer_fetch_noncoherent GL_EXT_memory_object GL_EXT_memory_object_fd GL_EXT_EGL_image_array GL_NV_shader_noperspective_interpolation 2019-05-11 20:23:38.611 1634-5462/? W/StorageManager: getStorageLowBytes lowPercent : 5, lowBytes : 1231144345, maxLowBytes : 524288000 2019-05-11 20:23:38.623 21745-21789/? D/libGLESv2: STS_GLApi : DTS, ODTC are not allowed for Package : com.howlersstudio.allensrage 2019-05-11 20:23:38.631 1634-2342/? I/WindowManager: Destroying surface Surface(name=Splash Screen com.howlersstudio.allensrage) called by com.android.server.wm.WindowStateAnimator.destroySurface:2501 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:985 com.android.server.wm.WindowState.destroyOrSaveSurfaceUnchecked:3679 com.android.server.wm.WindowState.destroySurface:3627 com.android.server.wm.AppWindowToken.destroySurfaces:722 com.android.server.wm.AppWindowToken.destroySurfaces:706 com.android.server.wm.WindowState.onExitAnimationDone:5326 com.android.server.wm.WindowStateAnimator.stepAnimationLocked:550 2019-05-11 20:23:38.631 767-840/? I/SurfaceFlinger: id=391 Removed Splash Screen com.howlersstudio.allensrage#0 (4/7) 2019-05-11 20:23:38.634 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b53d1f00 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.android.systemui/com.android.systemui.recents.RecentsActivity#0 SolidColor | | 0002 | Unknown | 0.0 0.0 -1.0 -1.0 | 0 1 1080 1920 | Background for - SurfaceView - com.h[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79b53af580 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1919.0 | 0 1 1080 1920 | com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 2019-05-11 20:23:38.639 767-840/? I/SurfaceFlinger: id=391 Removed Splash Screen com.howlersstudio.allensrage#0 (-2/7) 2019-05-11 20:23:38.641 1021-2523/? V/APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 0 ports 0xe9e930d8 2019-05-11 20:23:38.641 1021-2523/? V/APM_AudioPolicyManager: listAudioPorts() got 0 ports needed 11 2019-05-11 20:23:38.642 1021-2523/? V/APM_AudioPolicyManager: listAudioPorts() role 0 type 0 num_ports 11 ports 0xe7754e40 2019-05-11 20:23:38.642 1021-2523/? V/APM_AudioPolicyManager: listAudioPorts() got 11 ports needed 11 2019-05-11 20:23:38.647 767-767/? I/Layer: id=391 onRemoved Splash Screen com.howlersstudio.allensrage#0 2019-05-11 20:23:38.652 21745-21763/? I/libOpenSLES: Emulating old channel mask behavior (ignoring positional mask 0x3, using default mask 0x3 based on channel count of 2) 2019-05-11 20:23:38.652 21745-21763/? W/AudioTrack: notificationFrames=-21 clamped to the range -1 to -8 2019-05-11 20:23:38.652 1021-2523/? V/APM_AudioPolicyManager: getOutputForAttr() usage=1, content=2, tag= flags=00000000 session 345 selectedDeviceId 0 2019-05-11 20:23:38.652 1021-2523/? D/APM::SoundKitchen: getDevice, uid = 10330, device = 0 2019-05-11 20:23:38.652 1021-2523/? V/APM_AudioPolicyManager: getOutputForAttr() device 0x2, samplingRate 48000, format 1, channelMask 3, flags 104 2019-05-11 20:23:38.652 1021-2523/? V/APM_AudioPolicyManager: selectOutput() commonFlags for output 13, 0000 2019-05-11 20:23:38.652 1021-2523/? V/APM_AudioPolicyManager: selectOutput() commonFlags for output 21, 0001 2019-05-11 20:23:38.652 1021-2523/? V/APM_AudioPolicyManager: selectOutput() commonFlags for output 29, 0002 2019-05-11 20:23:38.652 1021-2523/? V/APM_AudioPolicyManager: getOutputForDevice() returns output 29 2019-05-11 20:23:38.653 1021-2523/? I/AudioFlinger: add dynamic flag, can move to deep thread, session 345 2019-05-11 20:23:38.655 21745-21763/? I/AudioTrack: AUDIO_OUTPUT_FLAG_FAST successful; frameCount 1536 -> 1536 2019-05-11 20:23:38.655 21745-21763/? D/AudioTrack: Client defaulted notificationFrames to 192 for frameCount 1536 2019-05-11 20:23:38.657 21745-21763/? I/AudioTrack: updateAudioTranstionLength FadeIn[0] FadeOut[0] FadeInRing[0] 2019-05-11 20:23:38.658 1021-2523/? W/AudioPolicyIntefaceImpl: Skipped to add effects on session 345 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: startOutput() output 29, stream 3, session 345 2019-05-11 20:23:38.658 1021-2523/? D/APM::SoundKitchen: getDevice, uid = 10330, device = 0 2019-05-11 20:23:38.658 1021-2523/? D/APM_AudioPolicyManager: newDevice=0 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: setBeaconMute(1) mBeaconMuteRefCount=1 mBeaconPlayingRefCount=0 2019-05-11 20:23:38.658 1634-5462/? D/AudioPlaybackMonitor: Found a new active media playback. ID:375 -- type:OpenSL ES AudioPlayer (Buffer Queue) -- u/pid:10330/21745 -- state:started -- attr:AudioAttributes: usage=1 content=0 flags=0x0 tags= bundle=null 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: selectOutputForMusicEffects activeOnly 1 outputs[2] flags 0x00000104 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: selectOutputForMusicEffects selected output 13 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 2 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: setOutputDevice() device 0002 delayMs 0 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: setOutputDevice() prevDevice 0x0002 2019-05-11 20:23:38.658 1021-2523/? V/APM_AudioPolicyManager: setOutputDevice() setting same device 0x0002 or null device 2019-05-11 20:23:38.658 1021-2523/? I/AudioEffectStage: getStageIndex low_output_sub1_normal 2019-05-11 20:23:38.658 1634-5462/? D/MediaSessionStack: updateMediaButtonSessionIfNeeded, callers=com.android.server.media.MediaSessionService$1.onAudioPlaybackStarted:189 com.android.server.media.AudioPlaybackMonitor.dispatchPlaybackConfigChange:127 2019-05-11 20:23:38.658 1021-2523/? I/AudioFlinger: updateStageIndex prev 0, new -2902 2019-05-11 20:23:38.658 1021-2523/? I/AudioEffectStage: getSinkBuffer low_output_sub1_normal 2019-05-11 20:23:38.659 711-23646/? D/audio_hw_primary: start_output_stream: enter: stream(0xf45d5000)usecase(12: audio-ull-playback) devices(0x2) 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: select_devices for use case (audio-ull-playback) 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_get_output_snd_device: enter: output devices(0x2) 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_get_output_snd_device: exit: snd_device(speaker) 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: select_devices: out_snd_device(2: speaker) in_snd_device(0: ) 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_get_backend_index:napb: backend port - 0 device - 2 2019-05-11 20:23:38.660 711-23646/? I/msm8974_platform: platform_check_and_set_codec_backend_cfg:becf: afe: bitwidth 16, samplerate 48000 channels 2, backend_idx 0 usecase = 12 device (speaker) 2019-05-11 20:23:38.660 711-23646/? D/msm8974_platform: platform_split_snd_device: snd_device(2) num devices(1) new_snd_devices(0) 2019-05-11 20:23:38.660 711-23646/? I/msm8974_platform: platform_check_and_set_codec_backend_cfg: new_snd_devices[0] is 2 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_get_native_support:napb: ui Prop enabled(0) version(4) 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_get_backend_index:napb: backend port - 0 device - 2 2019-05-11 20:23:38.660 711-23646/? I/msm8974_platform: platform_check_codec_backend_cfg:becf: afe: bitwidth 16, samplerate 48000 channels 2, backend_idx 0 usecase = 12 device (speaker) 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_check_backends_match: snd_device1 = speaker, snd_device2 = speaker 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_check_backends_match: be_itf1 = SLIMBUS_0_RX, be_itf2 = SLIMBUS_0_RX, match 1 2019-05-11 20:23:38.660 711-23646/? D/msm8974_platform: platform_check_codec_backend_cfg:becf: afe: playback on codec device not supporting native playback set default Sample Rate(48k) 2019-05-11 20:23:38.660 711-23646/? I/msm8974_platform: platform_check_codec_backend_cfg:becf: afe: Codec selected backend: 0 updated bit width: 16 and sample rate: 48000 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: check_usecases_codec_backend:becf: force routing 0 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_check_backends_match: snd_device1 = speaker, snd_device2 = 2019-05-11 20:23:38.660 711-23646/? E/msm8974_platform: platform_check_backends_match: Invalid snd_device = 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: check_usecases_codec_backend:becf: (63) check_usecases curr device: speaker, usecase device: backends match 0 2019-05-11 20:23:38.660 711-23646/? V/msm8974_platform: platform_check_backends_match: snd_device1 = speaker, snd_device2 = 2019-05-11 20:23:38.660 711-23646/? E/msm8974_platform: platform_check_backends_match: Invalid snd_device = 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: check_usecases_codec_backend:becf: (63) check_usecases curr device: speaker, usecase device: backends match 0 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: check_usecases_codec_backend:becf: check_usecases num.of Usecases to switch 0 2019-05-11 20:23:38.660 711-23646/? D/hardware_info: hw_info_append_hw_type : device_name = speaker 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_primary: enable_snd_device: snd_device(2: speaker) 2019-05-11 20:23:38.660 711-23646/? D/audio_hw_utils: audio_extn_utils_send_app_type_cfg: usecase->out_snd_device speaker 2019-05-11 20:23:38.660 711-23646/? D/msm8974_platform: platform_split_snd_device: snd_device(2) num devices(0) new_snd_devices(0) 2019-05-11 20:23:38.661 711-23646/? I/audio_hw_utils: ULL doesnt need sending app type cfg, returning 2019-05-11 20:23:38.661 711-23646/? D/msm8974_platform: platform_split_snd_device: snd_device(2) num devices(1) new_snd_devices(0) 2019-05-11 20:23:38.661 711-23646/? V/msm8974_platform: platform_send_audio_calibration: sending audio calibration for snd_device(2) acdb_id(15) 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_audio_cal, acdb_id = 15, path = 0, app id = 0x11131, sample rate = 48000 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_asm_topology 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TOPOLOGY_ID 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_adm_topology 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_audtable 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE_SIZE 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_CAL 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_audvoltable 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_VOL_STEP_TABLE_SIZE 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE, vol index 0 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> AUDIO_SET_VOL_CAL cal type = 12 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TABLE_SIZE 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_audstrmtable 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TABLE_V2 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> audstrm_cal->cal_type.cal_data.cal_size = 4160 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_afe_topology 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_TOPOLOGY_ID 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> GET_AFE_TOPOLOGY_ID for adcd_id 15, Topology Id 10001061 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_afe_cal 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE_SIZE 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AFE_CAL 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> send_hw_delay : acdb_id = 15 path = 0 2019-05-11 20:23:38.661 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_AVSYNC_INFO: ACDB_CMD_GET_DEVICE_PROPERTY 2019-05-11 20:23:38.661 711-23646/? D/audio_hw_primary: enable_audio_route: apply mixer and update path: audio-ull-playback speaker 2019-05-11 20:23:38.661 711-23646/? D/audio_route: Setting mixer control: PRI_MI2S_RX Audio Mixer MultiMedia3, value: 1 2019-05-11 20:23:38.663 711-23646/? V/audio_hw_sec: [MAXIM] sec_dsm_spkr_prot_control_tx_topology() enable:1, dsm_is_enabled:0 2019-05-11 20:23:38.663 711-23646/? D/hardware_info: hw_info_append_hw_type : device_name = vi-feedback 2019-05-11 20:23:38.663 711-23646/? D/audio_hw_primary: enable_snd_device: snd_device(389: vi-feedback) 2019-05-11 20:23:38.663 711-23646/? D/audio_hw_utils: audio_extn_utils_send_app_type_cfg: usecase->in_snd_device vi-feedback 2019-05-11 20:23:38.663 711-23646/? D/msm8974_platform: platform_split_snd_device: snd_device(389) num devices(0) new_snd_devices(0) 2019-05-11 20:23:38.663 711-23646/? V/msm8974_platform: platform_get_snd_device_backend_index: enter with device 389 2019-05-11 20:23:38.663 711-23646/? E/msm8974_platform: platform_get_snd_device_backend_index: BE DAI Name Table is not present 2019-05-11 20:23:38.664 711-23646/? E/audio_hw_utils: send_app_type_cfg_for_device: Couldn't get the backend index for snd device vi-feedback ret=-14 2019-05-11 20:23:38.664 711-23646/? I/audio_hw_utils: send_app_type_cfg_for_device default app_type 69936, acdb_dev_id 102, sample_rate 48000, snd_device_be_idx -14 2019-05-11 20:23:38.664 711-23646/? E/voice: voice_is_in_call_rec_stream: input stream is NULL 2019-05-11 20:23:38.664 711-23646/? D/msm8974_platform: platform_split_snd_device: snd_device(389) num devices(1) new_snd_devices(0) 2019-05-11 20:23:38.664 711-23646/? V/msm8974_platform: platform_send_audio_calibration: sending audio calibration for snd_device(389) acdb_id(102) 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> send_audio_cal, acdb_id = 102, path = 1, app id = 0x11130, sample rate = 48000 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> send_asm_topology 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TOPOLOGY_ID 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> send_adm_topology 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TOPOLOGY_ID 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> send_audtable 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE_SIZE 2019-05-11 20:23:38.664 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_COMMON_TABLE 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AUDPROC_CAL 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> send_audvoltable 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_VOL_STEP_TABLE_SIZE 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_GAIN_DEP_STEP_TABLE, vol index 0 2019-05-11 20:23:38.665 711-23646/? E/ACDB-LOADER: Error: ACDB AudProc vol returned = -19 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> AUDIO_SET_VOL_CAL cal type = 12 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TABLE_SIZE 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> send_audstrmtable 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AUDPROC_STREAM_TABLE_V2 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> audstrm_cal->cal_type.cal_data.cal_size = 4160 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> send_afe_topology 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_TOPOLOGY_ID 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> GET_AFE_TOPOLOGY_ID for adcd_id 102, Topology Id 10001060 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> send_afe_cal 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE_SIZE 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_CMD_GET_AFE_COMMON_TABLE 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> AUDIO_SET_AFE_CAL 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> send_hw_delay : acdb_id = 102 path = 1 2019-05-11 20:23:38.665 711-23646/? D/ACDB-LOADER: ACDB -> ACDB_AVSYNC_INFO: ACDB_CMD_GET_DEVICE_PROPERTY 2019-05-11 20:23:38.665 711-23646/? D/audio_hw_primary: enable_audio_route: apply mixer and update path: spkr-vi-feedback 2019-05-11 20:23:38.665 711-23646/? D/audio_route: Setting mixer control: MultiMedia2 Mixer PRI_MI2S_TX, value: 1 2019-05-11 20:23:38.669 767-840/? I/SurfaceFlinger: id=392 Removed thumbnail anim#0 (4/6) 2019-05-11 20:23:38.669 767-837/? I/SurfaceFlinger: id=392 Removed thumbnail anim#0 (-2/6) 2019-05-11 20:23:38.669 21289-21289/? D/SADVFSHelper: Either heavy-duty effect is Off or Music playback is not active 2019-05-11 20:23:38.670 732-762/? E/ANDR-PERF-MPCTL: Invalid profile no. 0, total profiles 0 only 2019-05-11 20:23:38.670 1634-1933/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1555200 uid : 1000 pid : 1634 pkgName : AMS_RESUME_TAIL@CPU_MIN@75 2019-05-11 20:23:38.671 1634-1933/? D/ActivityManagerPerformance: AMP_acquire() TAIL 2019-05-11 20:23:38.671 1634-1933/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1555200 uid : 1000 pid : 1634 tag : AMS_APP_SWITCH@CPU_MIN@64 2019-05-11 20:23:38.672 1634-1933/? D/ActivityManagerPerformance: AMP_release() APP_SWITCH 2019-05-11 20:23:38.672 2687-2707/? D/WallpaperService: dispatchAppVisibility onVisibilityChanged(): false 2019-05-11 20:23:38.673 2687-2687/? D/ImageWallpaper: onVisibilityChanged: mVisible, visible=true, false 2019-05-11 20:23:38.673 2687-2687/? D/ImageWallpaper: Visibility changed to visible=false 2019-05-11 20:23:38.673 2687-2687/? D/WallpaperService: reportVisibility onVisibilityChanged visible: false 2019-05-11 20:23:38.680 767-767/? I/Layer: id=392 onRemoved thumbnail anim#0 2019-05-11 20:23:38.684 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ SolidColor | | 0002 | Unknown | 0.0 0.0 -1.0 -1.0 | 0 0 1080 1920 | Background for - SurfaceView - com.h[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79b53af580 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 2019-05-11 20:23:38.694 2687-3073/? D/OpenGLRenderer: eglDestroySurface = 0x76fffee280 2019-05-11 20:23:38.695 1634-5462/? V/WindowManager: Relayout Window{19c8900 u0 com.android.systemui/com.android.systemui.recents.RecentsActivity}: viewVisibility=4 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#120 ty=1 fl=#89910500 pfl=0x24040 fmt=-3 vsysui=0x700 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:38.700 2687-2687/? D/ViewRootImpl@6909720[RecentsActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x5 surface={valid=false 0} changed=true 2019-05-11 20:23:38.701 711-23646/? V/audio_hw_sec: [MAXIM] sec_dsm_spkr_prot_control_tx_topology() dsm enabled (c:0 d:1 m:0) 2019-05-11 20:23:38.702 711-23646/? D/audio_hw_primary: select_devices: done 2019-05-11 20:23:38.703 1634-5462/? I/WindowManager: Destroying surface Surface(name=com.android.systemui/com.android.systemui.recents.RecentsActivity) called by com.android.server.wm.WindowStateAnimator.destroySurface:2501 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:985 com.android.server.wm.WindowState.destroyOrSaveSurfaceUnchecked:3679 com.android.server.wm.WindowState.destroySurface:3627 com.android.server.wm.AppWindowToken.destroySurfaces:722 com.android.server.wm.AppWindowToken.destroySurfaces:706 com.android.server.wm.AppWindowToken.notifyAppStopped:751 com.android.server.wm.AppWindowContainerController.notifyAppStopped:813 2019-05-11 20:23:38.703 767-840/? I/SurfaceFlinger: id=390 Removed com.android.systemui/com.android.systemui.recents.RecentsActivity#0 (1/5) 2019-05-11 20:23:38.704 767-840/? I/SurfaceFlinger: id=390 Removed com.android.systemui/com.android.systemui.recents.RecentsActivity#0 (-2/5) 2019-05-11 20:23:38.713 767-767/? I/Layer: id=390 onRemoved com.android.systemui/com.android.systemui.recents.RecentsActivity#0 2019-05-11 20:23:38.720 711-23646/? V/msm8974_platform: platform_set_channel_map channel_count:2 2019-05-11 20:23:38.720 711-23646/? D/msm8974_platform: platform_set_channel_map mixer_ctl_name:Playback Channel Map4 2019-05-11 20:23:38.720 711-23646/? D/msm8974_platform: platform_set_channel_map: set mapping(1 2 0 0 0 0 0 0) for channel:2 2019-05-11 20:23:38.720 711-23646/? D/audio_hw_primary: start_output_stream: exit 2019-05-11 20:23:38.744 1021-2034/? D/AudioFlinger: mixer(0xe8603500) Spend too much time to write: delta 85(effect 0, stage 0) 2019-05-11 20:23:38.810 2687-23352/? I/zygote64: Explicit concurrent copying GC freed 9250(568KB) AllocSpace objects, 0(0B) LOS objects, 49% free, 8MB/17MB, paused 245us total 130.874ms 2019-05-11 20:23:38.971 1634-1634/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1555200 uid : 1000 pid : 1634 tag : AMS_RESUME_TAIL@CPU_MIN@75 2019-05-11 20:23:39.400 1634-5462/? I/SensorService: createSensorEventConnection package name 2019-05-11 20:23:39.403 1634-5462/? D/SensorService: Calling batch handle==1 flags=0 rate=200000000 timeout== 0 2019-05-11 20:23:39.403 723-723/? I/qti_sensors_hal: batch:sensor(android.sensor.accelerometer) handle:1 flags:0x0 period_ns 200000000 2019-05-11 20:23:39.406 723-723/? I/qti_sensors_hal: SMGRReportAdd:sensor(android.sensor.accelerometer) handle=1, sample_rate=5.000000 report_rate=0 buffer=0 2019-05-11 20:23:39.409 723-723/? I/qti_sensors_hal: batch:sensor(android.sensor.accelerometer) handle:1 flags:0x0 period_ns 20000000 2019-05-11 20:23:39.409 723-723/? I/qti_sensors_hal: SMGRReportAdd:sensor(android.sensor.accelerometer) handle=1, sample_rate=50.000000 report_rate=0 buffer=0 2019-05-11 20:23:39.427 723-861/? I/qti_sensors_hal: processReportInd: Accel - X: -0.062 Y: 0.055 Z: 10.074 2019-05-11 20:23:39.432 21745-21763/? V/MediaRouter: Adding route: RouteInfo{ name=Phone, description=null, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null } 2019-05-11 20:23:39.433 1634-2409/? V/WifiDisplayAdapter: getWifiDisplayStatusLocked: result=WifiDisplayStatus{featureState=2, scanState=0, activeDisplayState=0, activeDisplay=null, displays=[Roku Stick - 294 (ba:a1:75:80:ac:d3), isAvailable false, canConnect false, isRemembered true, mDeviceType 8-0050F204-5, mIconIndex 0, mDeviceInfo 0, mUri null, isEmptySurface false], sessionInfo=WifiDisplaySessionInfo: Client/Owner: Client GroupId: Passphrase: SessionId: 0 IP Address: , connectedState=-1} 2019-05-11 20:23:39.443 21745-21763/? V/MediaRouter: Selecting route: RouteInfo{ name=Phone, description=null, status=null, category=RouteCategory{ name=System types=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO groupable=false }, supportedTypes=ROUTE_TYPE_LIVE_AUDIO ROUTE_TYPE_LIVE_VIDEO , presentationDisplay=null } 2019-05-11 20:23:39.491 21745-21745/? D/ViewRootImpl@1e29909[UnityPlayerActivity]: setView = DecorView@e12170e[] TM=true MM=false 2019-05-11 20:23:39.492 21745-21745/? D/ViewRootImpl@1e29909[UnityPlayerActivity]: dispatchDetachedFromWindow 2019-05-11 20:23:39.492 21745-21745/? D/InputEventReceiver: channel 'c21b5a com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity (client)' ~ Disposing input event receiver. 2019-05-11 20:23:39.492 21745-21745/? D/InputEventReceiver: channel 'c21b5a com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity (client)' ~NativeInputEventReceiver. 2019-05-11 20:23:39.527 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b522b380 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | SurfaceView - com.howlersstudio.alle[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79b53af580 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 2019-05-11 20:23:39.592 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53fe200 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | SurfaceView - com.howlersstudio.alle[...]ayer.UnityPlayerActivity@56aff5a@0#0 2019-05-11 20:23:39.671 21289-21289/? D/SADVFSHelper: Either heavy-duty effect is Off or Music playback is not active 2019-05-11 20:23:40.137 1634-1634/? D/PreBindingService: handleMessage : 1 2019-05-11 20:23:40.673 21289-21289/? D/SADVFSHelper: Either heavy-duty effect is Off or Music playback is not active 2019-05-11 20:23:40.762 729-729/? I/android.hardware.wifi@1.0-service: getLinkLayerStats 2019-05-11 20:23:41.528 1634-5462/? W/StorageManager: getStorageLowBytes lowPercent : 5, lowBytes : 1231144345, maxLowBytes : 524288000 2019-05-11 20:23:41.938 1634-5462/? W/SensorService: sensor 00000001 already enabled in connection 0x76fc08cba0 (ignoring) 2019-05-11 20:23:41.938 1634-5462/? D/SensorService: Calling batch handle==1 flags=0 rate=200000000 timeout== 0 2019-05-11 20:23:41.938 723-2345/? I/qti_sensors_hal: batch:sensor(android.sensor.accelerometer) handle:1 flags:0x0 period_ns 200000000 2019-05-11 20:23:41.938 723-2345/? I/qti_sensors_hal: SMGRReportAdd:sensor(android.sensor.accelerometer) handle=1, sample_rate=5.000000 report_rate=0 buffer=0 2019-05-11 20:23:41.939 1634-2409/? V/WindowManager: Relayout Window{48d73aa u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity}: viewVisibility=0 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#20 ty=1 fl=#80810500 pfl=0x20000 fmt=-3 wanim=0x10302fd vsysui=0x1706 sysuil=true needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:41.941 723-2345/? I/qti_sensors_hal: enable: Sensor android.sensor.accelerometer is already enabled/disabled 1 2019-05-11 20:23:41.941 723-2345/? I/qti_sensors_hal: batch:sensor(android.sensor.accelerometer) handle:1 flags:0x0 period_ns 20000000 2019-05-11 20:23:41.941 723-2345/? I/qti_sensors_hal: SMGRReportAdd:sensor(android.sensor.accelerometer) handle=1, sample_rate=50.000000 report_rate=0 buffer=0 2019-05-11 20:23:41.943 1634-2409/? D/PowerManagerService: [api] release WakeLock SCREEN_BRIGHT_WAKE_LOCK 'WindowManager' ON_AFTER_RELEASE ACQ=-3s481ms (uid=1000 pid=1634 ws=WorkSource{10330}) (0x0) 2019-05-11 20:23:41.943 1634-2409/? D/PowerManagerService: [api] applyWakeLockFlagsOnReleaseLocked : userActivityNoUpdateLocked is called : SCREEN_BRIGHT_WAKE_LOCK 'WindowManager' ON_AFTER_RELEASE (uid=1000 pid=1634 ws=WorkSource{10330}) 2019-05-11 20:23:41.945 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=true 3503972352} changed=false 2019-05-11 20:23:41.963 723-861/? I/qti_sensors_hal: processReportInd: Accel - X: -0.072 Y: 0.067 Z: 10.081 2019-05-11 20:23:41.969 21745-21771/? D/NetworkSecurityConfig: No Network Security Config specified, using platform default 2019-05-11 20:23:41.982 21745-21771/? I/System.out: (HTTPLog)-Static: isSBSettingEnabled false 2019-05-11 20:23:41.983 21745-21771/? I/System.out: (HTTPLog)-Static: isSBSettingEnabled false 2019-05-11 20:23:41.988 1035-1740/? D/DnsProxyListener: DNSDBG::dns addrinfo af 2 2019-05-11 20:23:42.106 1634-6976/? D/TelephonyManager: getAllCellInfo : Caller (PID / UID / TID): 1634 / 1000 / 6976 2019-05-11 20:23:42.134 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:42.134 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:42.134 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:42.135 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:42.135 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:42.135 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:42.135 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:42.135 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:42.135 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:42.157 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;activeStream 2019-05-11 20:23:42.157 1021-2523/? V/APM_AudioPolicyManager: ### active stream : 8 2019-05-11 20:23:42.157 1634-6976/? D/AudioService: active stream is 0x8 2019-05-11 20:23:42.168 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;activeStream 2019-05-11 20:23:42.168 1021-2523/? V/APM_AudioPolicyManager: ### active stream : 8 2019-05-11 20:23:42.168 1634-6976/? D/AudioService: active stream is 0x8 2019-05-11 20:23:42.168 1634-6976/? D/AudioService: GetAppDevice, uid=1000 2019-05-11 20:23:42.169 1634-6976/? D/AudioService: getStreamVolume 3 index 0 2019-05-11 20:23:42.304 21745-21776/? I/System.out: (HTTPLog)-Static: isSBSettingEnabled false 2019-05-11 20:23:42.305 21745-21776/? I/System.out: (HTTPLog)-Static: isSBSettingEnabled false 2019-05-11 20:23:42.307 1035-1740/? D/DnsProxyListener: DNSDBG::dns addrinfo af 2 2019-05-11 20:23:42.628 21745-21774/? I/System.out: (HTTPLog)-Static: isSBSettingEnabled false 2019-05-11 20:23:43.334 3926-3926/? D/io_stats: !@ 8,0 r 411162 12963816 w 120663 2600216 d 13512 1026136 f 38888 38902 iot 233270 177120 th 51200 0 0 pt 0 inp 0 0 7435.447 2019-05-11 20:23:43.518 2687-3045/? D/NetworkController.MobileSignalController(0/1): onSignalStrengthsChanged signalStrength=SignalStrength: 99 99 -120 -160 -120 -1 -1 22 -102 -13 78 2147483647 0 2147483647 0x4000 P gsm|lte level=4 2019-05-11 20:23:43.520 2687-3045/? D/NetworkController.MobileSignalController(0/1): getMobileIconGroup(): 13 2019-05-11 20:23:43.523 2687-3045/? D/NetworkController.MobileSignalController(0/1): updateATTMobileIconGroup(): 13 2019-05-11 20:23:43.540 2982-3117/? D/EPDG -- SIM0 [SMARTWIFI]: onSignalStrengthsChanged: Received signal strength change, phone type is: 1 2019-05-11 20:23:43.541 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastLteRSRP is -102currentLteRSRP is -102 2019-05-11 20:23:43.541 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastLteRSRQ is -11currentLteRSRQ is -13 2019-05-11 20:23:43.541 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastCdmaDb is -16currentCdmaDb is -16 2019-05-11 20:23:43.541 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: Radio oldest entry removed 2019-05-11 20:23:43.542 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: New entry : (SignalStrength: 99 99 -120 -160 -120 -1 -1 22 -102 -13 78 2147483647 0 2147483647 0x4000 P gsm|lte : 0 ) 2019-05-11 20:23:43.542 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: Radio entry added 2019-05-11 20:23:43.781 729-729/? I/android.hardware.wifi@1.0-service: getLinkLayerStats 2019-05-11 20:23:44.211 1634-6976/? D/GameManagerService: identifyGamePackage. com.howlersstudio.allensrage 2019-05-11 20:23:44.212 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.howlersstudio.allensrage 2019-05-11 20:23:44.311 4364-21835/? I/GmscoreIpa: Starting mediastore instant index 2019-05-11 20:23:44.403 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:44.547 1634-2391/? D/InputReader: Input event(5): value=1 when=7436656091000 2019-05-11 20:23:44.547 1634-2391/? D/InputReader: Input event(5): value=1 when=7436656091000 2019-05-11 20:23:44.547 1634-2391/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.764 ] when=7436656091000 2019-05-11 20:23:44.548 1634-2390/? I/InputDispatcher: Delivering touch to (21745): action: 0x0, toolType: 1 2019-05-11 20:23:44.548 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: ViewPostIme pointer 0 2019-05-11 20:23:44.708 1634-2391/? D/InputReader: Input event(5): value=0 when=7436823294000 2019-05-11 20:23:44.708 1634-2391/? D/InputReader: Input event(5): value=0 when=7436823294000 2019-05-11 20:23:44.708 1634-2391/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=7436823294000 2019-05-11 20:23:44.708 1634-2390/? I/InputDispatcher: Delivering touch to (21745): action: 0x1, toolType: 1 2019-05-11 20:23:44.709 21745-21745/? D/ViewRootImpl@4706c4e[UnityPlayerActivity]: ViewPostIme pointer 1 2019-05-11 20:23:45.049 21745-21763/? I/Unity: Adroid

(Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)

2019-05-11 20:23:45.119 21745-21763/? I/Unity: Starting Auth with token client.

(Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)

2019-05-11 20:23:45.364 21745-21763/? W/Unity: !!! [Play Games Plugin DLL] 05/11/19 20:23:45 -05:00 WARNING: Creating new PlayGamesPlatform

(Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)

2019-05-11 20:23:45.381 21745-21763/? D/TokenFragment: Creating fragment 2019-05-11 20:23:45.383 21745-21745/? D/TokenFragment: onStart() 2019-05-11 20:23:45.387 21745-21745/? D/TokenFragment: onResume called 2019-05-11 20:23:45.389 21745-21745/? D/TokenFragment: Building client for: b30a02c (a:true e:true i:false wc: 683956032794-0cqj34d4gr6splnv3b3nj0ftdj8560ii.apps.googleusercontent.com f: false) 2019-05-11 20:23:45.403 21745-21763/? I/Unity: ---- [0] -- 101

(Filename: ./Runtime/Export/Debug/Debug.bindings.h Line: 48)

2019-05-11 20:23:45.426 21745-21745/? W/PopupManager: You have not specified a View to use as content view for popups. Falling back to the Activity content view. Note that this may not work as expected in multi-screen environments 2019-05-11 20:23:45.466 21745-21745/? D/TokenFragment: Done with processRequest, result is pending. 2019-05-11 20:23:45.494 4364-18066/? W/GamesServiceBroker: Client connected with SDK 11720000, Services 17122021, and Games 95330048 2019-05-11 20:23:45.514 4364-21841/? E/ValidateServiceOp: APP ID IS NOT CORRECTLY CONFIGURED TO USE GOOGLE PLAY GAME SERVICES Application ID ( 683956032794) must be a numeric value. Please verify that your manifest refers to the correct project ID.


2019-05-11 20:23:45.519 21745-21745/? D/AndroidRuntime: Shutting down VM

--------- beginning of crash

2019-05-11 20:23:45.519 21745-21745/? E/AndroidRuntime: FATAL EXCEPTION: main Process: com.howlersstudio.allensrage, PID: 21745 java.lang.IllegalStateException: A fatal developer error has occurred. Check the logs for further information. at com.google.android.gms.common.internal.zze.zzv(Unknown Source:60) at com.google.android.gms.common.internal.zzi.zzakg(Unknown Source:51) at com.google.android.gms.common.internal.zzh.handleMessage(Unknown Source:270) at android.os.Handler.dispatchMessage(Handler.java:105) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6944) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374) 2019-05-11 20:23:45.523 1634-2974/? D/Debug: !@DumpState : SHIP 2019-05-11 20:23:45.523 1634-2974/? D/Debug: !@DumpState : debug level:0x4f4c 2019-05-11 20:23:45.523 1634-2974/? D/Debug: !@Dumpstate : Finally, system will skip dumpstate 2019-05-11 20:23:45.523 1634-2974/? W/ActivityManager: crash : com.howlersstudio.allensrage,0 2019-05-11 20:23:45.529 1634-2974/? W/ActivityManager: Force finishing activity com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity 2019-05-11 20:23:45.530 1634-2974/? W/MultiScreenManagerService: moveTaskBackToDisplayIfNeeded(): root activity or app is null, task=TaskRecord{f587386d0 #22 A=com.howlersstudio.allensrage U=0 StackId=1 sz=1}, rootActivity=null 2019-05-11 20:23:45.530 1634-1634/? D/MdnieScenarioControlService: Listener Real Multi Window State : true 2019-05-11 20:23:45.530 1634-1634/? D/CS_HdrController: MultiWindowEventListener::onFocusStackChanged(0) 2019-05-11 20:23:45.536 1634-1882/? I/ActivityManager: Showing crash dialog for package com.howlersstudio.allensrage u0 2019-05-11 20:23:45.536 1634-1634/? D/CS_HdrController: updateMultiWindowState : 0 2019-05-11 20:23:45.536 1634-1634/? D/CodecSolution: MultiWindowEventListener::onMultiWindowFocusChanged(0) 2019-05-11 20:23:45.545 1634-1881/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 2150400 uid : 1000 pid : 1634 pkgName : AMS_APP_HOME@CPU_MIN@15 2019-05-11 20:23:45.546 1634-1881/? D/ActivityManagerPerformance: AMP_acquire() HOME 2019-05-11 20:23:45.552 1634-1882/? D/ScrollView: initGoToTop 2019-05-11 20:23:45.558 21104-21104/? I/DMT-SMReceiver: Received : com.samsung.android.sm.ACTION_ERROR 2019-05-11 20:23:45.558 21104-21104/? W/ContextImpl: Calling a method in the system process without a qualified user: android.app.ContextImpl.startService:1483 android.content.ContextWrapper.startService:663 android.content.ContextWrapper.startService:663 com.samsung.android.sm.common.SmartManagerReceiver.a:240 com.samsung.android.sm.common.SmartManagerReceiver.onReceive:119 2019-05-11 20:23:45.575 1634-4905/? 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 2019-05-11 20:23:45.576 1634-1881/? 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 2019-05-11 20:23:45.603 21104-21843/? V/CrashedAppLogging: isMasterSwitchOff : false 2019-05-11 20:23:45.607 1634-1882/? E/PhoneWindow_APM :: isCalledPackage return true 2019-05-11 20:23:45.610 1634-1928/? V/MARsPolicyManager: handelAlertToastWindowStarted pkgName = android, userId = 0 2019-05-11 20:23:45.613 1634-1882/? D/InputDispatcher: Focus left window: 21745 2019-05-11 20:23:45.613 1634-1882/? D/InputDispatcher: Focus entered window: 1634 2019-05-11 20:23:45.613 1634-1882/? V/WindowManager: rotationForOrientationLw(orient=-1, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false 2019-05-11 20:23:45.614 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: setView = DecorView@8da6a72[allensrage] TM=true MM=false 2019-05-11 20:23:45.618 1634-6976/? D/GamePkgDataHelper: getGamePkgDataIncServer(). com.sec.android.app.launcher 2019-05-11 20:23:45.619 1634-6976/? D/GameManagerService: identifyGamePackage. com.sec.android.app.launcher 2019-05-11 20:23:45.619 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.sec.android.app.launcher 2019-05-11 20:23:45.619 19803-19817/? W/PkgUtils: p: com.howlersstudio.allensrage, u:0 2019-05-11 20:23:45.619 1634-6976/? D/GameManagerService: identifyGamePackage. com.sec.android.app.launcher 2019-05-11 20:23:45.620 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.sec.android.app.launcher 2019-05-11 20:23:45.620 1634-4174/? D/Dex2oatAdjuster: Before bg size = 0 2019-05-11 20:23:45.620 1634-4174/? D/Dex2oatAdjuster: After bg size = 0 fg size = 0 2019-05-11 20:23:45.621 2838-22999/? D/ProcessObserver_FLP: onForegroundActivities changed, 4548/10077/true 2019-05-11 20:23:45.622 10635-10649/? I/SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 4548 , isNotify : true , isForeground : true , fg list : [21745, 4548] 2019-05-11 20:23:45.623 2945-3177/? D/ForegroundUtils: could not check pending caller 2019-05-11 20:23:45.625 4364-4375/? I/zygote64: Background concurrent copying GC freed 146505(7MB) AllocSpace objects, 24(480KB) LOS objects, 49% free, 14MB/28MB, paused 560us total 165.177ms 2019-05-11 20:23:45.626 1634-5248/? D/ConnectivityService: filterNetworkStateForUid() uid: 10024 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:45.638 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: dispatchAttachedToWindow 2019-05-11 20:23:45.639 1634-1882/? V/WindowManager: Relayout Window{2bc4b7d u0 Application Error: com.howlersstudio.allensrage}: viewVisibility=0 req=1014x386 WM.LayoutParams{(0,0)(wrapxwrap) gr=#11 sim=#120 ty=2003 fl=#1820002 pfl=0x110 fmt=-3 wanim=0x10302ec surfaceInsets=Rect(6, 6 - 6, 6) needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:45.647 767-767/? I/SurfaceFlinger: id=397 createSurf (1026x398),1 flag=4, Application Error: com.howlersstudio.allensrage#0 2019-05-11 20:23:45.647 2687-4352/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: newTime=1557622271889 2019-05-11 20:23:45.648 1634-5248/? D/SecContentProvider: query(), uri = 17 selection = isSettingsChangesAllowed 2019-05-11 20:23:45.648 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:45.648 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:45.648 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:45.649 1634-5248/? D/SecContentProvider: called from android.uid.systemui:10074 2019-05-11 20:23:45.649 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:45.649 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:45.649 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:45.649 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;outDevice 2019-05-11 20:23:45.649 1021-2523/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:45.649 1021-2523/? V/APM_AudioPolicyManager: ### curdevice : 2 2019-05-11 20:23:45.650 2687-2862/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: done. 2019-05-11 20:23:45.652 1634-1882/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:45.658 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;activeStream 2019-05-11 20:23:45.659 1021-2523/? V/APM_AudioPolicyManager: ### active stream : 8 2019-05-11 20:23:45.659 1634-6976/? D/AudioService: active stream is 0x8 2019-05-11 20:23:45.668 1021-2523/? V/APM_AudioPolicyManager: getAudioPolicyConfig: audioParam;activeStream 2019-05-11 20:23:45.668 1021-2523/? V/APM_AudioPolicyManager: ### active stream : 8 2019-05-11 20:23:45.669 1634-6976/? D/AudioService: active stream is 0x8 2019-05-11 20:23:45.669 1634-6976/? D/AudioService: GetAppDevice, uid=1000 2019-05-11 20:23:45.669 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: Relayout returned: old=[0,0][0,0] new=[33,798][1047,1184] result=0x7 surface={valid=true 510505959424} changed=true 2019-05-11 20:23:45.669 1634-2642/? I/OpenGLRenderer: Initialized EGL, version 1.4 2019-05-11 20:23:45.669 1634-2642/? D/OpenGLRenderer: Swap behavior 2 2019-05-11 20:23:45.672 1634-6976/? D/AudioService: getStreamVolume 3 index 0 2019-05-11 20:23:45.673 1634-6976/? D/GameManagerService: identifyGamePackage. com.sec.android.app.launcher 2019-05-11 20:23:45.673 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.sec.android.app.launcher 2019-05-11 20:23:45.674 1634-6976/? D/GameManagerService: identifyGamePackage. com.sec.android.app.launcher 2019-05-11 20:23:45.674 1634-6976/? D/GamePkgDataHelper: getGamePkgData(). com.sec.android.app.launcher 2019-05-11 20:23:45.681 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: MSG_WINDOW_FOCUS_CHANGED 1 2019-05-11 20:23:45.686 1634-2642/? D/OpenGLRenderer: eglCreateWindowSurface = 0x76fc378080 2019-05-11 20:23:45.700 1634-6976/? D/SSRM:T: SIOP:: AP = 380, PST = 377 (W:10), BAT = 293, CHG = 357 2019-05-11 20:23:45.700 2687-4352/? D/ApplicationPackageManager: updateItemMetaDataForFixedIconScale: package: com.howlersstudio.allensrage 2019-05-11 20:23:45.701 1634-1882/? V/WindowManager: finishDrawingLocked: mDrawState=COMMIT_DRAW_PENDING Window{2bc4b7d u0 Application Error: com.howlersstudio.allensrage} in Surface(name=Application Error: com.howlersstudio.allensrage) 2019-05-11 20:23:45.701 1634-4547/? D/PackageManager: getSelectedMetaData : packageName(com.howlersstudio.allensrage) or Metadata strings {[Ljava.lang.String;@34b4a58} 2019-05-11 20:23:45.701 2687-4352/? I/ApplicationPackageManager: return adaptive icon for com.howlersstudio.allensrage 2019-05-11 20:23:45.701 1634-1882/? D/WindowManager: set systemUiVisibility : systemUiFlags= 0x8 fullscreenStackSysUiFlags= 0x0 2019-05-11 20:23:45.702 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: MSG_RESIZED_REPORT: frame=Rect(33, 798 - 1047, 1184) ci=Rect(0, 0 - 0, 0) vi=Rect(0, 0 - 0, 0) or=1 2019-05-11 20:23:45.706 1634-5248/? D/WindowManager: adjustSystemUiVisibilityLw : vis= 0x8 2019-05-11 20:23:45.747 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b522b380 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | SurfaceView - com.howlersstudio.alle[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79ba462080 | 0000 | RGBA_8888 | 0.0 0.0 1026.0 398.0 | 67 807 1011 1173 | Application Error: com.howlersstudio.allensrage#0 2019-05-11 20:23:45.753 1634-2400/? D/MdnieScenarioControlService: packageName : com.sec.android.app.launcher className : com.sec.android.app.launcher.activities.LauncherActivity 2019-05-11 20:23:45.753 1634-2400/? V/MdnieScenarioControlService: setUIMode from UI function(3) 2019-05-11 20:23:45.762 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b522b380 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | SurfaceView - com.howlersstudio.alle[...]ayer.UnityPlayerActivity@56aff5a@0#0 SolidColor | | 0000 | Unknown | -0.2 -0.2 -0.8 -0.8 | 0 0 1080 1920 | DimLayerController/Stack=0#0 Device | 0x79ba462080 | 0000 | RGBA_8888 | 0.0 0.0 1026.0 398.0 | 58 804 1022 1178 | Application Error: com.howlersstudio.allensrage#0 2019-05-11 20:23:46.032 1634-1881/? W/ActivityManager: Activity pause timeout for ActivityRecord{2cfcb8f u0 com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity t22 f} 2019-05-11 20:23:46.033 1634-1881/? D/CustomFrequencyManagerService: acquireDVFSLockLocked : type : DVFS_MIN_LIMIT frequency : 1401600 uid : 1000 pid : 1634 pkgName : AMS_ACT_RESUME@CPU_MIN@91 2019-05-11 20:23:46.033 1634-1881/? D/ActivityManagerPerformance: AMP_acquire() ACT_RESUME 2019-05-11 20:23:46.033 1634-1881/? D/ActivityManager: isScaleDownAnimationEnabled() : false 2019-05-11 20:23:46.034 1634-1881/? D/PersonaManagerService: Current focused persona service handled id set to : 0 2019-05-11 20:23:46.034 1634-1881/? D/InputDispatcher: Focused application set to: xxxx 2019-05-11 20:23:46.035 1634-1881/? V/WindowManager: rotationForOrientationLw(orient=5, last=0); user=0 sensorRotation=-1 mLidState=-1 mDockMode=0 mHdmiPlugged=false 2019-05-11 20:23:46.038 1634-1881/? D/MARsPolicyManager: onPackageResumedFG pkgName = com.sec.android.app.launcher, userId = 0 2019-05-11 20:23:46.038 1634-2558/? D/GameManagerService: handleForegroundChange(). pkgName: com.sec.android.app.launcher, clsName: com.android.launcher3.Launcher,FgActivityName:com.sec.android.app.launcher/com.android.launcher3.Launcher 2019-05-11 20:23:46.039 1634-2558/? D/GameManagerService: sem_perfomance_mode: 0 2019-05-11 20:23:46.039 1634-2558/? D/GameManagerService: notifyResumePause(). pkg: com.sec.android.app.launcher, type: 4, isMinimized: false, isTunableApp: false 2019-05-11 20:23:46.039 1634-2558/? D/GameManagerService: notifyResumePause(). do nothing. mKillNotiCount: 3 2019-05-11 20:23:46.042 4548-4548/? I/Launcher: onWindowVisibilityChanged : false 2019-05-11 20:23:46.046 1634-1634/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 2150400 uid : 1000 pid : 1634 tag : AMS_APP_HOME@CPU_MIN@15 2019-05-11 20:23:46.046 1634-5248/? V/WindowManager: Relayout Window{232fa8 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: viewVisibility=4 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#130 ty=1 fl=#81910d00 pfl=0x20000 fmt=-2 wanim=0x10302ea vsysui=0x700 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:46.051 4548-4548/? D/ViewRootImpl@cffd4bd[LauncherActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x1 surface={valid=false 0} changed=false 2019-05-11 20:23:46.052 4548-4548/? D/HomeContainer: setAlpha : 1.0 2019-05-11 20:23:46.052 4548-4548/? V/Launcher: Launcher.onResume() 2019-05-11 20:23:46.060 4548-4548/? D/ExternalMethodQueue: Getting and clearing EXTERNAL_METHOD_LIST: null 2019-05-11 20:23:46.060 4548-4548/? D/Launcher.HomeController: onResume HomeContainer current alpha = 1.0 2019-05-11 20:23:46.060 4548-4548/? D/AppsCustomAdapter: notifyUpdate : com.android.launcher3.Launcher@732116f 2019-05-11 20:23:46.060 4548-4548/? D/AppsDragController: needDeferToBind : true , false 2019-05-11 20:23:46.060 4548-4607/? I/LauncherAppWidgetInfo: reinflateWidgetsIfNecessary, Not required: AppWidget(id=2) 2019-05-11 20:23:46.060 4548-4548/? D/Launcher: setupWallpaperScroller 2019-05-11 20:23:46.060 4548-4607/? I/LauncherAppWidgetInfo: reinflateWidgetsIfNecessary, Not required: AppWidget(id=4) 2019-05-11 20:23:46.061 22786-22786/? W/SearchServiceClient: Starting with NO_SESSION handoverId is deprecated. Just don't. You will break. com.google.android.apps.gsa.shared.util.b.e: SearchServiceClient: Starting with NO_SESSION handoverId is deprecated. Just don't. You will break. at com.google.android.apps.gsa.shared.util.b.f.a(SourceFile:40) at com.google.android.apps.gsa.shared.util.b.f.d(SourceFile:6) at com.google.android.apps.gsa.search.shared.service.aa.a(SourceFile:110) at com.google.android.apps.gsa.search.shared.service.aa.d(SourceFile:96) at com.google.android.apps.gsa.nowoverlayservice.aq.a(SourceFile:15) at com.google.android.libraries.gsa.f.b.p.a(SourceFile:20) at com.google.android.libraries.gsa.f.b.p.handleMessage(SourceFile:25) at android.os.Handler.dispatchMessage(Handler.java:101) at android.os.Looper.loop(Looper.java:164) at android.app.ActivityThread.main(ActivityThread.java:6944) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.Zygote$MethodAndArgsCaller.run(Zygote.java:327) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1374) 2019-05-11 20:23:46.061 4548-4548/? I/WallpaperScroller: WallpaperScroller start 2019-05-11 20:23:46.062 4548-4548/? I/WallpaperScroller: WallpaperThread start 2019-05-11 20:23:46.062 4548-4548/? I/WallpaperScroller: HandlerThread start 2019-05-11 20:23:46.062 4548-21849/? D/Launcher.WallpaperUtils: getWallpaperDrawable is called by GyroForShadow 2019-05-11 20:23:46.063 22786-22807/? W/SessionLifecycleManager: Handover failed. Creating new session controller. 2019-05-11 20:23:46.063 4548-21849/? D/WallpaperManager: getCurrentWallpaperLocked userId=0 2019-05-11 20:23:46.063 1634-5462/? D/WallpaperManagerService: getWallpaper which=1 wallpaperUserId=0 kwpType=0 index=0 2019-05-11 20:23:46.063 1634-5462/? D/WallpaperManagerService: get index of which = 1, isCopied = false 2019-05-11 20:23:46.065 4548-4548/? I/WallpaperScroller: WallpaperScroller set window token : android.view.ViewRootImpl$W@cffd4bd 2019-05-11 20:23:46.065 4548-4548/? I/WallpaperScroller: WallpaperScroller resume : init true 2019-05-11 20:23:46.066 4548-4548/? D/Notification.Badge: App icon badges are disabled 2019-05-11 20:23:46.066 1634-5462/? I/SensorService: createSensorEventConnection package name com.android.launcher3.common.wallpaperscroller.GyroForShadow 2019-05-11 20:23:46.067 1634-5462/? D/SensorService: Calling batch handle==20 flags=0 rate=20000000 timeout== 0 2019-05-11 20:23:46.067 1634-4547/? D/Notification: allPendingIntents 2019-05-11 20:23:46.067 723-723/? I/qti_sensors_hal: batch:sensor(com.samsung.sensor.interrupt_gyro) handle:78 flags:0x0 period_ns:20000000 timeout:0 2019-05-11 20:23:46.068 1634-4547/? D/Notification: allPendingIntents 2019-05-11 20:23:46.068 1634-4547/? I/chatty: uid=1000(system) Binder:1634_16 identical 3 lines 2019-05-11 20:23:46.069 1634-4547/? D/Notification: allPendingIntents 2019-05-11 20:23:46.070 4548-4548/? D/Notification.Badge: [filtered] shouldBeFilteredOut().mContext[com.android.launcher3.LauncherApplication@9164a95], or Utilities.NO_BADGE, [sbn : StatusBarNotification(pkg=com.lookout user=UserHandle{0} id=1668072551 tag=null key=0|com.lookout|1668072551|null|10035: Notification(channel=com.lookout.APP_SAFE_CHANNEL_ID pri=0 contentView=null vibrate=default sound=default defaults=0xffffffff flags=0x11 color=0x00000000 number=0 vis=PUBLIC semFlags=0x0 semPriority=0 semMissedCount=0))] 2019-05-11 20:23:46.071 22786-22807/? E/PBSessionCacheImpl: sessionId[100215445422619936] not persisted. 2019-05-11 20:23:46.070 4548-4548/? D/Notification.Badge: [filtered] shouldBeFilteredOut().mContext[com.android.launcher3.LauncherApplication@9164a95], or Utilities.NO_BADGE, [sbn : StatusBarNotification(pkg=android user=UserHandle{0} id=40 tag=null key=0|android|40|null|1000: Notification(channel=FOREGROUND_SERVICE pri=0 contentView=null vibrate=null sound=null defaults=0x0 flags=0x2 color=0xff607d8b number=0 vis=PRIVATE semFlags=0x0 semPriority=0 semMissedCount=0))] 2019-05-11 20:23:46.071 723-894/? I/qti_sensors_hal: processResp: handle=78, msg_hdr->msg_id=2 2019-05-11 20:23:46.071 4548-4548/? D/Notification.Badge: [filtered] shouldBeFilteredOut().mContext[com.android.launcher3.LauncherApplication@9164a95], or Utilities.NO_BADGE, [sbn : StatusBarNotification(pkg=com.lookout user=UserHandle{0} id=1100 tag=null key=0|com.lookout|1100|null|10035: Notification(channel=com.lookout.STICKY_CHANNEL_ID pri=-1 contentView=null vibrate=null sound=null defaults=0x0 flags=0x7a color=0x00000000 number=0 vis=SECRET semFlags=0x0 semPriority=0 semMissedCount=0))] 2019-05-11 20:23:46.071 4548-4548/? D/Notification.Badge: [filtered] shouldBeFilteredOut().mContext[com.android.launcher3.LauncherApplication@9164a95], or Utilities.NO_BADGE, [sbn : StatusBarNotification(pkg=android user=UserHandle{-1} id=27 tag=null key=-1|android|27|null|1000: Notification(channel=USB pri=0 contentView=null vibrate=null sound=null tick defaults=0x0 flags=0x2 color=0xff607d8b number=0 vis=PUBLIC semFlags=0x0 semPriority=0 semMissedCount=0))] 2019-05-11 20:23:46.071 4548-4548/? D/Notification.Badge: [filtered] shouldBeFilteredOut().mContext[com.android.launcher3.LauncherApplication@9164a95], or Utilities.NO_BADGE, [sbn : StatusBarNotification(pkg=com.android.systemui user=UserHandle{-1} id=2131362720 tag=charging_state key=-1|com.android.systemui|2131362720|charging_state|10074: Notification(channel=GEN pri=-2 contentView=null vibrate=null sound=null defaults=0x0 flags=0xa color=0xff607d8b category=sys number=0 vis=PUBLIC semFlags=0x0 semPriority=0 semMissedCount=0))] 2019-05-11 20:23:46.071 4548-21852/? D/SensorManager: registerListener :: 20, Gyro Interrupt, 20000, 0,
2019-05-11 20:23:46.072 4548-4548/? D/Notification.Badge: [filtered] shouldBeFilteredOut().mContext[com.android.launcher3.LauncherApplication@9164a95], or Utilities.NO_BADGE, [sbn : StatusBarNotification(pkg=android user=UserHandle{-1} id=3012971 tag=null key=-1|android|3012971|null|1000: Notification(channel=NETWORK_CONNECTIONS pri=-2 contentView=null vibrate=null sound=null tick defaults=0x0 flags=0x10 color=0x00000000 number=0 vis=PRIVATE semFlags=0x0 semPriority=0 semMissedCount=0))] 2019-05-11 20:23:46.072 4548-21853/? D/SensorManager: registerListener fail :: 20, Gyro Interrupt, 20000, 0,
2019-05-11 20:23:46.072 4548-4607/? D/Notification.Badge: LauncherModel:onNotificationFullRefresh() : [0], IconType : [-1] 2019-05-11 20:23:46.076 22786-21066/? I/PBSessionCacheImpl: Deleted sessionId[100215445422619936] from persistence. 2019-05-11 20:23:46.077 1634-5462/? D/ActivityManager: post active user change for 0 fullscreen true isHomeActivity() true 2019-05-11 20:23:46.077 1634-5462/? I/WallpaperManagerService: switchPersonaWallpaper is called for personaId-0 2019-05-11 20:23:46.077 1634-1634/? D/WallpaperManagerService: force update = false; persona id = 0; current user =0; current persona = 0 2019-05-11 20:23:46.078 4548-4548/? I/Launcher: onWindowVisibilityChanged : true 2019-05-11 20:23:46.079 4548-4548/? D/DragLayer: DragLayer onMeasure, mIsNaviBarPositionChanged = false, mWillOrientationChange = false 2019-05-11 20:23:46.079 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:46.080 1634-5462/? V/WindowManager: Relayout Window{232fa8 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity}: viewVisibility=0 req=1080x1920 WM.LayoutParams{(0,0)(fillxfill) sim=#130 ty=1 fl=#81910d00 pfl=0x20000 fmt=-2 wanim=0x10302ea vsysui=0x700 needsMenuKey=2 colorMode=0 naviIconColor=0} 2019-05-11 20:23:46.081 767-767/? I/SurfaceFlinger: id=398 createSurf (1080x1920),1 flag=4, com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity#0 2019-05-11 20:23:46.082 1634-4547/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:46.083 1634-5462/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:46.088 4548-4548/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:46.088 4548-4548/? D/ViewRootImpl@cffd4bd[LauncherActivity]: Relayout returned: old=[0,0][1080,1920] new=[0,0][1080,1920] result=0x7 surface={valid=true 510485667840} changed=true 2019-05-11 20:23:46.101 4548-4790/? D/OpenGLRenderer: eglCreateWindowSurface = 0x77025943c0 2019-05-11 20:23:46.102 4548-4548/? D/AppsAdapter: notifyUpdate start : com.android.launcher3.Launcher@732116f 2019-05-11 20:23:46.102 4548-4548/? D/AppsCustomAdapter: no change items 2019-05-11 20:23:46.102 4548-4548/? D/AppsAdapter: notifyUpdate end : com.android.launcher3.Launcher@732116f 2019-05-11 20:23:46.110 4548-4548/? D/DragLayer: DragLayer dispatchDraw, mIsNaviBarPositionChanged = false, mWillOrientationChange = false 2019-05-11 20:23:46.120 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:46.132 1634-5462/? D/ConnectivityService: filterNetworkStateForUid() uid: 10079 networkInfo: [type: WIFI[] - WIFI, state: CONNECTED/CONNECTED, reason: (unspecified), extra: "NETGEAR30", failover: false, available: true, roaming: false, metered: false] 2019-05-11 20:23:46.147 1634-4547/? V/WindowManager: finishDrawingLocked: mDrawState=COMMIT_DRAW_PENDING Window{232fa8 u0 com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity} in Surface(name=com.sec.android.app.launcher/com.sec.android.app.launcher.activities.LauncherActivity) 2019-05-11 20:23:46.147 2687-4352/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: newTime=1557622271889 2019-05-11 20:23:46.148 2687-2707/? D/WallpaperService: dispatchAppVisibility onVisibilityChanged(): true 2019-05-11 20:23:46.149 2687-2687/? D/WallpaperService: updateSurface forceRelayout=false redrawNeeded=false myWidth=1188 myHeight=2112 fixedSize=true x = 0 y = 0 mWidth=1188 mHeight=2112 mIsSleepMode=false 2019-05-11 20:23:46.149 2687-2687/? D/ImageWallpaper: onVisibilityChanged: mVisible, visible=false, true 2019-05-11 20:23:46.150 2687-2687/? D/ImageWallpaper: Visibility changed to visible=true 2019-05-11 20:23:46.150 4548-21849/? D/WallpaperManager: checkDeviceDensity deviceRotation=0 deviceHeight=1920 deviceWidth=1080 bitmapHeight=2560 bitmapWidth=1440 2019-05-11 20:23:46.151 2687-2687/? D/ImageWallpaper: newRotation : 0,mLastRotation : 0 2019-05-11 20:23:46.151 2687-2687/? W/SemDesktopModeManager: Desktop Mode feature not available or SemDesktopModeManager not instantiated. Please check Configuration.semDesktopModeEnabled instead. 2019-05-11 20:23:46.151 2687-2687/? D/ImageWallpaper: drawFrame:[frame.width()]1188[frame.height()]2112 2019-05-11 20:23:46.151 2687-2687/? D/ImageWallpaper: surfaceDimensionsChanged=false mDisplayWidth=1080 mDisplayHeight=1920 2019-05-11 20:23:46.151 2687-2687/? D/ImageWallpaper: redrawNeeded = false, mOffsetsChanged = false 2019-05-11 20:23:46.151 2687-2687/? D/ImageWallpaper: Suppressed drawFrame since redraw is not needed and offsets have not changed. 2019-05-11 20:23:46.151 2687-2687/? D/WallpaperService: reportVisibility onVisibilityChanged visible: true 2019-05-11 20:23:46.154 1634-2342/? D/SamsungAnimationCreator: createAnimation type:LowEnd transit:13 enter:false wallpaperXoffset:-54 split:false fixedOri:false 2019-05-11 20:23:46.154 1634-2342/? D/SamsungAnimationCreator: createAnimation displayFrame:Rect(0, 0 - 1080, 1920) frame:null insets:null 2019-05-11 20:23:46.158 1634-5462/? D/SecContentProvider: query(), uri = 17 selection = isSettingsChangesAllowed 2019-05-11 20:23:46.161 1634-5462/? D/SecContentProvider: called from android.uid.systemui:10074 2019-05-11 20:23:46.162 2687-2862/? D/SystemServicesProxy: updateOverviewLastStackActiveTimeAsync: done. 2019-05-11 20:23:46.169 4548-21849/? D/WallpaperManager: resize scale down.:0.75 2019-05-11 20:23:46.169 4548-21849/? D/Launcher.WallpaperUtils: releaseWallpaperDrawable is called by GyroForShadow, refLength=1 2019-05-11 20:23:46.169 4548-21849/? E/Launcher.WallpaperUtils: check bitmap.recycle() on releaseWallpaperDrawable 2019-05-11 20:23:46.176 767-767/? V/Surface: sf_framedrop debug : 0x4f4c, game : false, logging : 0 2019-05-11 20:23:46.186 1634-2342/? D/TaskSnapshotCache: putSnapshot mTaskId=22 RunningCache size=2 2019-05-11 20:23:46.204 21450-21481/? I/ReschedulableTimer: [#CMH#] ReschedulableTimer started 2019-05-11 20:23:46.212 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b522b580 | 0000 | RGBA_8888 | 179.0 318.0 901.0 1601.0 | 0 0 1080 1920 | com.sec.android.app.launcher/com.sec[...]uncher.activities.LauncherActivity#0 SolidColor | | 0002 | Unknown | 0.0 0.0 -1.0 -1.0 | 2 3 1078 1916 | Background for - SurfaceView - com.h[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79b53d1180 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 2 3 1078 1916 | SurfaceView - com.howlersstudio.alle[...]ayer.UnityPlayerActivity@56aff5a@0#0 SolidColor | | 0000 | Unknown | -0.2 -0.2 -0.8 -0.8 | 0 0 1080 1920 | DimLayerController/Stack 2019-05-11 20:23:46.212 767-767/? I/SurfaceFlinger: =0#0 Device | 0x79ba462080 | 0000 | RGBA_8888 | 0.0 0.0 1026.0 398.0 | 27 792 1053 1190 | Application Error: com.howlersstudio.allensrage#0 2019-05-11 20:23:46.244 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b522b580 | 0000 | RGBA_8888 | 172.0 305.0 908.0 1615.0 | 0 0 1080 1920 | com.sec.android.app.launcher/com.sec[...]uncher.activities.LauncherActivity#0 SolidColor | | 0002 | Unknown | 0.0 0.0 -1.0 -1.0 | 21 37 1059 1883 | Background for - SurfaceView - com.h[...]ayer.UnityPlayerActivity@56aff5a@0#0 Device | 0x79b522b380 | 0002 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 21 37 1059 1883 | SurfaceView - com.howlersstudio.alle[...]ayer.UnityPlayerActivity@56aff5a@0#0 SolidColor | | 0000 | Unknown | -0.2 -0.2 -0.8 -0.8 | 0 0 1080 1920 | DimLayerController/Stack 2019-05-11 20:23:46.244 767-767/? I/SurfaceFlinger: =0#0 Device | 0x79ba462080 | 0000 | RGBA_8888 | 0.0 0.0 1026.0 398.0 | 27 792 1053 1190 | Application Error: com.howlersstudio.allensrage#0 Device | 0x79b522b480 | 0000 | RGBA_8888 | 0.0 52.0 1080.0 63.0 | 0 0 1080 11 | StatusBar#0 2019-05-11 20:23:46.527 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b522b580 | 0000 | RGBA_8888 | 1.0 2.0 1079.0 1919.0 | 0 0 1080 1920 | com.sec.android.app.launcher/com.sec[...]uncher.activities.LauncherActivity#0 SolidColor | | 0000 | Unknown | -0.2 -0.2 -0.8 -0.8 | 0 0 1080 1920 | DimLayerController/Stack=0#0 Device | 0x79ba462080 | 0000 | RGBA_8888 | 0.0 0.0 1026.0 398.0 | 27 792 1053 1190 | Application Error: com.howlersstudio.allensrage#0 Device | 0x79b522b480 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 63.0 | 0 0 1080 63 | StatusBar#0 2019-05-11 20:23:46.535 1634-4179/? D/CustomFrequencyManagerService: releaseDVFSLockLocked : Getting Lock type frm List : DVFS_MIN_LIMIT frequency : 1401600 uid : 1000 pid : 1634 tag : AMS_ACT_RESUME@CPU_MIN@91 2019-05-11 20:23:46.538 1634-4179/? D/ActivityManagerPerformance: AMP_release() ACT_RESUME 2019-05-11 20:23:46.584 1634-4174/? D/Dex2oatAdjuster: Before fg size = 0 2019-05-11 20:23:46.584 1634-4174/? D/Dex2oatAdjuster: After bg size = 0 fg size = 0 2019-05-11 20:23:46.586 2838-22999/? D/ProcessObserver_FLP: onForegroundActivities changed, 21745/10330/false 2019-05-11 20:23:46.586 2945-3177/? D/ForegroundUtils: could not check pending caller 2019-05-11 20:23:46.587 10635-10649/? I/SAMSUNGPAY: [Hint_ProcessStatusChange] fg Change, pid : 21745 , isNotify : true , isForeground : false , fg list : [4548] 2019-05-11 20:23:46.628 4548-4790/? W/OpenGLRenderer: Incorrectly called buildLayer on View: WorkspaceCellLayoutChildren, destroying layer... 2019-05-11 20:23:46.719 1634-2400/? D/MdnieScenarioControlService: packageName : com.sec.android.app.launcher className : com.sec.android.app.launcher.activities.LauncherActivity 2019-05-11 20:23:46.720 1634-2400/? V/MdnieScenarioControlService: setUIMode from UI function(3) 2019-05-11 20:23:46.794 729-729/? I/android.hardware.wifi@1.0-service: getLinkLayerStats 2019-05-11 20:23:46.910 1634-6976/? D/SSRM:T: SIOP:: AP = 390, PST = 376 (W:10), BAT = 293, CHG = 358 2019-05-11 20:23:47.042 1634-1692/? I/zygote64: NativeAllocBackground concurrent copying GC freed 149496(9MB) AllocSpace objects, 59(1668KB) LOS objects, 29% free, 58MB/82MB, paused 447us total 390.452ms 2019-05-11 20:23:47.519 1634-2391/? D/InputReader: Input event(5): value=1 when=7439632473000 2019-05-11 20:23:47.519 1634-2391/? D/InputReader: Input event(5): value=1 when=7439632473000 2019-05-11 20:23:47.519 1634-2391/? I/InputReader: Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.765 ] when=7439632473000 2019-05-11 20:23:47.522 1634-2390/? I/InputDispatcher: Delivering touch to (2687): action: 0x4, toolType: 1 2019-05-11 20:23:47.523 1634-2390/? I/InputDispatcher: Delivering touch to (1634): action: 0x0, toolType: 1 2019-05-11 20:23:47.524 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: ViewPostIme pointer 0 2019-05-11 20:23:47.530 1634-1634/? D/PreBindingService: handleMessage : 1 2019-05-11 20:23:47.605 1634-6976/? D/SSRM:T: SIOP:: AP = 390, PST = 375 (W:10), BAT = 293, CHG = 359 2019-05-11 20:23:47.611 1634-2391/? D/InputReader: Input event(5): value=0 when=7439727488000 2019-05-11 20:23:47.612 1634-2391/? D/InputReader: Input event(5): value=0 when=7439727488000 2019-05-11 20:23:47.612 1634-2391/? I/InputReader: Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=7439727488000 2019-05-11 20:23:47.612 1634-2390/? I/InputDispatcher: Delivering touch to (1634): action: 0x1, toolType: 1 2019-05-11 20:23:47.612 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: ViewPostIme pointer 1 2019-05-11 20:23:47.630 1634-2974/? W/ActivityManager: Force finishing activity com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity 2019-05-11 20:23:47.631 1634-2974/? D/TaskSnapshotCache: removeRunningEntry taskId=22 RunningCache size=1 2019-05-11 20:23:47.632 1634-2974/? I/WindowManager: Destroying surface Surface(name=com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity) called by com.android.server.wm.WindowStateAnimator.destroySurface:2501 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:985 com.android.server.wm.WindowState.removeImmediately:2403 com.android.server.wm.WindowState.removeIfPossible:2611 com.android.server.wm.WindowState.removeIfPossible:2441 com.android.server.wm.WindowToken.removeAllWindowsIfPossible:143 com.android.server.wm.AppWindowToken.removeIfPossible:606 com.android.server.wm.AppWindowToken.onRemovedFromDisplay:674 2019-05-11 20:23:47.633 767-1275/? I/SurfaceFlinger: id=396 Removed com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 (3/6) 2019-05-11 20:23:47.634 767-1275/? I/SurfaceFlinger: id=396 Removed com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 (-2/6) 2019-05-11 20:23:47.640 1634-2642/? D/OpenGLRenderer: eglDestroySurface = 0x76fc378080 2019-05-11 20:23:47.640 1634-2642/? D/OpenGLRenderer: endAllActiveAnimators on 0x76e5517c00 (RippleDrawable) with handle 0x76fac8dec0 2019-05-11 20:23:47.640 1634-1882/? D/ViewRootImpl@e86d5e6[allensrage]: dispatchDetachedFromWindow 2019-05-11 20:23:47.640 1634-1882/? D/InputEventReceiver: channel '2bc4b7d Application Error: com.howlersstudio.allensrage (client)' ~ Disposing input event receiver. 2019-05-11 20:23:47.640 1634-1882/? D/InputEventReceiver: channel '2bc4b7d Application Error: com.howlersstudio.allensrage (client)' ~NativeInputEventReceiver. 2019-05-11 20:23:47.646 767-767/? I/Layer: id=396 onRemoved com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity#1 2019-05-11 20:23:47.647 767-767/? I/Layer: id=395 onRemoved Background for - SurfaceView - com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity@56aff5a@0#0 2019-05-11 20:23:47.647 767-767/? I/Layer: id=394 onRemoved SurfaceView - com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity@56aff5a@0#0 2019-05-11 20:23:47.656 767-837/? E/BufferQueueProducer: [SurfaceView - com.howlersstudio.allensrage/com.unity3d.player.UnityPlayerActivity@56aff5a@0#0] dequeueBuffer: BufferQueue has been abandoned 2019-05-11 20:23:47.656 21745-21789/? I/Adreno: DequeueBuffer: dequeueBuffer failed 2019-05-11 20:23:47.663 1634-1882/? D/InputDispatcher: Focus left window: 1634 2019-05-11 20:23:47.663 1634-1882/? D/InputDispatcher: Focus entered window: 4548 2019-05-11 20:23:47.667 1634-2974/? I/ActivityManager: Killing 21745:com.howlersstudio.allensrage/u0a330 (adj 900): crash 2019-05-11 20:23:47.679 4548-4548/? D/ViewRootImpl@cffd4bd[LauncherActivity]: MSG_WINDOW_FOCUS_CHANGED 1 2019-05-11 20:23:47.686 1634-1882/? D/WindowManager: set systemUiVisibility : systemUiFlags= 0x708 fullscreenStackSysUiFlags= 0x0 2019-05-11 20:23:47.688 2838-22999/? D/ProcessObserver_FLP: onProcessDied, 21745/10330 2019-05-11 20:23:47.688 1634-1882/? E/ViewRootImpl: sendUserActionEvent() returned. 2019-05-11 20:23:47.688 2945-3177/? D/ForegroundUtils: could not check pending caller 2019-05-11 20:23:47.690 4548-4548/? V/InputMethodManager: Starting input: tba=android.view.inputmethod.EditorInfo@f30d890 nm : com.sec.android.app.launcher ic=null 2019-05-11 20:23:47.690 4548-4548/? I/InputMethodManager: startInputInner - mService.startInputOrWindowGainedFocus 2019-05-11 20:23:47.690 1634-2974/? D/WindowManager: adjustSystemUiVisibilityLw : vis= 0x708 2019-05-11 20:23:47.690 1634-5462/? D/InputMethodManagerService: startInputOrWindowGainedFocus : windowGainedFocus 2019-05-11 20:23:47.691 1634-5462/? D/InputMethodManagerService: windowGainedFocus: destinationUserId (getCallingUid) = 0 2019-05-11 20:23:47.691 1634-5462/? D/InputMethodManagerService: windowGainedFocus: currentUserId=0 2019-05-11 20:23:47.691 1634-5462/? D/InputMethodManagerService: windowGainedFocus: mCurrentFocusedUserId=0 2019-05-11 20:23:47.691 1634-5462/? D/InputMethodManagerService: windowGainedFocus : lock - currentUserId = 0 destinationUserId = 0 2019-05-11 20:23:47.691 1634-5462/? D/InputMethodManagerService: windowGainedFocus : mCurrentFocusedUserId - 0 and mSecureKeypadEnabled - false, userSwitched - false 2019-05-11 20:23:47.691 1634-5462/? V/InputMethodManagerService: windowGainedFocus : reason=WINDOW_FOCUS_GAIN client=android.os.BinderProxy@b271389 inputContext=null missingMethods= attribute=android.view.inputmethod.EditorInfo@4735159 nm = com.sec.android.app.launcher controlFlags=#104 softInputMode=#30 windowFlags=#81910d00 2019-05-11 20:23:47.691 1634-5462/? V/InputMethodManagerService: hideCurrentInputLocked : shouldHideSoftInput is false 2019-05-11 20:23:47.691 1634-5462/? D/InputMethodManagerService: isImeSwitcherDisabledPackage : false 2019-05-11 20:23:47.692 1634-5462/? D/InputMethodManagerService: setCurrentInputInfo - inputContext : null eidtorInfo : android.view.inputmethod.EditorInfo@4735159 missingMethods : 0 2019-05-11 20:23:47.692 15257-15257/? I/InputMethodWrapper: call dispatchStartInputWithToken 2019-05-11 20:23:47.693 15257-15257/? I/InputMethodService: dispatchStartInputWithToken 2019-05-11 20:23:47.744 1634-1933/? W/ActivityManager: setHasOverlayUi called on unknown pid: 21745 2019-05-11 20:23:47.746 15257-15257/? D/InputEventReceiver: channel 'ClientState{f08cb38 uid 10330 pid 21745} (client)' ~ Disposing input event receiver. 2019-05-11 20:23:47.746 15257-15257/? D/InputEventReceiver: channel 'ClientState{f08cb38 uid 10330 pid 21745} (client)' ~NativeInputEventReceiver. 2019-05-11 20:23:47.747 1634-2886/? D/SensorService: Calling activate off 2019-05-11 20:23:47.787 1021-2034/? I/SoundAlive_Interface: [ -374266624 ][ 48000 ]FlushBuffers() 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Core: [ -374266624 ] 48000 FlushBuffers() 2019-05-11 20:23:47.788 1021-2034/? D/SoundAlive_Core: [ -374266624 ] 48000 ReOpen( ConfigMode : 1 ) 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Init() nch : 2 bitdepth : 0 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]SamplingRateConfig() SamplingRate : 48000 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]OutDevConfig() OutDevConfig : 1 2019-05-11 20:23:47.788 1021-2034/? D/SoundAlive_Core: [ -374266624 ] 48000 Set_Current_Effect_Configuration( ConfigMode : 1 ) 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Set_Preset() : 0 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Set_User_BWE() 0 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Set_User_CH() : 1 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Set_SquareUI() : 4 , 4 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Set_User_3D() : 0 2019-05-11 20:23:47.788 1021-2034/? I/SoundAlive_Effect: [ -374266624 ][ 48000 ]Set_User_BE() : 0 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: stopOutput() output 29, stream 3, session 345 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: setBeaconMute(1) mBeaconMuteRefCount=0 mBeaconPlayingRefCount=0 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: getNewOutputDevice() selected device 0 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: setOutputDevice() device 0000 delayMs 96 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: setOutputDevice() prevDevice 0x0002 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: setOutputDevice() setting same device 0x0000 or null device 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: selectOutputForMusicEffects selected output 13 2019-05-11 20:23:47.800 1021-1475/? V/APM_AudioPolicyManager: releaseOutput() 29 2019-05-11 20:23:47.813 1634-2974/? D/BatteryService: !@BatteryListener : batteryPropertiesChanged! 2019-05-11 20:23:47.813 1634-2974/? D/BatteryService: level:54, scale:100, status:2, health:2, present:true, voltage: 3887, temperature: 293, technology: Li-ion, AC powered:false, USB powered:true, POGO powered:false, Wireless powered:false, icon:17303845, invalid charger:0, maxChargingCurrent:0, maxChargingVoltage:0, chargeCounter:0 2019-05-11 20:23:47.813 1634-2974/? D/BatteryService: online:4, current avg:-26, charge type:1, power sharing:false, high voltage charger:false, capacity:280000, batterySWSelfDischarging:false, misc_event:0, current_event:0, current_now:-188 2019-05-11 20:23:47.813 1634-1634/? D/BatteryService: Sending ACTION_BATTERY_CHANGED. 2019-05-11 20:23:47.814 1634-1634/? I/MotionRecognitionService: Plugged 2019-05-11 20:23:47.814 1634-1634/? D/MotionRecognitionService: mCableConnection= 1 2019-05-11 20:23:47.814 1634-1634/? D/MotionRecognitionService: setPowerConnected : mGripEnabled = false 2019-05-11 20:23:47.815 1634-1634/? D/SamsungPhoneWindowManager: ACTION_BATTERY_CHANGED - Level :: 54, battStatus :: 2 2019-05-11 20:23:47.815 1634-1930/? D/UsbDeviceManager: handleMessage -> MSG_UPDATE_CHARGING_STATE = 1 2019-05-11 20:23:47.816 2687-2687/? D/KeyguardUpdateMonitor: received broadcast android.intent.action.BATTERY_CHANGED 2019-05-11 20:23:47.816 2687-2687/? D/BatteryController: onReceive-ACTION_BATTERY_CHANGED : mLevel=54, mBatteryStatus=2 2019-05-11 20:23:47.818 2645-2645/? V/HeadsetService: Received Intent.ACTION_BATTERY_CHANGED 2019-05-11 20:23:47.818 2645-3243/? D/HeadsetStateMachine: Disconnected process message: 10, size: 0 2019-05-11 20:23:47.819 2982-3117/? D/EPDG -- SIM0 [EpdgSubScription]: android.intent.action.BATTERY_CHANGED intent received. 2019-05-11 20:23:47.819 2687-2687/? D/PowerUI: priorPlugType = 2 mPlugType = 2 2019-05-11 20:23:47.820 2687-2687/? D/PowerUI.Notification: showChargingNotice oldChargingType : 1 currentChargingType : 1 oldChargingTime : 13704000 mChargingTime : 13704000 2019-05-11 20:23:47.820 2687-2687/? D/PowerUI.Notification: There is no change about charging status, so return! 2019-05-11 20:23:47.822 20552-20552/? D/BatteryManager: Receiving Battery Change 54.000004% 2019-05-11 20:23:47.822 20552-20552/? D/BatteryManager: Receiving Battery Change1 0.54% 2019-05-11 20:23:47.822 20552-20552/? D/BatteryManager: Receiving Battery Change2 0.15% 2019-05-11 20:23:47.822 20552-20552/? D/BatteryManager: Receiving Battery Change3 false% 2019-05-11 20:23:47.899 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b522b200 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.sec.android.app.launcher/com.sec[...]uncher.activities.LauncherActivity#0 Device | 0x79ba462080 | 0000 | RGBA_8888 | 0.0 0.0 1026.0 398.0 | 116 826 961 1154 | Application Error: com.howlersstudio.allensrage#0 Device | 0x79b522b480 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 63.0 | 0 0 1080 63 | StatusBar#0 2019-05-11 20:23:47.935 767-767/? I/SurfaceFlinger: Display 0 HWC layers: type | handle | flag | format | source crop (l,t,r,b) | frame | name ------------+--------------+------+-----------+----------------------------+---------------------+------ Device | 0x79b53d1e80 | 0002 | RGBx_8888 | 54.0 96.0 1134.0 2016.0 | 0 0 1080 1920 | com.android.systemui.ImageWallpaper#0 Device | 0x79b522b200 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 1920.0 | 0 0 1080 1920 | com.sec.android.app.launcher/com.sec[...]uncher.activities.LauncherActivity#0 Device | 0x79b522b480 | 0000 | RGBA_8888 | 0.0 0.0 1080.0 63.0 | 0 0 1080 63 | StatusBar#0 2019-05-11 20:23:47.935 1634-2342/? I/WindowManager: Destroying surface Surface(name=Application Error: com.howlersstudio.allensrage) called by com.android.server.wm.WindowStateAnimator.destroySurface:2501 com.android.server.wm.WindowStateAnimator.destroySurfaceLocked:985 com.android.server.wm.WindowState.destroyOrSaveSurfaceUnchecked:3679 com.android.server.wm.RootWindowContainer.performSurfacePlacement:826 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacementLoop:233 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacement:168 com.android.server.wm.WindowSurfacePlacer.performSurfacePlacement:158 com.android.server.wm.WindowSurfacePlacer.lambda$-com_android_server_wm_WindowSurfacePlacer_6459:135 2019-05-11 20:23:47.936 767-840/? I/SurfaceFlinger: id=397 Removed Application Error: com.howlersstudio.allensrage#0 (4/5) 2019-05-11 20:23:47.936 767-840/? I/SurfaceFlinger: id=397 Removed Application Error: com.howlersstudio.allensrage#0 (-2/5) 2019-05-11 20:23:47.937 1634-2342/? W/AppOps: Finishing op nesting under-run: uid 1000 pkg android code 24 time=0 duration=0 nesting=0 2019-05-11 20:23:47.944 767-767/? I/Layer: id=397 onRemoved Application Error: com.howlersstudio.allensrage#0 2019-05-11 20:23:48.040 1634-1634/? D/PreBindingService: handleMessage : 1 2019-05-11 20:23:48.339 3926-3926/? D/io_stats: !@ 8,0 r 411245 12966220 w 120704 2600812 d 13526 1026196 f 38891 38905 iot 233330 177148 th 51200 0 0 pt 0 inp 0 0 7440.454 2019-05-11 20:23:48.615 2687-3045/? D/NetworkController.MobileSignalController(0/1): onSignalStrengthsChanged signalStrength=SignalStrength: 99 99 -120 -160 -120 -1 -1 19 -102 -13 70 2147483647 0 2147483647 0x4000 P gsm|lte level=4 2019-05-11 20:23:48.615 2687-3045/? D/NetworkController.MobileSignalController(0/1): getMobileIconGroup(): 13 2019-05-11 20:23:48.615 2687-3045/? D/NetworkController.MobileSignalController(0/1): updateATTMobileIconGroup(): 13 2019-05-11 20:23:48.631 2982-3117/? D/EPDG -- SIM0 [SMARTWIFI]: onSignalStrengthsChanged: Received signal strength change, phone type is: 1 2019-05-11 20:23:48.632 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastLteRSRP is -102currentLteRSRP is -102 2019-05-11 20:23:48.632 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastLteRSRQ is -13currentLteRSRQ is -13 2019-05-11 20:23:48.632 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastCdmaDb is -16currentCdmaDb is -16 2019-05-11 20:23:48.633 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: Radio oldest entry removed 2019-05-11 20:23:48.633 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: New entry : (SignalStrength: 99 99 -120 -160 -120 -1 -1 19 -102 -13 70 2147483647 0 2147483647 0x4000 P gsm|lte : 0 ) 2019-05-11 20:23:48.633 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: Radio entry added 2019-05-11 20:23:48.662 1021-21791/? W/libutils.threads: Thread (this=0xeaeb4730): don't call waitForExit() from this Thread object's thread. It's a guaranteed deadlock! 2019-05-11 20:23:49.819 729-729/? I/android.hardware.wifi@1.0-service: getLinkLayerStats 2019-05-11 20:23:50.258 4523-4647/? D/ContactsProvider_EventLog: contents_sample_state: [CONTACT contacts(669) data(4494) accounts({com.google (3)=620, vnd.sec.contact.phone (1)=50}) accounts deleted({}) calls([logtype:100 cnt:7, logtype:200 cnt:85, logtype:300 cnt:415, logtype:500 cnt:2, logtype:1000 cnt:491]) countryIso(US) userId(0) ] contents_sample_state: [ agr({[3]=618, [1]=49, [2]=1, [3 ,3]=1}) ] contents_sample_state: [ actCnt({android.process.acore(4523)=1}) ] contents_sample_state: [PROFILE contacts(1) data(2) accounts({vnd.sec.contact.phone (1)=1}) ] contents_sample_state: [SAPROFILE contacts(1) data(6) accounts({vnd.sec.contact.phone (1)=1}) ] 2019-05-11 20:23:50.261 4523-4647/? E/ContactsProvider_EventLog: Flush buffer to file cnt : 1 size : 1Kb duration : 2ms lastUpdatedAfter : 60141 ms mFlush_time_threasold : 2000 mCurrentSize : 648 2019-05-11 20:23:50.772 711-3788/? D/audio_hw_primary: out_standby: enter: stream (0xf45d5000) usecase(12: audio-ull-playback) 2019-05-11 20:23:50.814 711-3788/? D/audio_hw_primary: disable_audio_route: reset and update mixer path: audio-ull-playback speaker 2019-05-11 20:23:50.814 711-3788/? D/audio_route: Setting mixer control: PRI_MI2S_RX Audio Mixer MultiMedia3, value: 0 2019-05-11 20:23:50.818 711-3788/? D/hardware_info: hw_info_append_hw_type : device_name = speaker 2019-05-11 20:23:50.819 711-3788/? D/audio_hw_primary: disable_snd_device: snd_device(2: speaker) 2019-05-11 20:23:50.819 711-3788/? V/audio_hw_sec: [MAXIM] sec_dsm_spkr_prot_control_tx_topology() enable:0, dsm_is_enabled:1 2019-05-11 20:23:50.849 711-3788/? D/hardware_info: hw_info_append_hw_type : device_name = vi-feedback 2019-05-11 20:23:50.849 711-3788/? D/audio_hw_primary: disable_snd_device: snd_device(389: vi-feedback) 2019-05-11 20:23:50.850 711-3788/? D/audio_hw_primary: disable_audio_route: reset and update mixer path: spkr-vi-feedback 2019-05-11 20:23:50.850 711-3788/? D/audio_route: Setting mixer control: MultiMedia2 Mixer PRI_MI2S_TX, value: 0 2019-05-11 20:23:50.854 711-3788/? V/audio_hw_sec: [MAXIM] sec_dsm_spkr_prot_control_tx_topology() dsm disabled 2019-05-11 20:23:50.855 711-3788/? D/audio_hw_primary: out_standby: exit 2019-05-11 20:23:51.185 2687-3045/? D/NetworkController.MobileSignalController(0/1): onSignalStrengthsChanged signalStrength=SignalStrength: 99 99 -120 -160 -120 -1 -1 22 -102 -13 70 2147483647 0 2147483647 0x4000 P gsm|lte level=4 2019-05-11 20:23:51.186 2687-3045/? D/NetworkController.MobileSignalController(0/1): getMobileIconGroup(): 13 2019-05-11 20:23:51.186 2687-3045/? D/NetworkController.MobileSignalController(0/1): updateATTMobileIconGroup(): 13 2019-05-11 20:23:51.189 2982-3117/? D/EPDG -- SIM0 [SMARTWIFI]: onSignalStrengthsChanged: Received signal strength change, phone type is: 1 2019-05-11 20:23:51.190 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastLteRSRP is -102currentLteRSRP is -102 2019-05-11 20:23:51.190 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastLteRSRQ is -13currentLteRSRQ is -13 2019-05-11 20:23:51.190 2982-4214/? D/EPDG -- SIM0 [SMARTWIFI]: lastCdmaDb is -16currentCdmaDb is -16 2019-05-11 20:23:51.190 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: Radio oldest entry removed 2019-05-11 20:23:51.191 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: New entry : (SignalStrength: 99 99 -120 -160 -120 -1 -1 22 -102 -13 70 2147483647 0 2147483647 0x4000 P gsm|lte : 0 ) 2019-05-11 20:23:51.191 2982-4214/? V/EPDG -- SIM0 [SMARTWIFI]: Radio entry added 2019-05-11 20:23:52.850 729-729/? I/android.hardware.wifi@1.0-service: getLinkLayerStats 2019-05-11 20:23:53.348 3926-3926/? D/io_stats: !@ 8,0 r 411245 12966220 w 120797 2601712 d 13532 102632

howlmoon123 commented 5 years ago

That was the full unfiltered Logcat

legas1 commented 5 years ago

Yes nice, but ideally it should be uploaded to pastebin.com or similarly site. However I found this piece of information:

E/ValidateServiceOp: APP ID IS NOT CORRECTLY CONFIGURED TO USE GOOGLE PLAY GAME SERVICES Application ID ( 683956032794) must be a numeric value. Please verify that your manifest refers to the correct project ID.


What is your plugin version?

howlmoon123 commented 5 years ago

0.9.50 I have also verified that the Main Manifest contains the correct AppId and that it is escaped correctly. I am going to set 1 up in 2018 for this applications and see if it works.

On Sun, May 12, 2019 at 3:52 AM Daniel Matějka notifications@github.com wrote:

Yes nice, but ideally it should be uploaded to pastebin.com or similarly site. However I found this piece of information:

E/ValidateServiceOp: APP ID IS NOT CORRECTLY CONFIGURED TO USE GOOGLE PLAY GAME SERVICES Application ID ( 683956032794) must be a numeric value. Please verify that your manifest refers to the correct project ID.

What is your plugin version?

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/playgameservices/play-games-plugin-for-unity/issues/2569#issuecomment-491577360, or mute the thread https://github.com/notifications/unsubscribe-auth/ABVSKAI7AJUBKBOFZDW5FNTPU7LENANCNFSM4HLTZG4Q .

-- Allen D Moon howlmoon123@gmail.com c: (806) 433-7057

legas1 commented 5 years ago

You got old version, in newest version it's fixed by this workaround (#2013).

deathsaber92 commented 5 years ago

I have everything set just as it's documented and as he does in his code. This plugin is not working anymore. Also using Unity 2019 since the last time I used it , this is the only change. Nothing reacts in game towards login.. No errors in console nothing.. If I don't use unity's social platform and directly call everything from the instance, the backgrounds for leaderboard and achievements appear but just those transparent backgounds... I have no ideea what I do wrong, but I used this before and it was ok

robert-paraschiv commented 5 years ago

I got it working, the issue was with some "0Auth consent" that needed to be updated, in the google dev console. (https://console.developers.google.com)

manwithsteelnerves commented 3 years ago

Taken from Cross Platform Native Plugins But, the info here is very general and works with any plugins.

Why sign in fails?

For Google Play Services to sign in successfully, you need to make sure the apk from where you are logging in should be allowed to make requests to google servers.

How to make the APK authorized to make requests to google servers?

Each apk built with a keystore has a SHA fingerprint. You need to make sure the SHA fingerprint is added in the google cloud.

You can fetch it with keytool command (check here on how to get SHA for each environment )

How many SHA fingerprints I need to add for successful authentication?

One per each environment. In total 3 environments (dev, release and production)

  1. Development build uses android default debug keystore.

  2. Release build uses the keystore you set in publishing settings of player settings

  3. Google play store build which uses google play signing.

If you want all the above builds to authenticate successfully, add all 3 fingerprints. Else only the required environment.

How to get each environment's SHA?

  1. Debug ( keytool -list -v -keystore "PATH_TO_DEBUG_KEYSTORE" -alias androiddebugkey -storepass android -keypass android)

  2. Release (Get from Google play console -> Your App -> Setup -> App signing -> Upload key certificate )

  3. Apk/AAb downloaded from Google play store (Get from Google play console -> Your App -> Setup -> App signing -> App signing key certificate )

Where to add these SHA fingerprints?

Google Play Console. Check here for details on how to add a SHA fingerprint.