There is an application with activation, which starts every time the system starts and hangs in the system. I do this:
<receiver android:name="com.ad.cd" android:enabled="true" android:exported="true" android:permission="android.permission.RECEIVE_BOOT_COMPLETED" > <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </receiver>
The problem is that when there is a shortage of RAM, the system slams the APU. There is a way to create a permanent notification (I did without an icon), but it infuriates users + supposedly spending extra 5MB. Are there any other ways?
Root protection (seen ups, if you slap, it gives "Application * ROOT provided" and it is back in the ranks), invisible notification (minsdk = 9, although 14 will do), other methods? I would be grateful for the advice!