IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Android Discussion :

[Debutant] Erreur du compilation sur l'emulateur.


Sujet :

Android

  1. #1
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 386
    Points
    386
    Par défaut [Debutant] Erreur du compilation sur l'emulateur.
    Bonjour

    Je suis un débutant sur la programmation d'android.
    Lorsque je compile mon projet j'obtiens l'erreur suivante (voir figure en attache)
    A noter qu'avant il n'y a pas ce type d'erreur
    Qlq un peut m'aider pour connaitre l'erreur.
    Merci d'avance
    Cordialement
    Images attachées Images attachées  

  2. #2
    Expert éminent

    Homme Profil pro
    Ingénieur systèmes et réseaux
    Inscrit en
    Février 2007
    Messages
    4 253
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Rhône (Rhône Alpes)

    Informations professionnelles :
    Activité : Ingénieur systèmes et réseaux
    Secteur : High Tech - Multimédia et Internet

    Informations forums :
    Inscription : Février 2007
    Messages : 4 253
    Points : 7 618
    Points
    7 618
    Billets dans le blog
    3
    Par défaut
    Citation Envoyé par genius4evers Voir le message
    Bonjour
    Bonjour

    Lorsque je compile mon projet j'obtiens l'erreur suivante (voir figure en attache)
    Non, il n'y a pas d'erreur à la compilation... ça c'est le résultat de l'execution du projet sur l'émulateur.
    A noter qu'avant il n'y a pas ce type d'erreur
    Avant quoi ?

    Si l'émulateur sort ce genre de fenêtre cela indique une exception non gérée dans le code... Dans la fenetre "logcat" de eclipse a donc du apparaitre un "log" (level E comme error), de l'exception avec la stack correspondante (ou en était le programme quand l'exception a été levée, les causes de l'exception, etc...).
    Il est impératif de coller ces lignes (selectionner toutes les lignes correspondantes, ctrl+c, puis ctrl+v) ici entre balises "code" (bouton # dans l'interface du forum).
    Sinon, on ne pourra pas plus t'aider.

  3. #3
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 386
    Points
    386
    Par défaut
    Merci pour votre aide .
    j'ai copier coller le code sur un noveau projet et le probleme est resolue il n'y a pas d'erreur

  4. #4
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 386
    Points
    386
    Par défaut
    Bonjour
    je suis entrain de faire une application qu'utilise le Bluetooth et je suis tombe sur le meme erreur d'execution une 2eme fois
    mon code

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
     
    package com.example.testbt;
     
    import android.os.Bundle;
    import android.app.Activity;
    import android.bluetooth.BluetoothAdapter;
    import android.content.Context;
    import android.content.Intent;
    import android.view.Menu;
    import android.view.View;
    import android.widget.Button;
    import android.widget.Toast;
     
    public class MainActivity extends Activity {
     
    	protected static final int REQUEST_ENABLE_BT = 1;
    	Button bt1=(Button)this.findViewById(R.id.button1); //check if i have BT
    	Button bt2=(Button)this.findViewById(R.id.button2);// check if BT enable 
    	BluetoothAdapter blueAdapter;
     
    	Context ctx=this;
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_main);
    		bt1.setOnClickListener(new View.OnClickListener() {
     
    			@Override
    			public void onClick(View v) {
     
    				//BT check method 
    				BluetoothAdapter blueAdapter = BluetoothAdapter.getDefaultAdapter();
    				if (blueAdapter == null) {
    				    Toast t=Toast.makeText(ctx, "no BT Found", Toast.LENGTH_LONG);
    				    t.show();
     
    				}
    				else
    				{
    					Toast t=Toast.makeText(ctx, "BT Found", Toast.LENGTH_LONG);
    				    t.show();
    				}
     
    			}
    		});
    		bt2.setOnClickListener(new View.OnClickListener() {
     
    			@Override
    			public void onClick(View v) {
     
    				if (!blueAdapter.isEnabled()) {
    				    Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    				    startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
    				}
     
    			}
    		});
    	}
     
    	@Override
    	public boolean onCreateOptionsMenu(Menu menu) {
    		// Inflate the menu; this adds items to the action bar if it is present.
    		getMenuInflater().inflate(R.menu.main, menu);
    		return true;
    	}
     
    }
    reference LINK

    merci d'avance

  5. #5
    Membre actif
    Homme Profil pro
    Développeur Java / C++
    Inscrit en
    Mars 2013
    Messages
    128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur Java / C++

    Informations forums :
    Inscription : Mars 2013
    Messages : 128
    Points : 228
    Points
    228
    Par défaut
    Bonsoir genius4evers,

    Comme l'a dit nicroman, les informations fournis par le LogCat sont plus qu'utile pour trouver le problème dans le code source. Donc s'il vous plait, mettez les informations de ce LogCat, cela nous aides beaucoup.

    Néanmoins, au vue du code, je parierais sur la ligne 51. Mais je ne peut pas en être sur sans le LogCat.

  6. #6
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 386
    Points
    386
    Par défaut
    Bonjour
    les informations dans Logcat sont :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    03-23 11:20:49.264: I/DEBUG(30): debuggerd: Jun 30 2010 13:59:20
    03-23 11:20:49.424: I/Netd(29): Netd 1.0 starting
    03-23 11:20:49.444: D/qemud(37): entering main loop
    03-23 11:20:49.454: I/Vold(28): Vold 2.1 (the revenge) firing up
    03-23 11:20:49.454: D/Vold(28): Volume sdcard state changing -1 (Initializing) -> 0 (No-Media)
    03-23 11:20:49.834: W/Vold(28): No UMS switch available
    03-23 11:20:49.954: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:20:49.963: D/qemud(37): created client 0xe078 listening on fd 8
    03-23 11:20:49.963: D/qemud(37): client_fd_receive: attempting registration for service 'boot-properties'
    03-23 11:20:49.963: D/qemud(37): client_fd_receive:    -> received channel id 1
    03-23 11:20:49.974: D/qemud(37): client_registration: registration succeeded for client 1
    03-23 11:20:49.974: I/qemu-props(50): connected to 'boot-properties' qemud service.
    03-23 11:20:49.984: I/qemu-props(50): received: dalvik.vm.heapsize=16m
    03-23 11:20:49.984: I/qemu-props(50): received: qemu.sf.lcd_density=120
    03-23 11:20:49.984: I/qemu-props(50): received: qemu.hw.mainkeys=1
    03-23 11:20:49.984: I/qemu-props(50): received: qemu.sf.fake_camera=back
    03-23 11:20:49.984: I/qemu-props(50): received: 
    03-23 11:20:49.984: I/qemu-props(50): invalid format, ignored.
    03-23 11:20:50.644: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:20:50.644: D/qemud(37): created client 0x12f38 listening on fd 11
    03-23 11:20:50.644: D/qemud(37): fdhandler_event: disconnect on fd 11
    03-23 11:20:50.664: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:20:50.664: D/qemud(37): created client 0x12f38 listening on fd 11
    03-23 11:20:50.664: D/qemud(37): client_fd_receive: attempting registration for service 'gsm'
    03-23 11:20:50.664: D/qemud(37): client_fd_receive:    -> received channel id 2
    03-23 11:20:50.674: D/qemud(37): client_registration: registration succeeded for client 2
    03-23 11:20:50.674: D/AndroidRuntime(32): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<
    03-23 11:20:50.674: D/AndroidRuntime(32): CheckJNI is ON
    03-23 11:20:51.344: I/(33): ServiceManager: 0xacd0
    03-23 11:20:51.344: D/AudioHardwareInterface(33): setMode(NORMAL)
    03-23 11:20:51.364: I/CameraService(33): CameraService started: pid=33
    03-23 11:20:51.384: I/AudioFlinger(33): AudioFlinger's thread 0xb3f0 ready to run
    03-23 11:20:51.444: D/AndroidRuntime(32): --- registering native functions ---
    03-23 11:20:52.004: I/SamplingProfilerIntegration(32): Profiler is disabled.
    03-23 11:20:52.074: I/Zygote(32): Preloading classes...
    03-23 11:20:52.084: E/Zygote(32): setreuid() failed. errno: 2
    03-23 11:20:52.094: D/dalvikvm(32): GC_EXPLICIT freed 821 objects / 47496 bytes in 13ms
    03-23 11:20:52.464: D/dalvikvm(32): GC_EXPLICIT freed 219 objects / 13600 bytes in 5ms
    03-23 11:20:52.544: D/dalvikvm(32): GC_EXPLICIT freed 253 objects / 14360 bytes in 5ms
    03-23 11:20:52.644: D/dalvikvm(32): GC_EXPLICIT freed 468 objects / 28984 bytes in 8ms
    03-23 11:20:53.014: D/dalvikvm(32): GC_EXPLICIT freed 2088 objects / 108280 bytes in 10ms
    03-23 11:20:53.264: W/MediaProfiles(32): could not find media config xml file
    03-23 11:20:53.293: D/dalvikvm(32): GC_EXPLICIT freed 279 objects / 15984 bytes in 8ms
    03-23 11:20:53.664: D/dalvikvm(32): GC_FOR_MALLOC freed 5052 objects / 223992 bytes in 20ms
    03-23 11:20:54.723: D/dalvikvm(32): GC_FOR_MALLOC freed 11253 objects / 381344 bytes in 26ms
    03-23 11:20:55.073: D/dalvikvm(32): GC_FOR_MALLOC freed 9798 objects / 461152 bytes in 28ms
    03-23 11:20:55.383: D/dalvikvm(32): GC_FOR_MALLOC freed 8690 objects / 422872 bytes in 31ms
    03-23 11:20:55.853: D/dalvikvm(32): GC_FOR_MALLOC freed 7835 objects / 458864 bytes in 34ms
    03-23 11:20:56.293: D/dalvikvm(32): GC_FOR_MALLOC freed 7626 objects / 457776 bytes in 32ms
    03-23 11:20:56.783: D/dalvikvm(32): GC_FOR_MALLOC freed 8231 objects / 513296 bytes in 33ms
    03-23 11:20:57.263: D/dalvikvm(32): GC_FOR_MALLOC freed 7558 objects / 487104 bytes in 34ms
    03-23 11:20:57.303: D/dalvikvm(32): GC_EXPLICIT freed 175 objects / 9248 bytes in 28ms
    03-23 11:20:57.493: D/dalvikvm(32): GC_EXPLICIT freed 594 objects / 29024 bytes in 28ms
    03-23 11:20:57.563: D/dalvikvm(32): GC_EXPLICIT freed 449 objects / 25280 bytes in 28ms
    03-23 11:20:57.813: D/dalvikvm(32): GC_EXPLICIT freed 308 objects / 35136 bytes in 38ms
    03-23 11:20:57.953: D/dalvikvm(32): GC_EXPLICIT freed 279 objects / 18896 bytes in 39ms
    03-23 11:20:58.273: D/dalvikvm(32): GC_EXPLICIT freed 341 objects / 18472 bytes in 38ms
    03-23 11:20:58.493: D/dalvikvm(32): GC_EXPLICIT freed 449 objects / 28352 bytes in 40ms
    03-23 11:21:00.123: D/dalvikvm(32): GC_EXPLICIT freed 529 objects / 53248 bytes in 43ms
    03-23 11:21:00.234: D/dalvikvm(32): GC_EXPLICIT freed 623 objects / 34016 bytes in 45ms
    03-23 11:21:00.343: D/dalvikvm(32): GC_EXPLICIT freed 861 objects / 46872 bytes in 45ms
    03-23 11:21:00.533: D/dalvikvm(32): GC_EXPLICIT freed 1747 objects / 85512 bytes in 49ms
    03-23 11:21:00.633: D/dalvikvm(32): GC_EXPLICIT freed 447 objects / 29416 bytes in 47ms
    03-23 11:21:00.744: D/dalvikvm(32): GC_EXPLICIT freed 315 objects / 20184 bytes in 53ms
    03-23 11:21:00.753: I/Zygote(32): ...preloaded 1265 classes in 8676ms.
    03-23 11:21:00.753: E/Zygote(32): setreuid() failed. errno: 17
    03-23 11:21:00.803: D/dalvikvm(32): GC_EXPLICIT freed 104 objects / 14200 bytes in 46ms
    03-23 11:21:00.983: I/Zygote(32): Preloading resources...
    03-23 11:21:01.063: D/dalvikvm(32): GC_EXTERNAL_ALLOC freed 10 objects / 392 bytes in 53ms
    03-23 11:21:01.083: W/Zygote(32): Preloaded drawable resource #0x1080093 (res/drawable-mdpi/sym_def_app_icon.png) that varies with configuration!!
    03-23 11:21:01.083: W/Zygote(32): Preloaded drawable resource #0x1080002 (res/drawable-mdpi/arrow_down_float.png) that varies with configuration!!
    03-23 11:21:01.163: W/Zygote(32): Preloaded drawable resource #0x10800b3 (res/drawable/btn_check.xml) that varies with configuration!!
    03-23 11:21:01.173: W/Zygote(32): Preloaded drawable resource #0x10800b6 (res/drawable-mdpi/btn_check_label_background.9.png) that varies with configuration!!
    03-23 11:21:01.173: W/Zygote(32): Preloaded drawable resource #0x10800b7 (res/drawable-mdpi/btn_check_off.png) that varies with configuration!!
    03-23 11:21:01.173: W/Zygote(32): Preloaded drawable resource #0x10800bc (res/drawable-mdpi/btn_check_on.png) that varies with configuration!!
    03-23 11:21:01.213: W/Zygote(32): Preloaded drawable resource #0x1080004 (res/drawable/btn_default.xml) that varies with configuration!!
    03-23 11:21:01.265: W/Zygote(32): Preloaded drawable resource #0x1080005 (res/drawable/btn_default_small.xml) that varies with configuration!!
    03-23 11:21:01.313: W/Zygote(32): Preloaded drawable resource #0x1080006 (res/drawable/btn_dropdown.xml) that varies with configuration!!
    03-23 11:21:01.363: W/Zygote(32): Preloaded drawable resource #0x1080008 (res/drawable/btn_plus.xml) that varies with configuration!!
    03-23 11:21:01.424: W/Zygote(32): Preloaded drawable resource #0x1080007 (res/drawable/btn_minus.xml) that varies with configuration!!
    03-23 11:21:01.483: D/dalvikvm(32): GC_EXPLICIT freed 415 objects / 22360 bytes in 62ms
    03-23 11:21:01.544: W/Zygote(32): Preloaded drawable resource #0x1080009 (res/drawable/btn_radio.xml) that varies with configuration!!
    03-23 11:21:01.623: W/Zygote(32): Preloaded drawable resource #0x108000a (res/drawable/btn_star.xml) that varies with configuration!!
    03-23 11:21:01.633: W/Zygote(32): Preloaded drawable resource #0x1080131 (res/drawable/btn_toggle.xml) that varies with configuration!!
    03-23 11:21:01.643: W/Zygote(32): Preloaded drawable resource #0x1080194 (res/drawable-mdpi/ic_emergency.png) that varies with configuration!!
    03-23 11:21:01.654: W/Zygote(32): Preloaded drawable resource #0x1080012 (res/drawable-mdpi/divider_horizontal_bright.9.png) that varies with configuration!!
    03-23 11:21:01.654: W/Zygote(32): Preloaded drawable resource #0x1080014 (res/drawable-mdpi/divider_horizontal_dark.9.png) that varies with configuration!!
    03-23 11:21:01.693: W/Zygote(32): Preloaded drawable resource #0x1080016 (res/drawable/edit_text.xml) that varies with configuration!!
    03-23 11:21:01.703: W/Zygote(32): Preloaded drawable resource #0x108016d (res/drawable/expander_group.xml) that varies with configuration!!
    03-23 11:21:01.743: W/Zygote(32): Preloaded drawable resource #0x1080062 (res/drawable/list_selector_background.xml) that varies with configuration!!
    03-23 11:21:01.763: W/Zygote(32): Preloaded drawable resource #0x1080227 (res/drawable-mdpi/menu_background.9.png) that varies with configuration!!
    03-23 11:21:01.763: W/Zygote(32): Preloaded drawable resource #0x1080228 (res/drawable-mdpi/menu_background_fill_parent_width.9.png) that varies with configuration!!
    03-23 11:21:01.793: W/Zygote(32): Preloaded drawable resource #0x1080229 (res/drawable/menu_selector.xml) that varies with configuration!!
    03-23 11:21:01.804: W/Zygote(32): Preloaded drawable resource #0x1080234 (res/drawable-mdpi/panel_background.9.png) that varies with configuration!!
    03-23 11:21:01.854: D/dalvikvm(32): GC_EXPLICIT freed 596 objects / 31928 bytes in 51ms
    03-23 11:21:01.873: W/Zygote(32): Preloaded drawable resource #0x108023b (res/drawable-mdpi/popup_bottom_bright.9.png) that varies with configuration!!
    03-23 11:21:01.883: W/Zygote(32): Preloaded drawable resource #0x108023c (res/drawable-mdpi/popup_bottom_dark.9.png) that varies with configuration!!
    03-23 11:21:01.893: W/Zygote(32): Preloaded drawable resource #0x108023d (res/drawable-mdpi/popup_bottom_medium.9.png) that varies with configuration!!
    03-23 11:21:01.893: W/Zygote(32): Preloaded drawable resource #0x108023e (res/drawable-mdpi/popup_center_bright.9.png) that varies with configuration!!
    03-23 11:21:01.904: W/Zygote(32): Preloaded drawable resource #0x108023f (res/drawable-mdpi/popup_center_dark.9.png) that varies with configuration!!
    03-23 11:21:01.913: W/Zygote(32): Preloaded drawable resource #0x1080242 (res/drawable-mdpi/popup_full_dark.9.png) that varies with configuration!!
    03-23 11:21:01.913: W/Zygote(32): Preloaded drawable resource #0x1080245 (res/drawable-mdpi/popup_top_bright.9.png) that varies with configuration!!
    03-23 11:21:01.923: W/Zygote(32): Preloaded drawable resource #0x1080246 (res/drawable-mdpi/popup_top_dark.9.png) that varies with configuration!!
    03-23 11:21:01.954: W/Zygote(32): Preloaded drawable resource #0x108006d (res/drawable/progress_indeterminate_horizontal.xml) that varies with configuration!!
    03-23 11:21:01.963: W/Zygote(32): Preloaded drawable resource #0x108024c (res/drawable/progress_small.xml) that varies with configuration!!
    03-23 11:21:01.963: W/Zygote(32): Preloaded drawable resource #0x108024d (res/drawable/progress_small_titlebar.xml) that varies with configuration!!
    03-23 11:21:01.973: W/Zygote(32): Preloaded drawable resource #0x1080270 (res/drawable-mdpi/scrollbar_handle_horizontal.9.png) that varies with configuration!!
    03-23 11:21:01.973: W/Zygote(32): Preloaded drawable resource #0x1080271 (res/drawable-mdpi/scrollbar_handle_vertical.9.png) that varies with configuration!!
    03-23 11:21:01.993: W/Zygote(32): Preloaded drawable resource #0x1080071 (res/drawable/spinner_dropdown_background.xml) that varies with configuration!!
    03-23 11:21:02.003: W/Zygote(32): Preloaded drawable resource #0x1080354 (res/drawable-mdpi/title_bar_shadow.9.png) that varies with configuration!!
    03-23 11:21:02.013: W/Zygote(32): Preloaded drawable resource #0x10801d6 (res/drawable-mdpi/indicator_code_lock_drag_direction_green_up.png) that varies with configuration!!
    03-23 11:21:02.013: W/Zygote(32): Preloaded drawable resource #0x10801d7 (res/drawable-mdpi/indicator_code_lock_drag_direction_red_up.png) that varies with configuration!!
    03-23 11:21:02.033: W/Zygote(32): Preloaded drawable resource #0x10801d8 (res/drawable-mdpi/indicator_code_lock_point_area_default.png) that varies with configuration!!
    03-23 11:21:02.043: W/Zygote(32): Preloaded drawable resource #0x10801d9 (res/drawable-mdpi/indicator_code_lock_point_area_green.png) that varies with configuration!!
    03-23 11:21:02.053: W/Zygote(32): Preloaded drawable resource #0x10801da (res/drawable-mdpi/indicator_code_lock_point_area_red.png) that varies with configuration!!
    03-23 11:21:02.063: W/Zygote(32): Preloaded drawable resource #0x10801e8 (res/drawable-mdpi/jog_tab_bar_left_end_confirm_gray.9.png) that varies with configuration!!
    03-23 11:21:02.073: W/Zygote(32): Preloaded drawable resource #0x10801ec (res/drawable-mdpi/jog_tab_bar_left_end_normal.9.png) that varies with configuration!!
    03-23 11:21:02.083: W/Zygote(32): Preloaded drawable resource #0x10801ed (res/drawable-mdpi/jog_tab_bar_left_end_pressed.9.png) that varies with configuration!!
    03-23 11:21:02.093: W/Zygote(32): Preloaded drawable resource #0x10801f1 (res/drawable-mdpi/jog_tab_bar_right_end_confirm_gray.9.png) that varies with configuration!!
    03-23 11:21:02.153: D/dalvikvm(32): GC_EXPLICIT freed 653 objects / 41760 bytes in 59ms
    03-23 11:21:02.183: W/Zygote(32): Preloaded drawable resource #0x10801f5 (res/drawable-mdpi/jog_tab_bar_right_end_normal.9.png) that varies with configuration!!
    03-23 11:21:02.193: W/Zygote(32): Preloaded drawable resource #0x10801f6 (res/drawable-mdpi/jog_tab_bar_right_end_pressed.9.png) that varies with configuration!!
    03-23 11:21:02.223: W/Zygote(32): Preloaded drawable resource #0x10801fb (res/drawable-mdpi/jog_tab_left_confirm_gray.png) that varies with configuration!!
    03-23 11:21:02.243: W/Zygote(32): Preloaded drawable resource #0x1080200 (res/drawable-mdpi/jog_tab_left_normal.png) that varies with configuration!!
    03-23 11:21:02.293: D/dalvikvm(32): GC_EXTERNAL_ALLOC freed 238 objects / 12864 bytes in 47ms
    03-23 11:21:02.313: W/Zygote(32): Preloaded drawable resource #0x1080201 (res/drawable-mdpi/jog_tab_left_pressed.png) that varies with configuration!!
    03-23 11:21:02.324: W/Zygote(32): Preloaded drawable resource #0x1080203 (res/drawable-mdpi/jog_tab_right_confirm_gray.png) that varies with configuration!!
    03-23 11:21:02.343: W/Zygote(32): Preloaded drawable resource #0x1080209 (res/drawable-mdpi/jog_tab_right_normal.png) that varies with configuration!!
    03-23 11:21:02.354: W/Zygote(32): Preloaded drawable resource #0x108020a (res/drawable-mdpi/jog_tab_right_pressed.png) that varies with configuration!!
    03-23 11:21:02.363: W/Zygote(32): Preloaded drawable resource #0x108020d (res/drawable-mdpi/jog_tab_target_gray.png) that varies with configuration!!
    03-23 11:21:02.363: I/Zygote(32): ...preloaded 61 resources in 1379ms.
    03-23 11:21:02.383: I/Zygote(32): ...preloaded 15 resources in 23ms.
    03-23 11:21:02.443: D/dalvikvm(32): GC_EXPLICIT freed 179 objects / 13584 bytes in 58ms
    03-23 11:21:02.504: D/dalvikvm(32): GC_EXPLICIT freed 140 objects / 5680 bytes in 47ms
    03-23 11:21:02.563: D/dalvikvm(32): GC_EXPLICIT freed 2 objects / 48 bytes in 58ms
    03-23 11:21:02.574: I/dalvikvm(32): System server process 58 has been created
    03-23 11:21:02.574: I/Zygote(32): Accepting command socket connections
    03-23 11:21:02.913: E/BatteryService(58): usbOnlinePath not found
    03-23 11:21:02.913: E/BatteryService(58): batteryVoltagePath not found
    03-23 11:21:02.913: E/BatteryService(58): batteryTemperaturePath not found
    03-23 11:21:02.924: I/sysproc(58): Entered system_init()
    03-23 11:21:02.924: I/sysproc(58): ServiceManager: 0x1476c0
    03-23 11:21:02.933: I/SurfaceFlinger(58): SurfaceFlinger is starting
    03-23 11:21:02.933: I/SurfaceFlinger(58): SurfaceFlinger's main thread ready to run. Initializing graphics H/W...
    03-23 11:21:02.933: E/SurfaceFlinger(58): Couldn't open /sys/power/wait_for_fb_sleep or /sys/power/wait_for_fb_wake
    03-23 11:21:03.013: I/gralloc(58): using (fd=24)
    03-23 11:21:03.013: I/gralloc(58): id           = 
    03-23 11:21:03.013: I/gralloc(58): xres         = 240 px
    03-23 11:21:03.013: I/gralloc(58): yres         = 432 px
    03-23 11:21:03.013: I/gralloc(58): xres_virtual = 240 px
    03-23 11:21:03.013: I/gralloc(58): yres_virtual = 864 px
    03-23 11:21:03.013: I/gralloc(58): bpp          = 16
    03-23 11:21:03.013: I/gralloc(58): r            = 11:5
    03-23 11:21:03.013: I/gralloc(58): g            =  5:6
    03-23 11:21:03.013: I/gralloc(58): b            =  0:5
    03-23 11:21:03.013: I/gralloc(58): width        = 37 mm (164.756760 dpi)
    03-23 11:21:03.013: I/gralloc(58): height       = 67 mm (163.773132 dpi)
    03-23 11:21:03.013: I/gralloc(58): refresh rate = 60.00 Hz
    03-23 11:21:03.023: D/libEGL(58): egl.cfg not found, using default config
    03-23 11:21:03.033: D/libEGL(58): loaded /system/lib/egl/libGLES_android.so
    03-23 11:21:03.043: I/SurfaceFlinger(58): EGL informations:
    03-23 11:21:03.043: I/SurfaceFlinger(58): # of configs : 8
    03-23 11:21:03.043: I/SurfaceFlinger(58): vendor    : Android
    03-23 11:21:03.043: I/SurfaceFlinger(58): version   : 1.4 Android META-EGL
    03-23 11:21:03.043: I/SurfaceFlinger(58): extensions: EGL_KHR_image EGL_KHR_image_base EGL_KHR_image_pixmap EGL_ANDROID_image_native_buffer EGL_ANDROID_swap_rectangle EGL_ANDROID_get_render_buffer 
    03-23 11:21:03.043: I/SurfaceFlinger(58): Client API: OpenGL ES
    03-23 11:21:03.043: I/SurfaceFlinger(58): EGLSurface: 5-6-5-0, config=0x1000000
    03-23 11:21:03.054: I/SurfaceFlinger(58): flags     : 001c0000
    03-23 11:21:03.054: I/SurfaceFlinger(58): OpenGL informations:
    03-23 11:21:03.054: I/SurfaceFlinger(58): vendor    : Android
    03-23 11:21:03.054: I/SurfaceFlinger(58): renderer  : Android PixelFlinger 1.3
    03-23 11:21:03.054: I/SurfaceFlinger(58): version   : OpenGL ES-CM 1.0
    03-23 11:21:03.054: I/SurfaceFlinger(58): extensions: GL_OES_byte_coordinates GL_OES_fixed_point GL_OES_single_precision GL_OES_read_format GL_OES_compressed_paletted_texture GL_OES_draw_texture GL_OES_matrix_get GL_OES_query_matrix GL_OES_EGL_image GL_OES_compressed_ETC1_RGB8_texture GL_ARB_texture_compression GL_ARB_texture_non_power_of_two GL_ANDROID_user_clip_plane GL_ANDROID_vertex_buffer_object GL_ANDROID_generate_mipmap 
    03-23 11:21:03.054: I/SurfaceFlinger(58): GL_MAX_TEXTURE_SIZE = 4096
    03-23 11:21:03.054: I/SurfaceFlinger(58): GL_MAX_VIEWPORT_DIMS = 4096
    03-23 11:21:03.133: I/sysproc(58): System server: starting Android runtime.
    03-23 11:21:03.133: I/sysproc(58): System server: starting Android services.
    03-23 11:21:03.133: I/SystemServer(58): Entered the Android system server!
    03-23 11:21:03.133: I/sysproc(58): System server: entering thread pool.
    03-23 11:21:03.154: I/SystemServer(58): Entropy Service
    03-23 11:21:03.233: I/SystemServer(58): Power Manager
    03-23 11:21:03.273: I/SystemServer(58): Activity Manager
    03-23 11:21:03.313: I/ActivityManager(58): Memory class: 16
    03-23 11:21:03.463: D/libEGL(68): egl.cfg not found, using default config
    03-23 11:21:03.463: D/libEGL(68): loaded /system/lib/egl/libGLES_android.so
    03-23 11:21:03.494: W/zipro(68): Unable to open zip '/data/local/bootanimation.zip': No such file or directory
    03-23 11:21:03.494: W/zipro(68): Unable to open zip '/system/media/bootanimation.zip': No such file or directory
    03-23 11:21:03.664: I/ARMAssembler(58): generated scanline__00000077:03010104_00000004_00000000 [ 22 ipp] (41 ins) at [0x287fc8:0x28806c] in 5676661 ns
    03-23 11:21:03.704: I/ARMAssembler(68): generated scanline__00000077:03545404_00000A01_00000000 [ 30 ipp] (51 ins) at [0x1be40:0x1bf0c] in 4046693 ns
    03-23 11:21:03.904: I/SystemServer(58): Telephony Registry
    03-23 11:21:03.914: I/SystemServer(58): Package Manager
    03-23 11:21:03.933: I/Installer(58): connecting...
    03-23 11:21:03.933: I/installd(34): new connection
    03-23 11:21:04.103: I/PackageManager(58): Libs: android.test.runner:/system/framework/android.test.runner.jar javax.obex:/system/framework/javax.obex.jar
    03-23 11:21:04.103: I/PackageManager(58): Features: android.hardware.camera android.hardware.camera.autofocus
    03-23 11:21:04.654: D/dalvikvm(58): GC_FOR_MALLOC freed 5100 objects / 226792 bytes in 136ms
    03-23 11:21:05.494: W/PackageManager(58): Running ENG build: no pre-dexopt!
    03-23 11:21:05.749: D/PackageManager(58): Scanning app dir /system/framework
    03-23 11:21:06.014: D/PackageManager(58): Scanning app dir /system/app
    03-23 11:21:06.505: D/dalvikvm(58): GC_FOR_MALLOC freed 7327 objects / 363312 bytes in 106ms
    03-23 11:21:07.964: D/dalvikvm(58): GC_FOR_MALLOC freed 5293 objects / 291072 bytes in 126ms
    03-23 11:21:08.884: D/PackageManager(58): Scanning app dir /data/app
    03-23 11:21:09.414: D/dalvikvm(58): GC_FOR_MALLOC freed 6926 objects / 364544 bytes in 106ms
    03-23 11:21:09.594: W/PackageParser(58): No actions in intent filter at /data/app/ApiDemos.apk Binary XML file line #1841
    03-23 11:21:09.604: W/PackageParser(58): No actions in intent filter at /data/app/ApiDemos.apk Binary XML file line #1847
    03-23 11:21:09.624: W/PackageManager(58): Package com.example.android.apis desires unavailable shared library com.example.will.never.exist; ignoring!
    03-23 11:21:09.704: D/PackageManager(58): Scanning app dir /data/app-private
    03-23 11:21:09.704: I/PackageManager(58): Time to scan packages: 4.211 seconds
    03-23 11:21:09.754: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.mail in package com.android.contacts
    03-23 11:21:09.754: W/PackageManager(58): Unknown permission android.permission.ADD_SYSTEM_SERVICE in package com.android.phone
    03-23 11:21:09.794: W/PackageManager(58): Not granting permission android.permission.SEND_DOWNLOAD_COMPLETED_INTENTS to package com.android.browser (protectionLevel=2 flags=0x1be45)
    03-23 11:21:09.794: W/PackageManager(58): Unknown permission com.google.android.gm.permission.WRITE_GMAIL in package com.android.settings
    03-23 11:21:09.794: W/PackageManager(58): Unknown permission com.google.android.gm.permission.READ_GMAIL in package com.android.settings
    03-23 11:21:09.803: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.settings
    03-23 11:21:09.803: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.providers.contacts
    03-23 11:21:09.803: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.cp in package com.android.providers.contacts
    03-23 11:21:09.814: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.ACCESS_GOOGLE_PASSWORD in package com.android.development
    03-23 11:21:09.828: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH in package com.android.development
    03-23 11:21:09.828: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.ALL_SERVICES in package com.android.development
    03-23 11:21:09.828: W/PackageManager(58): Unknown permission com.google.android.googleapps.permission.GOOGLE_AUTH.YouTubeUser in package com.android.development
    03-23 11:21:10.224: D/dalvikvm(58): GC_EXPLICIT freed 5123 objects / 314896 bytes in 104ms
    03-23 11:21:10.233: I/SystemServer(58): Account Manager
    03-23 11:21:10.394: I/SystemServer(58): Content Manager
    03-23 11:21:10.514: I/SystemServer(58): System Content Providers
    03-23 11:21:10.514: I/ActivityThread(58): Publishing provider settings: com.android.providers.settings.SettingsProvider
    03-23 11:21:10.594: I/SystemServer(58): Battery Service
    03-23 11:21:10.656: I/SystemServer(58): Lights Service
    03-23 11:21:10.656: I/SystemServer(58): Vibrator Service
    03-23 11:21:10.664: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:10.664: D/qemud(37): created client 0x12f88 listening on fd 12
    03-23 11:21:10.664: D/qemud(37): client_fd_receive: attempting registration for service 'hw-control'
    03-23 11:21:10.664: D/qemud(37): client_fd_receive:    -> received channel id 3
    03-23 11:21:10.744: D/qemud(37): client_registration: registration succeeded for client 3
    03-23 11:21:10.834: I/SystemServer(58): Alarm Manager
    03-23 11:21:10.844: I/SystemServer(58): Init Watchdog
    03-23 11:21:10.873: I/SystemServer(58): Sensor Service
    03-23 11:21:10.903: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:10.903: D/qemud(37): created client 0xc038 listening on fd 13
    03-23 11:21:10.903: D/qemud(37): client_fd_receive: attempting registration for service 'sensors'
    03-23 11:21:10.903: D/qemud(37): client_fd_receive:    -> received channel id 4
    03-23 11:21:10.913: D/qemud(37): client_registration: registration succeeded for client 4
    03-23 11:21:10.923: D/qemud(37): fdhandler_event: disconnect on fd 13
    03-23 11:21:10.923: I/SystemServer(58): Window Manager
    03-23 11:21:11.034: I/EventHub(58): New keyboard: device->id=0x10000 devname='qwerty2' propName='hw.keyboards.65536.devname' keylayout='/system/usr/keylayout/qwerty.kl'
    03-23 11:21:11.034: I/EventHub(58): New device: path=/dev/input/event0 name=qwerty2 id=0x10000 (of 0x1) index=1 fd=51 classes=0x7
    03-23 11:21:11.044: E/EventHub(58): could not get driver version for /dev/input/mouse0, Not a typewriter
    03-23 11:21:11.044: E/EventHub(58): could not get driver version for /dev/input/mice, Not a typewriter
    03-23 11:21:11.044: I/KeyInputQueue(58): Device added: id=0x0, name=qwerty2, classes=7
    03-23 11:21:11.044: I/KeyInputQueue(58):   X: min=0 max=239 flat=0 fuzz=0
    03-23 11:21:11.054: I/KeyInputQueue(58):   Y: min=0 max=431 flat=0 fuzz=0
    03-23 11:21:11.094: I/KeyInputQueue(58):   Pressure: unknown values
    03-23 11:21:11.094: I/KeyInputQueue(58):   Size: unknown values
    03-23 11:21:11.094: I/KeyInputQueue(58): No virtual keys found
    03-23 11:21:11.184: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:11.184: D/qemud(37): created client 0xc038 listening on fd 13
    03-23 11:21:11.184: D/qemud(37): client_fd_receive: attempting registration for service 'sensors'
    03-23 11:21:11.184: D/qemud(37): client_fd_receive:    -> received channel id 5
    03-23 11:21:11.193: D/qemud(37): client_registration: registration succeeded for client 5
    03-23 11:21:11.273: D/qemud(37): fdhandler_event: disconnect on fd 13
    03-23 11:21:11.273: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:11.273: D/qemud(37): created client 0xc038 listening on fd 13
    03-23 11:21:11.273: D/qemud(37): client_fd_receive: attempting registration for service 'sensors'
    03-23 11:21:11.273: D/qemud(37): client_fd_receive:    -> received channel id 6
    03-23 11:21:11.284: D/qemud(37): client_registration: registration succeeded for client 6
    03-23 11:21:11.363: D/qemud(37): fdhandler_event: disconnect on fd 13
    03-23 11:21:11.363: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:11.363: D/qemud(37): created client 0xc038 listening on fd 13
    03-23 11:21:11.373: D/qemud(37): client_fd_receive: attempting registration for service 'sensors'
    03-23 11:21:11.373: D/qemud(37): client_fd_receive:    -> received channel id 7
    03-23 11:21:11.453: D/qemud(37): client_registration: registration succeeded for client 7
    03-23 11:21:11.524: D/qemud(37): fdhandler_event: disconnect on fd 13
    03-23 11:21:11.524: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:11.524: D/qemud(37): created client 0xc038 listening on fd 13
    03-23 11:21:11.533: D/qemud(37): client_fd_receive: attempting registration for service 'sensors'
    03-23 11:21:11.533: D/qemud(37): client_fd_receive:    -> received channel id 8
    03-23 11:21:11.615: D/qemud(37): client_registration: registration succeeded for client 8
    03-23 11:21:11.623: D/qemud(37): fdhandler_event: disconnect on fd 13
    03-23 11:21:11.704: I/SystemServer(58): Registering null Bluetooth Service (emulator)
    03-23 11:21:11.713: E/System(58): Failure starting core service
    03-23 11:21:11.713: E/System(58): java.lang.SecurityException
    03-23 11:21:11.713: E/System(58): 	at android.os.BinderProxy.transact(Native Method)
    03-23 11:21:11.713: E/System(58): 	at android.os.ServiceManagerProxy.addService(ServiceManagerNative.java:146)
    03-23 11:21:11.713: E/System(58): 	at android.os.ServiceManager.addService(ServiceManager.java:72)
    03-23 11:21:11.713: E/System(58): 	at com.android.server.ServerThread.run(SystemServer.java:184)
    03-23 11:21:11.713: I/SystemServer(58): Device Policy
    03-23 11:21:11.753: I/SystemServer(58): Status Bar
    03-23 11:21:12.013: I/SystemServer(58): Clipboard Service
    03-23 11:21:12.013: I/SystemServer(58): Input Method Service
    03-23 11:21:12.093: I/InputManagerService(58): Enabled input methods: com.android.inputmethod.latin/.LatinIME:com.android.inputmethod.pinyin/.PinyinIME:jp.co.omronsoft.openwnn/.OpenWnnJAJP
    03-23 11:21:12.103: I/SystemServer(58): NetStat Service
    03-23 11:21:12.103: I/SystemServer(58): NetworkManagement Service
    03-23 11:21:12.123: I/SystemServer(58): Connectivity Service
    03-23 11:21:12.133: V/ConnectivityService(58): ConnectivityService starting up
    03-23 11:21:12.183: D/ConnectivityService(58): getMobileDataEnabled returning true
    03-23 11:21:12.216: V/ConnectivityService(58): Starting Wifi Service.
    03-23 11:21:12.313: I/WifiService(58): WifiService starting up with Wi-Fi disabled
    03-23 11:21:12.323: D/Tethering(58): Tethering starting
    03-23 11:21:12.323: D/NetworkManagmentService(58): Registering observer
    03-23 11:21:12.373: I/SystemServer(58): Throttle Service
    03-23 11:21:12.373: I/SystemServer(58): Accessibility Manager
    03-23 11:21:12.415: I/SystemServer(58): Mount Service
    03-23 11:21:12.423: I/SystemServer(58): Notification Manager
    03-23 11:21:12.483: I/SystemServer(58): Device Storage Monitor
    03-23 11:21:12.513: I/SystemServer(58): Location Manager
    03-23 11:21:12.523: D/VoldCmdListener(28): volume list
    03-23 11:21:12.564: I/SystemServer(58): Search Service
    03-23 11:21:12.564: I/SystemServer(58): DropBox Service
    03-23 11:21:12.573: I/SystemServer(58): Wallpaper Service
    03-23 11:21:12.613: W/MountService(58): Duplicate state transition (removed -> removed)
    03-23 11:21:12.613: D/VoldCmdListener(28): share status ums
    03-23 11:21:12.623: I/SystemServer(58): Audio Service
    03-23 11:21:12.833: D/dalvikvm(58): GC_FOR_MALLOC freed 4326 objects / 254432 bytes in 170ms
    03-23 11:21:13.063: D/AudioHardwareInterface(33): setMode(NORMAL)
    03-23 11:21:13.063: W/AudioPolicyManagerBase(33): setPhoneState() setting same state 0
    03-23 11:21:13.113: E/SoundPool(58): error loading /system/media/audio/ui/Effect_Tick.ogg
    03-23 11:21:13.113: W/AudioService(58): Soundpool could not load file: /system/media/audio/ui/Effect_Tick.ogg
    03-23 11:21:13.123: E/SoundPool(58): error loading /system/media/audio/ui/KeypressStandard.ogg
    03-23 11:21:13.133: W/AudioService(58): Soundpool could not load file: /system/media/audio/ui/KeypressStandard.ogg
    03-23 11:21:13.133: E/SoundPool(58): error loading /system/media/audio/ui/KeypressSpacebar.ogg
    03-23 11:21:13.133: W/AudioService(58): Soundpool could not load file: /system/media/audio/ui/KeypressSpacebar.ogg
    03-23 11:21:13.143: E/SoundPool(58): error loading /system/media/audio/ui/KeypressDelete.ogg
    03-23 11:21:13.143: W/AudioService(58): Soundpool could not load file: /system/media/audio/ui/KeypressDelete.ogg
    03-23 11:21:13.143: E/SoundPool(58): error loading /system/media/audio/ui/KeypressReturn.ogg
    03-23 11:21:13.143: W/AudioService(58): Soundpool could not load file: /system/media/audio/ui/KeypressReturn.ogg
    03-23 11:21:13.173: I/SystemServer(58): Headset Observer
    03-23 11:21:13.183: W/HeadsetObserver(58): This kernel does not have wired headset support
    03-23 11:21:13.183: I/SystemServer(58): Dock Observer
    03-23 11:21:13.193: W/DockObserver(58): This kernel does not have dock station support
    03-23 11:21:13.193: I/SystemServer(58): UI Mode Manager Service
    03-23 11:21:13.223: I/SystemServer(58): Backup Service
    03-23 11:21:13.263: V/BackupManagerService(58): No ancestral data
    03-23 11:21:13.313: I/BackupManagerService(58): Found stale backup journal, scheduling:
    03-23 11:21:13.313: I/BackupManagerService(58):     + com.android.inputmethod.latin
    03-23 11:21:13.313: I/BackupManagerService(58):     + com.android.browser
    03-23 11:21:13.313: I/BackupManagerService(58):     + com.android.providers.userdictionary
    03-23 11:21:13.323: I/BackupManagerService(58):     + android
    03-23 11:21:13.323: I/BackupManagerService(58):     + com.android.providers.settings
    03-23 11:21:13.348: I/BackupManagerService(58): Backup enabled => false
    03-23 11:21:13.353: I/SystemServer(58): AppWidget Service
    03-23 11:21:13.353: I/SystemServer(58): Recognition Service
    03-23 11:21:13.393: D/VoldCmdListener(28): share status ums
    03-23 11:21:13.393: D/StorageNotification(58): Startup with UMS connection false (media state removed)
    03-23 11:21:13.423: I/SystemServer(58): DiskStats Service
    03-23 11:21:13.463: I/WindowManager(58): SAFE MODE not enabled
    03-23 11:21:13.474: W/DevicePolicyManagerService(58): failed parsing /data/system/device_policies.xml java.io.FileNotFoundException: /data/system/device_policies.xml (No such file or directory)
    03-23 11:21:13.523: I/ActivityManager(58): Config changed: { scale=1.0 imsi=0/0 loc=en_US touch=3 keys=2/1/2 nav=1/1 orien=1 layout=268435490 uiMode=0 seq=1}
    03-23 11:21:13.593: D/PowerManagerService(58): system ready!
    03-23 11:21:13.613: I/ActivityManager(58): Sending system update to: ComponentInfo{com.android.providers.contacts/com.android.providers.contacts.ContactsUpgradeReceiver}
    03-23 11:21:13.654: I/Zygote(58): Process: zygote socket opened
    03-23 11:21:13.693: I/ActivityManager(58): Start proc android.process.acore for broadcast com.android.providers.contacts/.ContactsUpgradeReceiver: pid=108 uid=10000 gids={3003, 1015}
    03-23 11:21:14.173: I/ActivityManager(58): Launching preboot mode app: ProcessRecord{43f81f78 108:android.process.acore/10000}
    03-23 11:21:14.203: W/StatusBar(58): No icon ID for slot ime
    03-23 11:21:14.733: I/ActivityManager(58): Removing system update proc: ProcessRecord{43f81f78 108:android.process.acore/10000}
    03-23 11:21:14.733: I/Process(58): Sending signal. PID: 108 SIG: 9
    03-23 11:21:14.743: I/ActivityManager(58): System now ready
    03-23 11:21:14.840: I/SystemServer(58): Making services ready
    03-23 11:21:14.857: I/ActivityManager(58): Config changed: { scale=1.0 imsi=0/0 loc=en_US touch=3 keys=2/1/2 nav=1/1 orien=1 layout=268435490 uiMode=17 seq=2}
    03-23 11:21:14.913: W/RecognitionManagerService(58): no available voice recognition services found
    03-23 11:21:15.533: I/ActivityManager(58): Start proc jp.co.omronsoft.openwnn for service jp.co.omronsoft.openwnn/.OpenWnnJAJP: pid=119 uid=10023 gids={}
    03-23 11:21:15.553: D/libhardware_legacy(58): using QEMU GPS Hardware emulation
    03-23 11:21:15.583: D/NetworkManagmentService(58): Registering observer
    03-23 11:21:15.594: E/ThrottleService(58): Could not open GPS configuration file /etc/gps.conf
    03-23 11:21:15.683: I/ActivityManager(58): Start proc com.android.phone for added application com.android.phone: pid=124 uid=1001 gids={3002, 3001, 3003, 1015}
    03-23 11:21:15.763: I/ActivityManager(58): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.HOME] flg=0x10000000 cmp=com.android.launcher/com.android.launcher2.Launcher }
    03-23 11:21:16.084: I/ActivityManager(58): Start proc com.android.launcher for activity com.android.launcher/com.android.launcher2.Launcher: pid=129 uid=10025 gids={}
    03-23 11:21:16.093: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:16.093: D/qemud(37): created client 0xc038 listening on fd 13
    03-23 11:21:16.093: D/qemud(37): client_fd_receive: attempting registration for service 'sensors'
    03-23 11:21:16.093: D/qemud(37): client_fd_receive:    -> received channel id 9
    03-23 11:21:16.104: D/qemud(37): client_registration: registration succeeded for client 9
    03-23 11:21:16.293: I/ActivityManager(58): Start proc com.android.settings for broadcast com.android.settings/.widget.SettingsAppWidgetProvider: pid=131 uid=1000 gids={3002, 3001, 3003}
    03-23 11:21:17.147: D/dalvikvm(58): GC_FOR_MALLOC freed 5906 objects / 342696 bytes in 834ms
    03-23 11:21:17.393: E/logwrapper(148): executing /system/bin/tc failed: No such file or directory
    03-23 11:21:17.393: I/logwrapper(29): /system/bin/tc terminated by exit(255)
    03-23 11:21:17.493: E/logwrapper(149): executing /system/bin/tc failed: No such file or directory
    03-23 11:21:17.493: I/logwrapper(29): /system/bin/tc terminated by exit(255)
    03-23 11:21:17.556: E/logwrapper(150): executing /system/bin/tc failed: No such file or directory
    03-23 11:21:17.604: I/logwrapper(29): /system/bin/tc terminated by exit(255)
    03-23 11:21:17.703: D/StatusBar(58): DISABLE_EXPAND: yes
    03-23 11:21:18.423: W/GpsLocationProvider(58): Could not open GPS configuration file /etc/gps.conf
    03-23 11:21:18.774: D/AndroidRuntime(118): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<
    03-23 11:21:18.783: D/AndroidRuntime(118): CheckJNI is ON
    03-23 11:21:19.003: W/ActivityManager(58): Unable to start service Intent { act=@0 }: not found
    03-23 11:21:19.513: I/ActivityThread(129): Publishing provider com.android.launcher2.settings: com.android.launcher2.LauncherProvider
    03-23 11:21:19.563: I/ActivityThread(124): Publishing provider icc: com.android.phone.IccProvider
    03-23 11:21:19.603: I/ActivityThread(124): Publishing provider mms-sms: com.android.providers.telephony.MmsSmsProvider
    03-23 11:21:19.676: W/ActivityManager(58): Unable to start service Intent { act=@0 }: not found
    03-23 11:21:20.073: I/ActivityThread(124): Publishing provider mms: com.android.providers.telephony.MmsProvider
    03-23 11:21:20.173: I/ActivityThread(124): Publishing provider sms: com.android.providers.telephony.SmsProvider
    03-23 11:21:20.343: I/ActivityThread(124): Publishing provider telephony: com.android.providers.telephony.TelephonyProvider
    03-23 11:21:20.633: D/qemud(37): fdhandler_accept_event: accepting on fd 10
    03-23 11:21:20.633: D/qemud(37): created client 0xc088 listening on fd 14
    03-23 11:21:20.664: D/dalvikvm(119): No JNI_OnLoad found in /system/lib/libwnndict.so 0x43e37588, skipping init
    03-23 11:21:20.774: D/qemud(37): client_fd_receive: attempting registration for service 'gps'
    03-23 11:21:20.774: D/qemud(37): client_fd_receive:    -> received channel id 10
    03-23 11:21:20.783: D/qemud(37): client_registration: registration succeeded for client 10
    03-23 11:21:20.833: D/AndroidRuntime(118): --- registering native functions ---
    03-23 11:21:21.197: D/dalvikvm(119): GC_FOR_MALLOC freed 1373 objects / 241144 bytes in 314ms
    03-23 11:21:21.364: D/dalvikvm(58): GC_EXTERNAL_ALLOC freed 3992 objects / 246688 bytes in 585ms
    03-23 11:21:22.265: D/dalvikvm(119): GC_FOR_MALLOC freed 390 objects / 393656 bytes in 564ms
    03-23 11:21:23.024: D/ConnectivityService(58): getMobileDataEnabled returning true
    03-23 11:21:23.544: I/ActivityManager(58): Start proc android.process.acore for content provider com.android.providers.contacts/.CallLogProvider: pid=165 uid=10000 gids={3003, 1015}
    03-23 11:21:23.654: D/PhoneApp(124): onCreate: mProximityWakeLock: null
    03-23 11:21:23.984: W/ActivityManager(58): Unable to start service Intent { act=com.android.ussd.IExtendedNetworkService }: not found
    03-23 11:21:24.234: D/PhoneApp(124): Resetting audio state/mode: IDLE
    03-23 11:21:24.674: D/AlarmManagerService(58): Kernel timezone updated to -120 minutes west of GMT
    03-23 11:21:24.704: D/SystemClock(124): Setting time of day to sec=1364030484
    03-23 11:21:24.609: W/SystemClock(124): Unable to set rtc to 1364030484: Invalid argument
    03-23 11:21:24.818: I/ActivityManager(58): Start proc com.android.alarmclock for broadcast com.android.alarmclock/.AlarmInitReceiver: pid=171 uid=10009 gids={}
    03-23 11:21:24.977: D/MobileDataStateTracker(58): default Received state= DISCONNECTED, old= DISCONNECTED, reason= radioTurnedOff, apnTypeList= default
    03-23 11:21:25.038: I/ActivityThread(165): Publishing provider com.android.social: com.android.providers.contacts.SocialProvider
    03-23 11:21:25.168: D/MobileDataStateTracker(58): default Received state= DISCONNECTED, old= DISCONNECTED, reason= gprsDetached, apnTypeList= default
    03-23 11:21:25.499: I/ActivityThread(165): Publishing provider applications: com.android.providers.applications.ApplicationsProvider
    03-23 11:21:26.298: D/dalvikvm(58): GREF has increased to 201
    03-23 11:21:26.658: D/dalvikvm(124): GC_FOR_MALLOC freed 3593 objects / 221136 bytes in 1005ms
    03-23 11:21:26.838: I/ActivityThread(165): Publishing provider contacts;com.android.contacts: com.android.providers.contacts.ContactsProvider2
    03-23 11:21:26.908: I/ActivityThread(171): Publishing provider com.android.alarmclock: com.android.alarmclock.AlarmProvider
    03-23 11:21:27.338: I/ActivityManager(58): Start proc com.android.defcontainer for service com.android.defcontainer/.DefaultContainerService: pid=183 uid=10010 gids={1015, 2001}
    03-23 11:21:27.798: W/ActivityManager(58): Activity idle timeout for HistoryRecord{43ff07b0 com.android.launcher/com.android.launcher2.Launcher}
    03-23 11:21:27.918: D/MobileDataStateTracker(58): default Received state= DISCONNECTED, old= DISCONNECTED, reason= (unspecified), apnTypeList= default
    03-23 11:21:28.118: D/PowerManagerService(58): bootCompleted
    03-23 11:21:28.867: D/OtaStartupReceiver(124): Not a CDMA phone, no need to process OTA
    03-23 11:21:28.997: D/MccTable(124): updateMccMncConfiguration: mcc=310, mnc=260
    03-23 11:21:28.997: D/MccTable(124): locale set to en_us
    03-23 11:21:29.007: I/ActivityManager(58): Start proc android.process.media for broadcast com.android.providers.downloads/.DownloadReceiver: pid=195 uid=10002 gids={1015, 1006, 2001, 3003}
    03-23 11:21:29.097: I/RecoverySystem(58): No recovery log file
    03-23 11:21:29.167: D/MccTable(124): WIFI_NUM_ALLOWED_CHANNELS set to 11
    03-23 11:21:29.228: I/WifiService(58): WifiService trying to setNumAllowed to 11 with persist set to true
    03-23 11:21:29.237: I/ActivityManager(58): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/2 nav=1/1 orien=1 layout=268435490 uiMode=17 seq=3}
    03-23 11:21:29.487: I/UsageStats(58): Unexpected resume of com.android.launcher while already resumed in com.android.launcher
    03-23 11:21:29.590: D/dalvikvm(32): GC_EXPLICIT freed 268 objects / 10128 bytes in 560ms
    03-23 11:21:29.897: D/dalvikvm(129): GC_EXTERNAL_ALLOC freed 3177 objects / 196848 bytes in 767ms
    03-23 11:21:30.088: D/TelephonyProvider(124): Setting numeric '310260' to be the current operator
    03-23 11:21:30.147: I/ActivityThread(195): Publishing provider drm: com.android.providers.drm.DrmProvider
    03-23 11:21:30.277: D/dalvikvm(32): GC_EXPLICIT freed 40 objects / 1768 bytes in 663ms
    03-23 11:21:30.387: I/ActivityThread(195): Publishing provider media: com.android.providers.media.MediaProvider
    03-23 11:21:30.557: D/dalvikvm(32): GC_EXPLICIT freed 2 objects / 48 bytes in 248ms
    03-23 11:21:30.667: V/MediaProvider(195): Attached volume: internal
    03-23 11:21:30.757: I/ActivityThread(195): Publishing provider downloads: com.android.providers.downloads.DownloadProvider
    03-23 11:21:31.217: I/ActivityThread(165): Publishing provider call_log: com.android.providers.contacts.CallLogProvider
    03-23 11:21:31.267: I/ActivityThread(165): Publishing provider user_dictionary: com.android.providers.userdictionary.UserDictionaryProvider
    03-23 11:21:31.677: D/MobileDataStateTracker(58): default Received state= CONNECTING, old= DISCONNECTED, reason= simLoaded, apnTypeList= *
    03-23 11:21:31.687: D/NetworkStateTracker(58): setDetailed state, old =IDLE and new state=CONNECTING
    03-23 11:21:31.698: D/ConnectivityService(58): ConnectivityChange for mobile: CONNECTING/CONNECTING
    03-23 11:21:31.727: D/MobileDataStateTracker(58): replacing old mInterfaceName (null) with /dev/omap_csmi_tty1 for hipri
    03-23 11:21:31.727: D/MobileDataStateTracker(58): replacing old mInterfaceName (null) with /dev/omap_csmi_tty1 for supl
    03-23 11:21:31.747: D/MobileDataStateTracker(58): replacing old mInterfaceName (null) with /dev/omap_csmi_tty1 for mms
    03-23 11:21:31.747: D/MobileDataStateTracker(58): default Received state= CONNECTED, old= CONNECTING, reason= simLoaded, apnTypeList= *
    03-23 11:21:31.788: D/NetworkStateTracker(58): setDetailed state, old =CONNECTING and new state=CONNECTED
    03-23 11:21:31.797: D/ConnectivityService(58): ConnectivityChange for mobile: CONNECTED/CONNECTED
    03-23 11:21:31.822: V/NetworkStateTracker(58): Setting TCP values: [4094,87380,110208,4096,16384,110208] which comes from [net.tcp.buffersize.umts]
    03-23 11:21:31.927: I/ActivityManager(58): Start proc com.android.mms for broadcast com.android.mms/.transaction.MmsSystemEventReceiver: pid=209 uid=10015 gids={3003, 1015}
    03-23 11:21:31.998: D/ConnectivityService(58): adding dns 10.0.2.3 for mobile
    03-23 11:21:32.037: D/Tethering(58): Tethering got CONNECTIVITY_ACTION
    03-23 11:21:32.037: D/Tethering(58): MasterInitialState.processMessage what=3
    03-23 11:21:32.037: E/HierarchicalStateMachine(58): TetherMaster - unhandledMessage: msg.what=3
    03-23 11:21:32.528: D/SntpClient(58): request time failed: java.net.SocketException: Address family not supported by protocol
    03-23 11:21:32.807: I/ActivityThread(209): Publishing provider com.android.mms.SuggestionsProvider: com.android.mms.SuggestionsProvider
    03-23 11:21:32.987: I/SurfaceFlinger(58): Boot is finished (30208 ms)
    03-23 11:21:33.038: I/ARMAssembler(58): generated scanline__00000177:03515104_00000001_00000000 [ 73 ipp] (95 ins) at [0x3a8508:0x3a8684] in 1542208 ns
    03-23 11:21:33.298: I/SearchManagerService(58): Building list of searchable activities
    03-23 11:21:33.508: I/ActivityManager(58): Start proc com.android.email for broadcast com.android.email/com.android.exchange.BootReceiver: pid=225 uid=10030 gids={3003, 1015}
    03-23 11:21:33.948: I/ActivityThread(225): Publishing provider com.android.email.provider: com.android.email.provider.EmailProvider
    03-23 11:21:33.998: I/ActivityThread(225): Publishing provider com.android.exchange.provider: com.android.exchange.provider.ExchangeProvider
    03-23 11:21:34.008: I/ActivityThread(225): Publishing provider com.android.email.attachmentprovider: com.android.email.provider.AttachmentProvider
    03-23 11:21:34.188: D/Exchange(225): BootReceiver onReceive
    03-23 11:21:34.228: I/ActivityManager(58): Start proc com.android.protips for broadcast com.android.protips/.ProtipWidget: pid=234 uid=10007 gids={}
    03-23 11:21:34.268: D/EAS SyncManager(225): !!! EAS SyncManager, onCreate
    03-23 11:21:34.538: D/MediaScannerService(195): start scanning volume internal
    03-23 11:21:34.648: D/EAS SyncManager(225): !!! EAS SyncManager, onStartCommand
    03-23 11:21:34.708: D/EAS SyncManager(225): !!! EAS SyncManager, stopping self
    03-23 11:21:34.998: D/Eas Debug(225): Logging: 
    03-23 11:21:35.148: D/dalvikvm(183): GC_EXPLICIT freed 803 objects / 56712 bytes in 125ms
    03-23 11:21:35.278: D/dalvikvm(58): GC_EXPLICIT freed 9112 objects / 480680 bytes in 303ms
    03-23 11:21:35.348: D/EAS SyncManager(225): !!! EAS SyncManager, onDestroy
    03-23 11:21:35.978: D/PackageParser(58): Scanning package: /data/app/vmdl63305.tmp
    03-23 11:21:36.298: D/MediaScanner(195):  prescan time: 750ms
    03-23 11:21:36.328: D/MediaScanner(195):     scan time: 5ms
    03-23 11:21:36.328: D/MediaScanner(195): postscan time: 0ms
    03-23 11:21:36.328: D/MediaScanner(195):    total time: 755ms
    03-23 11:21:36.368: D/MediaScannerService(195): done scanning volume internal
    03-23 11:21:36.908: D/dalvikvm(129): GC_EXTERNAL_ALLOC freed 2582 objects / 131880 bytes in 91ms
    03-23 11:21:37.088: I/PackageManager(58): Removing non-system package:com.example.testbt
    03-23 11:21:37.428: D/PackageManager(58): Scanning package com.example.testbt
    03-23 11:21:37.438: I/PackageManager(58): Package com.example.testbt codePath changed from /data/app/com.example.testbt-1.apk to /data/app/com.example.testbt-2.apk; Retaining data and using new
    03-23 11:21:37.487: I/PackageManager(58): /data/app/com.example.testbt-2.apk changed; unpacking
    03-23 11:21:37.508: D/installd(34): DexInv: --- BEGIN '/data/app/com.example.testbt-2.apk' ---
    03-23 11:21:37.938: I/Launcher.Model(129): not binding apps: no Launcher activity
    03-23 11:21:38.118: D/dalvikvm(129): GC_EXPLICIT freed 1767 objects / 88328 bytes in 182ms
    03-23 11:21:39.808: D/dalvikvm(245): DexOpt: load 508ms, verify 1295ms, opt 82ms
    03-23 11:21:39.908: D/installd(34): DexInv: --- END '/data/app/com.example.testbt-2.apk' (success) ---
    03-23 11:21:39.908: W/PackageManager(58): Code path for pkg : com.example.testbt changing from /data/app/com.example.testbt-1.apk to /data/app/com.example.testbt-2.apk
    03-23 11:21:39.908: W/PackageManager(58): Resource path for pkg : com.example.testbt changing from /data/app/com.example.testbt-1.apk to /data/app/com.example.testbt-2.apk
    03-23 11:21:39.908: D/PackageManager(58):   Activities: com.example.testbt.MainActivity
    03-23 11:21:40.078: D/dalvikvm(129): GC_EXPLICIT freed 9801 objects / 493112 bytes in 94ms
    03-23 11:21:40.258: I/installd(34): move /data/dalvik-cache/data@app@com.example.testbt-2.apk@classes.dex -> /data/dalvik-cache/data@app@com.example.testbt-2.apk@classes.dex
    03-23 11:21:40.258: D/PackageManager(58): New package installed in /data/app/com.example.testbt-2.apk
    03-23 11:21:40.958: I/ActivityManager(58): Force stopping package com.example.testbt uid=10038
    03-23 11:21:40.968: I/ActivityManager(58): Force stopping package com.example.testbt uid=10038
    03-23 11:21:41.058: I/ActivityManager(58): Force stopping package com.example.testbt uid=10038
    03-23 11:21:41.118: I/ActivityManager(58): Start proc com.android.quicksearchbox for broadcast com.android.quicksearchbox/.SearchWidgetProvider: pid=246 uid=10012 gids={3003}
    03-23 11:21:41.688: I/ActivityThread(246): Publishing provider com.android.quicksearchbox.google: com.android.quicksearchbox.google.GoogleSuggestionProvider
    03-23 11:21:42.078: I/ActivityManager(58): Start proc com.android.music for broadcast com.android.music/.MediaAppWidgetProvider: pid=253 uid=10022 gids={3003, 1015}
    03-23 11:21:42.099: W/RecognitionManagerService(58): no available voice recognition services found
    03-23 11:21:42.588: D/dalvikvm(58): GC_EXPLICIT freed 9457 objects / 587640 bytes in 164ms
    03-23 11:21:42.878: D/dalvikvm(165): GC_EXPLICIT freed 4279 objects / 258944 bytes in 1870ms
    03-23 11:21:42.918: I/installd(34): unlink /data/dalvik-cache/data@app@com.example.testbt-1.apk@classes.dex
    03-23 11:21:43.008: D/AndroidRuntime(118): Shutting down VM
    03-23 11:21:43.018: D/jdwp(118): adbd disconnected
    03-23 11:21:43.100: I/dalvikvm(118): JNI: AttachCurrentThread (from ???.???)
    03-23 11:21:43.100: I/AndroidRuntime(118): NOTE: attach of thread 'Binder Thread #3' failed
    03-23 11:21:43.528: I/ActivityManager(58): Start proc com.svox.pico for broadcast com.svox.pico/.VoiceDataInstallerReceiver: pid=262 uid=10028 gids={}
    03-23 11:21:44.058: I/ActivityThread(262): Publishing provider com.svox.pico.providers.SettingsProvider: com.svox.pico.providers.SettingsProvider
    03-23 11:21:44.508: D/AndroidRuntime(268): >>>>>>>>>>>>>> AndroidRuntime START <<<<<<<<<<<<<<
    03-23 11:21:44.508: D/AndroidRuntime(268): CheckJNI is ON
    03-23 11:21:44.888: D/AndroidRuntime(268): --- registering native functions ---
    03-23 11:21:46.117: I/ActivityManager(58): Starting activity: Intent { act=android.intent.action.MAIN cat=[android.intent.category.LAUNCHER] flg=0x10000000 cmp=com.example.testbt/.MainActivity }
    03-23 11:21:46.277: D/AndroidRuntime(268): Shutting down VM
    03-23 11:21:46.347: I/ActivityManager(58): Start proc com.example.testbt for activity com.example.testbt/.MainActivity: pid=277 uid=10038 gids={3002, 3001}
    03-23 11:21:46.518: D/jdwp(268): adbd disconnected
    03-23 11:21:47.037: D/AndroidRuntime(277): Shutting down VM
    03-23 11:21:47.079: W/dalvikvm(277): threadid=1: thread exiting with uncaught exception (group=0x4001d800)
    03-23 11:21:47.097: E/AndroidRuntime(277): FATAL EXCEPTION: main
    03-23 11:21:47.097: E/AndroidRuntime(277): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.example.testbt/com.example.testbt.MainActivity}: java.lang.NullPointerException
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2585)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2679)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.ActivityThread.access$2300(ActivityThread.java:125)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2033)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.os.Handler.dispatchMessage(Handler.java:99)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.os.Looper.loop(Looper.java:123)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.ActivityThread.main(ActivityThread.java:4627)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at java.lang.reflect.Method.invokeNative(Native Method)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at java.lang.reflect.Method.invoke(Method.java:521)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at dalvik.system.NativeStart.main(Native Method)
    03-23 11:21:47.097: E/AndroidRuntime(277): Caused by: java.lang.NullPointerException
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.Activity.findViewById(Activity.java:1637)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at com.example.testbt.MainActivity.<init>(MainActivity.java:16)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at java.lang.Class.newInstanceImpl(Native Method)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at java.lang.Class.newInstance(Class.java:1429)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2577)
    03-23 11:21:47.097: E/AndroidRuntime(277): 	... 11 more
    03-23 11:21:47.189: W/ActivityManager(58):   Force finishing activity com.example.testbt/.MainActivity
    03-23 11:21:47.707: W/ActivityManager(58): Activity pause timeout for HistoryRecord{43fa7860 com.example.testbt/.MainActivity}
    03-23 11:21:47.717: I/ActivityManager(58): Displayed activity com.android.launcher/com.android.launcher2.Launcher: 31984 ms (total 31984 ms)
    03-23 11:21:57.779: W/ActivityManager(58): Activity destroy timeout for HistoryRecord{43fa7860 com.example.testbt/.MainActivity}
    03-23 11:23:56.158: D/KeyguardViewMediator(58): pokeWakelock(5000)
    03-23 11:23:56.338: D/KeyguardViewMediator(58): pokeWakelock(5000)
    03-23 11:23:56.638: W/WindowManager(58): No window to dispatch pointer action 1
    03-23 11:23:56.638: I/ARMAssembler(58): generated scanline__00000177:03515104_00001001_00000000 [ 91 ipp] (114 ins) at [0x3caf70:0x3cb138] in 1086987 ns
    03-23 11:23:56.698: I/ARMAssembler(58): generated scanline__00000077:03515104_00000000_00000000 [ 33 ipp] (47 ins) at [0x3cb140:0x3cb1fc] in 490632 ns
    03-23 11:24:48.268: I/Process(277): Sending signal. PID: 277 SIG: 9
    03-23 11:24:48.278: I/ActivityManager(58): Process com.example.testbt (pid 277) has died.

  7. #7
    Membre actif
    Homme Profil pro
    Développeur Java / C++
    Inscrit en
    Mars 2013
    Messages
    128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur Java / C++

    Informations forums :
    Inscription : Mars 2013
    Messages : 128
    Points : 228
    Points
    228
    Par défaut
    Bonjour genius4efers,

    PointerNullException le problème vient de là, donc modifie cette partie du code ainsi:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
     
    bt2.setOnClickListener(new View.OnClickListener() {
     
    			@Override
    			public void onClick(View v) {
                            if(blueAdapter != null) // ICI
    				if (!blueAdapter.isEnabled()) {
    				    Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    				    startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
    				}
     
    			}
    		});

  8. #8
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 386
    Points
    386
    Par défaut
    Merci mais le probleme n'est pas resolu

  9. #9
    Membre actif
    Homme Profil pro
    Développeur Java / C++
    Inscrit en
    Mars 2013
    Messages
    128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur Java / C++

    Informations forums :
    Inscription : Mars 2013
    Messages : 128
    Points : 228
    Points
    228
    Par défaut
    Bonjour genius4ever,

    Les permissions ont été correctement définie dans le manifest de l'application?

    Je vous met le liens vers la documentation android concernant le bluetooth. Sur cette page tout est expliqué.

    A noté aussi que j'ai lu sur certain forum que le bluetooth ne peut être utilisé sous un émulateur. Mais cela reste à vérifier. Je vais essayer de le faire fonctionner, je vous tiens au courant.

  10. #10
    Membre averti
    Homme Profil pro
    Chef de projet MOA
    Inscrit en
    Janvier 2011
    Messages
    456
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Chef de projet MOA
    Secteur : Finance

    Informations forums :
    Inscription : Janvier 2011
    Messages : 456
    Points : 386
    Points
    386
    Par défaut
    Bonjour
    pour la permission voici mon code

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    <uses-permission android:name="android.permission.BLUETOOTH" />
    elle est declare juste avant la balise du application.

    moi j'ai encore installe l'application sur mon portable , rien ne change ,meme error que l'emulateur.

    je suis entrain de voir plusieurs examples , je vous tiens au courant.

  11. #11
    Membre actif
    Homme Profil pro
    Développeur Java / C++
    Inscrit en
    Mars 2013
    Messages
    128
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Haute Garonne (Midi Pyrénées)

    Informations professionnelles :
    Activité : Développeur Java / C++

    Informations forums :
    Inscription : Mars 2013
    Messages : 128
    Points : 228
    Points
    228
    Par défaut
    Sur émulateur:

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    BluetoothAdapter.getDefaultAdapter()
    me renvoie null, ce qui signifie que le bluetooth n'est pas disponible.

    Tant dis que, sur mon smartphone, le même code, me renvoie bien une instance de BluetoothAdapter, me permettant ainsi de l'utiliser.

    Il semble donc, à priori, que le bluetooth ne peut être utilisé sur un AVD. Il existe peut-être une manipulation permettant de le faire fonctionner (ou de le lier à un périphérique bluetooth branché sur l'ordinateur) mais là ça dépasse mes compétences.

    Désolé

    EDIT: Je viens de voir votre post.

    Etrange que cela ne fonctionne pas sur votre smartphone. Je vous met le code que j'ai utilisé, c'est surtout pour vous montrer comment vérifier que l'utilsateur a bien validé l'activation du bluetooth. Par contre attention, je l'ai écrit vite fait, c'était juste histoire de tester, et du coup le smartphone demande l'activation du bluetooth plusieurs fois :s.

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
     
    public class BlueToothActivity extends Activity {
    	private static final int REQUEST_ENABLE_BT = 1;
    	private BluetoothAdapter blueToothAdapter;
     
    	@Override
    	protected void onCreate(Bundle savedInstanceState) {
    		super.onCreate(savedInstanceState);
    		setContentView(R.layout.activity_blue_tooth);
    		this.blueToothAdapter = BluetoothAdapter.getDefaultAdapter();
     
    		// On vérifier la possiblité de l'utilsiation du bluetooth
    		// ATTENTION, ce code ne DEVRAIS pas être dans le onCreate de l'activity!!!
    		if(this.blueToothAdapter == null)
    			// ici le bluetooth n'est pas disponible
    			Toast.makeText(this, "Bluetooth not avalaible!", Toast.LENGTH_SHORT).show();
    		else{
    			if (!this.blueToothAdapter.isEnabled()) {
    				// Ici le bluetootht est disponible mais pas activé!
    				// Donc on demande l'activation à l'utilisateur
    				// Le retour de cette demande se trouve dans onActivityResult(...) un peu plus bas
    			    Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
    			    startActivityForResult(enableBtIntent, REQUEST_ENABLE_BT);
    			}
    		}
    	}
     
    	@Override
    	public boolean onCreateOptionsMenu(Menu menu) {
    		// Inflate the menu; this adds items to the action bar if it is present.
    		getMenuInflater().inflate(R.menu.blue_tooth, menu);
    		return true;
    	}
     
    	@Override
    	protected void onActivityResult(int requestCode, int resultCode, Intent data) {
     
    		switch(requestCode){
    		// Ici, on vérifie bien que la requête correspond à l'activation du bluetooth
    		case REQUEST_ENABLE_BT:
    			// Ici, l'utilisateur a validé l'activation du bluetooth.
    			if(resultCode == RESULT_OK)
    				Toast.makeText(this, "Bluetooth is avalaible and now on", Toast.LENGTH_SHORT).show();
    		}
    		super.onActivityResult(requestCode, resultCode, data);
    	}
     
    }

Discussions similaires

  1. Erreur de compilation sur une librairie en mode debug
    Par bakaneko dans le forum C++Builder
    Réponses: 2
    Dernier message: 18/05/2006, 16h32
  2. Erreur de compilation sur std::string avec Dev C++
    Par dada57 dans le forum Dev-C++
    Réponses: 4
    Dernier message: 20/03/2006, 18h06
  3. Erreur de compilation sur gaim-vv avec gstrreamer
    Par ZiMo dans le forum Applications et environnements graphiques
    Réponses: 1
    Dernier message: 30/12/2005, 10h41
  4. Erreur à la compile sur VC++ 6
    Par norwy dans le forum Développement
    Réponses: 1
    Dernier message: 10/11/2005, 13h51
  5. Delphi 7 update 1 - Erreur de compil sur SQLExpr
    Par RamDevTeam dans le forum Bases de données
    Réponses: 14
    Dernier message: 02/11/2005, 17h44

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo