androidkrazy
Member
Im clueless when it comes to this but the android manifest xml from framework-res.apk contains this specific reference to carrier iq in it and points to the package.
<service
android:label="IQ Agent Service"
android:name="com.carrieriq.iqagent.service.IQService"
android:enabled="true"
android:exported="true"
android
rocess="android.iqd"
>
<intent-filter
>
<action
android:name="com.carrieriq.iqagent.service.IQService"
>
</action>
</intent-filter>
</service>
<receiver
android:label="IQ Agent Autostarter"
android:name="com.carrieriq.iqagent.service.receivers.BootCompletedReceiver"
android:enabled="true"
android:exported="true"
android
rocess="android.iqd"
>
<intent-filter
>
<action
android:name="com.sprint.android.SPRINTEXTENSION_STARTED"
>
</action>
</intent-filter>
</receiver>
<activity
android:label="IQ Agent Settings"
android:name="com.carrieriq.iqagent.service.ui.DebugSettings"
android:enabled="true"
android:exported="false"
android
rocess="android.iqd"
>
</activity>
<activity
android:label="IQ Agent Message Dialog"
android:name="com.carrieriq.iqagent.service.ui.ShowMessage"
android:enabled="true"
android:exported="false"
android
rocess="android.iqd"
android:stateNotNeeded="true"
android:excludeFromRecents="true"
>
</activity>
maybe someone who actually knows what they are doing can make some use of this.
<service
android:label="IQ Agent Service"
android:name="com.carrieriq.iqagent.service.IQService"
android:enabled="true"
android:exported="true"
android
rocess="android.iqd">
<intent-filter
>
<action
android:name="com.carrieriq.iqagent.service.IQService"
>
</action>
</intent-filter>
</service>
<receiver
android:label="IQ Agent Autostarter"
android:name="com.carrieriq.iqagent.service.receivers.BootCompletedReceiver"
android:enabled="true"
android:exported="true"
android
rocess="android.iqd">
<intent-filter
>
<action
android:name="com.sprint.android.SPRINTEXTENSION_STARTED"
>
</action>
</intent-filter>
</receiver>
<activity
android:label="IQ Agent Settings"
android:name="com.carrieriq.iqagent.service.ui.DebugSettings"
android:enabled="true"
android:exported="false"
android
rocess="android.iqd">
</activity>
<activity
android:label="IQ Agent Message Dialog"
android:name="com.carrieriq.iqagent.service.ui.ShowMessage"
android:enabled="true"
android:exported="false"
android
rocess="android.iqd"android:stateNotNeeded="true"
android:excludeFromRecents="true"
>
</activity>
maybe someone who actually knows what they are doing can make some use of this.