无法在Vivo Android手机上启动服务

时间:2017-05-25 12:45:10

标签: android

当设备在Android上启动时,我一直在尝试启动服务,它适用于三星和Moto移动设备,但我无法让它在Vivo和Oppo手机上运行。我在网上看过,但我找不到任何链接。

的AndroidManifest.xml

 <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" />

0 个答案:

没有答案