Other Parts Discussed in Thread: AM62P
Tool/software:
Hi TI experts,
A "service" was created as a single user, and once booted, the service running in all available user (default for both User-0 and User-10)
Issue: the service is executed by both User-0 and User-10.
The expected result is that the service is only running in User-0 (since singleUser=Tag).
we are using aosp SDK 09.02
<service android:name=".ServiceName"
android:singleUser="true"
android:exported="true">
<intent-filter>
<action android:name="service.IService"/>
</intent-filter>
</service>
The service is getting start after receiving "RECEIVE_BOOT_COMPLETED"
Intent intentService = new Intent(context, AcudriveService.class);
intentService.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startService(intentService);