auto import from //branches/cupcake/...@127101

This commit is contained in:
The Android Open Source Project
2009-01-20 14:03:58 -08:00
parent 9266c558bf
commit 22f7dfd234
130 changed files with 2728 additions and 410 deletions

View File

@@ -290,7 +290,7 @@ class ServerThread extends Thread {
Log.i(TAG, "Starting Audio Service");
ServiceManager.addService(Context.AUDIO_SERVICE, new AudioService(context));
} catch (Throwable e) {
Log.e(TAG, "Failure starting Volume Service", e);
Log.e(TAG, "Failure starting Audio Service", e);
}
try {
@@ -300,6 +300,13 @@ class ServerThread extends Thread {
} catch (Throwable e) {
Log.e(TAG, "Failure starting HeadsetObserver", e);
}
try {
Log.i(TAG, "Starting Gadget Service");
ServiceManager.addService(Context.GADGET_SERVICE, new GadgetService(context));
} catch (Throwable e) {
Log.e(TAG, "Failure starting Gadget Service", e);
}
}
// make sure the ADB_ENABLED setting value matches the secure property value