Hi all
my app cant auto run in device miui
another work..
i try add ini manifest this but cant
i think this device need permission for auto start
so how???
my app cant auto run in device miui
another work..
i try add ini manifest this but cant
i think this device need permission for auto start
so how???
B4X:
<uses-permission
android:name="android.permission.BOOT_COMPLETED"
/>
B4X:
AddApplicationText(
<service
android:name="android.intent.action.BOOT_COMPLETED"
android:enabled="true" />
)
AddReceiverText(Starter,
<intent-filter>
<category android:name="android.intent.category.DEFAULT"></category>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
</intent-filter>)