Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Occasional crash in GameServices::IsAuthorized() #22

Open
stolk opened this issue Sep 14, 2015 · 1 comment
Open

Occasional crash in GameServices::IsAuthorized() #22

stolk opened this issue Sep 14, 2015 · 1 comment

Comments

@stolk
Copy link

stolk commented Sep 14, 2015

On one of my devices, I see this behaviour:

  • sign out of game services.
  • back ground the game.
  • fore ground the game again.
  • sign in.

Then my app will crash in:
(gpg::GameServices::IsAuthorized()+9)

From the docs at https://developers.google.com/games/services/cpp/GettingStartedNativeClient:

In most implementations, a given GameServices object will persist as long as your C environment does; you do not need to reinitialize it when your Android Activity pauses and resumes or when your iOS ViewController loads and unloads.

So I initialize only once, similar to the minimalist example code here: https://github.com/playgameservices/cpp-android-basic-samples/blob/master/samples-android/Minimalist/jni/StateManager.cpp

My InitServices() method:

void StateManager::InitServices
(
        gpg::PlatformConfiguration const &pc,
        gpg::GameServices::Builder::OnAuthActionStartedCallback started_callback,
        gpg::GameServices::Builder::OnAuthActionFinishedCallback finished_callback
)
{
        LOGI("Initializing Services");
        LOGI( "thread id is %d, pid is %d", gettid(), getpid() );

        // Players().FetchSelf() response
        auto pcallback = [&]( gpg::PlayerManager::FetchSelfResponse const& response )
        {
                if ( gpg::IsSuccess( response.status ) )
                {
                        self_id_ = response.data.Id();
                        const std::string& url = response.data.AvatarUrl( gpg::ImageResolution::ICON );
                        LOGI( "Our self id = %s", self_id_.c_str() );
                        LOGI( "Our url = %s", url.c_str() );
                        DownloadAvatar( url, 0 );
                }
        };
        // AuthActionStarted callback
        auto scallback = [started_callback]( gpg::AuthOperation op )
        {
                is_auth_in_progress_ = true;
                if ( started_callback != nullptr ) started_callback( op );
        };
        // AuthActionFinished callback
        auto fcallback = [finished_callback, pcallback]( gpg::AuthOperation op, gpg::AuthStatus status )
        {
                LOGI("Sign in finished with a result %s", gpg::DebugString( status ).c_str() );
                is_auth_in_progress_ = false;
                if ( finished_callback != nullptr ) finished_callback( op, status );
                if ( status == gpg::AuthStatus::VALID )
                {
                        ASSERT( game_services_ );
                        game_services_->Players().FetchSelf( pcallback );       // find out what our own Id is.
                        FetchLeaderboards();
                }
        };

        if (!game_services_)
        {
                LOGI("Uninitialized services, so creating");
                game_services_ = gpg::GameServices::Builder()
                        .SetOnAuthActionStarted( scallback )
                        .SetOnAuthActionFinished( fcallback )
                        .SetOnMultiplayerInvitationEvent( invitationcallback )
                        .Create(pc);
        }
@stolk
Copy link
Author

stolk commented Sep 14, 2015

The full stack dump:

I/swaag   (19823): User wants to sign in or out of google plus.
F/libc    (19823): Fatal signal 11 (SIGSEGV) at 0x00000000 (code=1), thread 19838 (main)
I/DEBUG   (  346): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG   (  346): Build fingerprint: 'samsung/kwifixx/kwifi:4.4.2/KOT49H/G900XXXU0ANE5_LLK:user/release-keys'
I/DEBUG   (  346): Revision: '14'
I/DEBUG   (  346): pid: 19823, tid: 19838, name: main  >>> com.steenriver.buggy <<<
I/DEBUG   (  346): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000000
I/DEBUG   (  346):     r0 00000000  r1 fffff3e0  r2 e7532904  r3 e7532904
I/DEBUG   (  346):     r4 7858bc78  r5 7858bc74  r6 00000000  r7 7837b62c
I/DEBUG   (  346):     r8 7858bcf4  r9 00000000  sl 780f9347  fp 7858bcf0
I/DEBUG   (  346):     ip 7837b6b0  sp 7858bc70  lr 77fa495d  pc 78027bee  cpsr 600f0030
I/DEBUG   (  346):     d0  6e61772072657355  d1  6973206f74207374
I/DEBUG   (  346):     d2  726f206e69206e67  d3  20666f2074756f20
I/DEBUG   (  346):     d4  3f6eeeefbf6eeeef  d5  3f80000000000000
I/DEBUG   (  346):     d6  3f6eeeefbf700000  d7  3f80000000000000
I/DEBUG   (  346):     d8  000000003c23d70a  d9  000000003f800000
I/DEBUG   (  346):     d10 0000000000000000  d11 0000000000000000
I/DEBUG   (  346):     d12 0000000000000000  d13 0000000000000000
I/DEBUG   (  346):     d14 0000000000000000  d15 0000000000000000
I/DEBUG   (  346):     d16 7f7fffff3f317218  d17 0000000000000000
I/DEBUG   (  346):     d18 0000000000000000  d19 0000000000000000
I/DEBUG   (  346):     d20 0000000000000000  d21 0000000000000000
I/DEBUG   (  346):     d22 3f80000000000000  d23 00000000bf800000
I/DEBUG   (  346):     d24 ff00fde0fde0fde0  d25 ff00ea20ea20ea20
I/DEBUG   (  346):     d26 4028000000000000  d27 3fcc6ca98ef8a480
I/DEBUG   (  346):     d28 3f991df3908c33ce  d29 3fae3f88c835c7c6
I/DEBUG   (  346):     d30 3f75232120c26716  d31 3fd73aa0382fc010
I/DEBUG   (  346):     scr 20000012
I/DEBUG   (  346): 
I/DEBUG   (  346): backtrace:
I/DEBUG   (  346):     #00  pc 000ffbee  /data/app-lib/com.steenriver.buggy-204/libbuggy.so (gpg::GameServices::IsAuthorized()+9)
I/DEBUG   (  346):     #01  pc 0007c959  /data/app-lib/com.steenriver.buggy-204/libbuggy.so (android_main+848)
I/DEBUG   (  346): 
I/DEBUG   (  346): stack:
I/DEBUG   (  346):          7858bc30  00000000  
I/DEBUG   (  346):          7858bc34  73982bb0  
I/DEBUG   (  346):          7858bc38  7923fe90  
I/DEBUG   (  346):          7858bc3c  7923fe90  
I/DEBUG   (  346):          7858bc40  739854c0  
I/DEBUG   (  346):          7858bc44  7731e16f  /system/vendor/lib/egl/libGLESv2_adreno.so (rb_mark_state_change+44)
I/DEBUG   (  346):          7858bc48  739854c0  
I/DEBUG   (  346):          7858bc4c  73986680  
I/DEBUG   (  346):          7858bc50  73985ec0  
I/DEBUG   (  346):          7858bc54  77324b2b  /system/vendor/lib/egl/libGLESv2_adreno.so (rb_viewport+100)
I/DEBUG   (  346):          7858bc58  3c23d70a  
I/DEBUG   (  346):          7858bc5c  00000000  
I/DEBUG   (  346):          7858bc60  3f800000  
I/DEBUG   (  346):          7858bc64  00000000  
I/DEBUG   (  346):          7858bc68  00000000  
I/DEBUG   (  346):          7858bc6c  00000000  
I/DEBUG   (  346):     #00  7858bc70  00000000  
I/DEBUG   (  346):          7858bc74  00000000  
I/DEBUG   (  346):          7858bc78  00000000  
I/DEBUG   (  346):          7858bc7c  00000000  
I/DEBUG   (  346):          7858bc80  7837b62c  /data/app-lib/com.steenriver.buggy-204/libbuggy.so
I/DEBUG   (  346):          7858bc84  73977ae8  
I/DEBUG   (  346):          7858bc88  783f1920  /data/app-lib/com.steenriver.buggy-204/libbuggy.so
I/DEBUG   (  346):          7858bc8c  e7532904  
I/DEBUG   (  346):          7858bc90  73977ae8  
I/DEBUG   (  346):          7858bc94  780f9268  /data/app-lib/com.steenriver.buggy-204/libbuggy.so
I/DEBUG   (  346):          7858bc98  73977ae8  
I/DEBUG   (  346):          7858bc9c  780f9268  /data/app-lib/com.steenriver.buggy-204/libbuggy.so
I/DEBUG   (  346):          7858bca0  000762f4  
I/DEBUG   (  346):          7858bca4  77fa495d  /data/app-lib/com.steenriver.buggy-204/libbuggy.so (android_main+852)
I/DEBUG   (  346):          7858bca8  4291a7f0  /dev/ashmem/dalvik-heap (deleted)
I/DEBUG   (  346):          7858bcac  780f9433  /data/app-lib/com.steenriver.buggy-204/libbuggy.so
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near r4:
I/DEBUG   (  346):     7858bc58 3c23d70a 00000000 3f800000 00000000  
I/DEBUG   (  346):     7858bc68 00000000 00000000 00000000 00000000  
I/DEBUG   (  346):     7858bc78 00000000 00000000 7837b62c 73977ae8  
I/DEBUG   (  346):     7858bc88 783f1920 e7532904 73977ae8 780f9268  
I/DEBUG   (  346):     7858bc98 73977ae8 780f9268 000762f4 77fa495d  
I/DEBUG   (  346):     7858bca8 4291a7f0 780f9433 780f945b 780f943d  
I/DEBUG   (  346):     7858bcb8 780f940a 780f9453 780f93d8 780f93ed  
I/DEBUG   (  346):     7858bcc8 780f9369 780f938a 780f93ab 780f935d  
I/DEBUG   (  346):     7858bcd8 780f9351 780f9347 780f9341 780f933d  
I/DEBUG   (  346):     7858bce8 780f9268 783f1954 00000000 00000000  
I/DEBUG   (  346):     7858bcf8 72615a28 00000001 4174fc08 73977b28  
I/DEBUG   (  346):     7858bd08 00000000 416e034f 00000008 72615a28  
I/DEBUG   (  346):     7858bd18 41755ea0 73977ae8 00000001 00000001  
I/DEBUG   (  346):     7858bd28 73982a30 78fe1600 00000780 00000438  
I/DEBUG   (  346):     7858bd38 3f75c285 00000000 00000000 e7532904  
I/DEBUG   (  346):     7858bd48 00000000 00000000 00000000 00000000  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near r5:
I/DEBUG   (  346):     7858bc54 77324b2b 3c23d70a 00000000 3f800000  
I/DEBUG   (  346):     7858bc64 00000000 00000000 00000000 00000000  
I/DEBUG   (  346):     7858bc74 00000000 00000000 00000000 7837b62c  
I/DEBUG   (  346):     7858bc84 73977ae8 783f1920 e7532904 73977ae8  
I/DEBUG   (  346):     7858bc94 780f9268 73977ae8 780f9268 000762f4  
I/DEBUG   (  346):     7858bca4 77fa495d 4291a7f0 780f9433 780f945b  
I/DEBUG   (  346):     7858bcb4 780f943d 780f940a 780f9453 780f93d8  
I/DEBUG   (  346):     7858bcc4 780f93ed 780f9369 780f938a 780f93ab  
I/DEBUG   (  346):     7858bcd4 780f935d 780f9351 780f9347 780f9341  
I/DEBUG   (  346):     7858bce4 780f933d 780f9268 783f1954 00000000  
I/DEBUG   (  346):     7858bcf4 00000000 72615a28 00000001 4174fc08  
I/DEBUG   (  346):     7858bd04 73977b28 00000000 416e034f 00000008  
I/DEBUG   (  346):     7858bd14 72615a28 41755ea0 73977ae8 00000001  
I/DEBUG   (  346):     7858bd24 00000001 73982a30 78fe1600 00000780  
I/DEBUG   (  346):     7858bd34 00000438 3f75c285 00000000 00000000  
I/DEBUG   (  346):     7858bd44 e7532904 00000000 00000000 00000000  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near r7:
I/DEBUG   (  346):     7837b60c 7837863c 780cf239 780cf243 780cf24d  
I/DEBUG   (  346):     7837b61c 400e2259 780f9264 780eaa64 78097259  
I/DEBUG   (  346):     7837b62c 00000000 00000000 00000000 400fbb1d  
I/DEBUG   (  346):     7837b63c 400fbc11 400f644d 400e0d15 4010d509  
I/DEBUG   (  346):     7837b64c 400ce6f9 400e50bd 77fb5369 4010d3cf  
I/DEBUG   (  346):     7837b65c 78060d25 77fa54a9 4010d67d 78058745  
I/DEBUG   (  346):     7837b66c 7805b8a5 7805b8c5 78097195 77fa8cc9  
I/DEBUG   (  346):     7837b67c 77fa9e95 77fb043d 7805b9b1 77fa9a09  
I/DEBUG   (  346):     7837b68c 77fc707d 73b95029 77fc7cb9 77fb2181  
I/DEBUG   (  346):     7837b69c 403eb060 77fb2219 400f539c 77fa522d  
I/DEBUG   (  346):     7837b6ac 77fa8ce9 78027be5 77fa8da9 77fa8cfd  
I/DEBUG   (  346):     7837b6bc 77fa92c5 77fa91c5 403515f1 77fb52a9  
I/DEBUG   (  346):     7837b6cc 77fb52bd 40350359 403503a5 403504a5  
I/DEBUG   (  346):     7837b6dc 40350635 73b95149 40350671 40351825  
I/DEBUG   (  346):     7837b6ec 4035196d 403514c5 403ecd34 403eb314  
I/DEBUG   (  346):     7837b6fc 403ebb34 77fb1ad1 400aaf31 400aae81  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near r8:
I/DEBUG   (  346):     7858bcd4 780f935d 780f9351 780f9347 780f9341  
I/DEBUG   (  346):     7858bce4 780f933d 780f9268 783f1954 00000000  
I/DEBUG   (  346):     7858bcf4 00000000 72615a28 00000001 4174fc08  
I/DEBUG   (  346):     7858bd04 73977b28 00000000 416e034f 00000008  
I/DEBUG   (  346):     7858bd14 72615a28 41755ea0 73977ae8 00000001  
I/DEBUG   (  346):     7858bd24 00000001 73982a30 78fe1600 00000780  
I/DEBUG   (  346):     7858bd34 00000438 3f75c285 00000000 00000000  
I/DEBUG   (  346):     7858bd44 e7532904 00000000 00000000 00000000  
I/DEBUG   (  346):     7858bd54 00000000 00000000 00000000 41749581  
I/DEBUG   (  346):     7858bd64 73977ae8 73977b30 73977b34 00000000  
I/DEBUG   (  346):     7858bd74 fffff3c4 00000001 73977b40 4011f2ec  
I/DEBUG   (  346):     7858bd84 77fa5825 00000000 73977b44 6e655355  
I/DEBUG   (  346):     7858bd94 e7532904 7858bdd0 726157e0 77fa5779  
I/DEBUG   (  346):     7858bda4 73977ae8 77fa5779 7848e000 4011f2ec  
I/DEBUG   (  346):     7858bdb4 400e029c 73977ae8 726157e0 7858bdd0  
I/DEBUG   (  346):     7858bdc4 0000000d 00000078 400e0434 7858bdd0  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near sl:
I/DEBUG   (  346):     780f9324 6f590021 72612075 6f6e2065 6f6c2074  
I/DEBUG   (  346):     780f9334 64656767 216e6920 79756200 6f727000  
I/DEBUG   (  346):     780f9344 73006f6d 696e6769 74756f6e 61656c00  
I/DEBUG   (  346):     780f9354 62726564 6472616f 68636100 65766569  
I/DEBUG   (  346):     780f9364 746e656d 65735500 61772072 2073746e  
I/DEBUG   (  346):     780f9374 76206f74 20776569 69686361 6d657665  
I/DEBUG   (  346):     780f9384 73746e65 7355002e 77207265 73746e61  
I/DEBUG   (  346):     780f9394 206f7420 77656976 61656c20 62726564  
I/DEBUG   (  346):     780f93a4 6472616f 55002e73 20726573 746e6177  
I/DEBUG   (  346):     780f93b4 6f742073 67697320 6e69206e 20726f20  
I/DEBUG   (  346):     780f93c4 2074756f 6720666f 6c676f6f 6c702065  
I/DEBUG   (  346):     780f93d4 002e7375 69797274 7420676e 7561206f  
I/DEBUG   (  346):     780f93e4 726f6874 2e657a69 726c6100 79646165  
I/DEBUG   (  346):     780f93f4 74756120 69726f68 2e64657a 676f4c20  
I/DEBUG   (  346):     780f9404 74756f20 7468002e 2f3a7074 6f74732f  
I/DEBUG   (  346):     780f9414 732e6572 6d616574 65776f70 2e646572  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near fp:
I/DEBUG   (  346):     7858bcd0 780f93ab 780f935d 780f9351 780f9347  
I/DEBUG   (  346):     7858bce0 780f9341 780f933d 780f9268 783f1954  
I/DEBUG   (  346):     7858bcf0 00000000 00000000 72615a28 00000001  
I/DEBUG   (  346):     7858bd00 4174fc08 73977b28 00000000 416e034f  
I/DEBUG   (  346):     7858bd10 00000008 72615a28 41755ea0 73977ae8  
I/DEBUG   (  346):     7858bd20 00000001 00000001 73982a30 78fe1600  
I/DEBUG   (  346):     7858bd30 00000780 00000438 3f75c285 00000000  
I/DEBUG   (  346):     7858bd40 00000000 e7532904 00000000 00000000  
I/DEBUG   (  346):     7858bd50 00000000 00000000 00000000 00000000  
I/DEBUG   (  346):     7858bd60 41749581 73977ae8 73977b30 73977b34  
I/DEBUG   (  346):     7858bd70 00000000 fffff3c4 00000001 73977b40  
I/DEBUG   (  346):     7858bd80 4011f2ec 77fa5825 00000000 73977b44  
I/DEBUG   (  346):     7858bd90 6e655355 e7532904 7858bdd0 726157e0  
I/DEBUG   (  346):     7858bda0 77fa5779 73977ae8 77fa5779 7848e000  
I/DEBUG   (  346):     7858bdb0 4011f2ec 400e029c 73977ae8 726157e0  
I/DEBUG   (  346):     7858bdc0 7858bdd0 0000000d 00000078 400e0434  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near ip:
I/DEBUG   (  346):     7837b690 73b95029 77fc7cb9 77fb2181 403eb060  
I/DEBUG   (  346):     7837b6a0 77fb2219 400f539c 77fa522d 77fa8ce9  
I/DEBUG   (  346):     7837b6b0 78027be5 77fa8da9 77fa8cfd 77fa92c5  
I/DEBUG   (  346):     7837b6c0 77fa91c5 403515f1 77fb52a9 77fb52bd  
I/DEBUG   (  346):     7837b6d0 40350359 403503a5 403504a5 40350635  
I/DEBUG   (  346):     7837b6e0 73b95149 40350671 40351825 4035196d  
I/DEBUG   (  346):     7837b6f0 403514c5 403ecd34 403eb314 403ebb34  
I/DEBUG   (  346):     7837b700 77fb1ad1 400aaf31 400aae81 77fb542d  
I/DEBUG   (  346):     7837b710 73b94de9 73b94ddb 73b94ded 73b94df5  
I/DEBUG   (  346):     7837b720 77fb1741 77fb5055 73b94ded 73b94e3f  
I/DEBUG   (  346):     7837b730 73b94e43 73b94e65 73b94e6d 77fb14dd  
I/DEBUG   (  346):     7837b740 77fb0b21 77fb0e81 77fb11a9 77fb51dd  
I/DEBUG   (  346):     7837b750 403518f9 40351529 403503f1 7804210b  
I/DEBUG   (  346):     7837b760 77fb5459 78097831 400f3480 400e19a4  
I/DEBUG   (  346):     7837b770 400e0d29 400e1aa8 400e1f10 73b94f93  
I/DEBUG   (  346):     7837b780 73b94f8f 73b94c7f 73b94ca5 73b94caf  
I/DEBUG   (  346): 
I/DEBUG   (  346): memory near sp:
I/DEBUG   (  346):     7858bc50 73985ec0 77324b2b 3c23d70a 00000000  
I/DEBUG   (  346):     7858bc60 3f800000 00000000 00000000 00000000  
I/DEBUG   (  346):     7858bc70 00000000 00000000 00000000 00000000  
I/DEBUG   (  346):     7858bc80 7837b62c 73977ae8 783f1920 e7532904  
I/DEBUG   (  346):     7858bc90 73977ae8 780f9268 73977ae8 780f9268  
I/DEBUG   (  346):     7858bca0 000762f4 77fa495d 4291a7f0 780f9433  
I/DEBUG   (  346):     7858bcb0 780f945b 780f943d 780f940a 780f9453  
I/DEBUG   (  346):     7858bcc0 780f93d8 780f93ed 780f9369 780f938a  
I/DEBUG   (  346):     7858bcd0 780f93ab 780f935d 780f9351 780f9347  
I/DEBUG   (  346):     7858bce0 780f9341 780f933d 780f9268 783f1954  
I/DEBUG   (  346):     7858bcf0 00000000 00000000 72615a28 00000001  
I/DEBUG   (  346):     7858bd00 4174fc08 73977b28 00000000 416e034f  
I/DEBUG   (  346):     7858bd10 00000008 72615a28 41755ea0 73977ae8  
I/DEBUG   (  346):     7858bd20 00000001 00000001 73982a30 78fe1600  
I/DEBUG   (  346):     7858bd30 00000780 00000438 3f75c285 00000000  
I/DEBUG   (  346):     7858bd40 00000000 e7532904 00000000 00000000  
I/DEBUG   (  346): 
I/DEBUG   (  346): code around pc:
I/DEBUG   (  346):     78027bcc b00afd3d 4620bd70 f98ff7f8 4628e002  
I/DEBUG   (  346):     78027bdc fd34f006 ecf8f775 b08ab570 4606ac02  
I/DEBUG   (  346):     78027bec 6831ad01 f0004620 4628ff24 f0064621  
I/DEBUG   (  346):     78027bfc 4620fe84 f979f7f8 f0006830 4604fe3a  
I/DEBUG   (  346):     78027c0c f0064628 4620fd1b bd70b00a f7f84620  
I/DEBUG   (  346):     78027c1c e002f96c f0064628 f775fd11 b570ecd6  
I/DEBUG   (  346):     78027c2c ac02b08a ad014606 46206831 ff01f000  
I/DEBUG   (  346):     78027c3c 46214628 fe61f006 f7f84620 6830f956  
I/DEBUG   (  346):     78027c4c fb2cf002 f0064628 b00afcf9 4620bd70  
I/DEBUG   (  346):     78027c5c f94bf7f8 4628e002 fcf0f006 ecb4f775  
I/DEBUG   (  346):     78027c6c 300c6800 68004770 4770300c 30106800  
I/DEBUG   (  346):     78027c7c 68004770 47703010 30146800 68004770  
I/DEBUG   (  346):     78027c8c 47703014 4604b510 f0006800 6820ffc3  
I/DEBUG   (  346):     78027c9c bd103020 30206800 68004770 47703024  
I/DEBUG   (  346):     78027cac 30246800 68004770 47703028 30286800  
I/DEBUG   (  346):     78027cbc 68004770 47703018 30186800 68004770  
I/DEBUG   (  346): 
I/DEBUG   (  346): code around lr:
I/DEBUG   (  346):     77fa493c 990d4788 f7f44650 b9d0ec52 20049d10  
I/DEBUG   (  346):     77fa494c 46299a0a ebc6f7f4 ec54f7f4 ec58f7f4  
I/DEBUG   (  346):     77fa495c d0072800 20049a07 f7f44629 f7f4ebbc  
I/DEBUG   (  346):     77fa496c e006ec56 20049a06 f7f44629 f7f4ebb4  
I/DEBUG   (  346):     77fa497c 990cec54 f7f44650 4f4aec32 0900f04f  
I/DEBUG   (  346):     77fa498c 28004e45 d106447f 20049910 f7f49a09  
I/DEBUG   (  346):     77fa499c f7f4eba2 990bec48 f7f44650 b930ec20  
I/DEBUG   (  346):     77fa49ac 20049910 f7f49a08 f7f4eb96 981fec42  
I/DEBUG   (  346):     77fa49bc f7f49920 5df0ec44 d1042801 f8062001  
I/DEBUG   (  346):     77fa49cc f7f49007 19f5ec42 28017868 2001d104  
I/DEBUG   (  346):     77fa49dc 9001f885 ec3ef7f4 280178a8 2000d104  
I/DEBUG   (  346):     77fa49ec 9002f885 ec36f7f4 68009811 f43f2800  
I/DEBUG   (  346):     77fa49fc e6caaed4 f000a81d 4829fb9f 44784908  
I/DEBUG   (  346):     77fa4a0c 99275808 1a406800 b028bf01 8b06ecbd  
I/DEBUG   (  346):     77fa4a1c e8bdb001 f7f48ff0 bf00eb64 003d700a  
I/DEBUG   (  346):     77fa4a2c fffff3c4 fffff3d0 ffc29489 ffc298f5  
I/DEBUG   (  346): !@dumpstate -k -t -z -d -o /data/log/dumpstate_app_native -m 19823
W/ActivityManager(  951):   Force finishing activity com.steenriver.buggy/.BuggyActivity
I/BootReceiver(  951): Copying /data/tombstones/tombstone_04 to DropBox (SYSTEM_TOMBSTONE)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant