Hi, Try putting some code like this
String LOG_TAG = "my service process ="; Log.d(LOG_TAG, myserviceprocess); in your code to monitor whats happening. The results are displayed in Debug> LogCat. Cheers, Wes On Oct 29, 4:00 am, Jakob Sachse <[EMAIL PROTECTED]> wrote: > Hallo, > > I am trying to write a Service thats runs in a seperate process. > I am willing to use the Service through IPC from an Activity. > > thats how my section of the AndroidManifest looks like: > ####### > <service android:name="MyService" android:process=":remote"> > <intent-filter> > <action android:name="com.smth.IRemoteService" /> > </intent-filter> > </service> > > <activity android:name=".UTI" android:label="@string/app_name"> > <intent-filter> > <action android:name="android.intent.action.MAIN" /> > <category android:name="android.intent.category.LAUNCHER" /> > </intent-filter> > </activity> > ####### > > Yet when I start the App (using eclipse: debug as -> android app), i > can debug the Activity but not the Service. Switching to DDMS gives me > an overview of running processes, using the "green bug" for enabeling > debug for the services process results in: > > "no open project fround for com.smth:remote, Debug Session failed". > > Anyway the project is open. > > Have i forgotten do declare something in the debug configuration > dialog? Any hint is appreciated --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

