当设备在Android上启动时,我一直在尝试启动服务,它适用于三星和Moto移动设备,但我无法让它在Vivo和Oppo手机上运行。我在网上看过,但我找不到任何链接。
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<receiver
android:name=".Antitheft.Services.BootComplete"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="android.intent.action.QUICKBOOT_POWERON" />
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service
android:name=".Antitheft.Services.AutoStartUp"
android:theme="@style/MAppTheme" />