启动时触发带有BroadcastReceiver的应用程序崩溃

时间:2019-04-18 19:33:20

标签: android kotlin service broadcastreceiver

当正在运行应用程序的电话启动时,我正在尝试在我的应用程序中启动服务。我添加了一个广播接收器,在清单中添加了一个意图过滤器,创建了一个服务,并将其也添加到了清单中。但是每当我启动手机时,过一会儿就会显示我的应用程序崩溃了。

要注意的重要一点是,如果服务是从MainActivity启动的,则它可以正常工作。

我在Stackoverflow上看到了更多与此有关的问题,但是这些问题都无法解决我的问题,因为其中大多数是忘记将接收方添加到清单或其他内容的人。 但是我也不知道如何从手机启动时读取logcat输出,因此我无法确定导致应用崩溃的原因。

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    package="nl.arnovanliere.nuntia">

    <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
    <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

    <uses-feature android:name="android.hardware.location.gps" />

    <application
        android:allowBackup="true"
        android:fullBackupContent="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:resizeableActivity="false"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsPictureInPicture="false"
        android:supportsRtl="true"
        android:theme="@style/AppTheme"
        tools:ignore="GoogleAppIndexingWarning">

        <receiver
            android:name=".receivers.BroadcastReceiver"
            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>


        <service
            android:name=".services.CheckMessagesService"
            android:enabled="true"
            android:exported="true"
            android:permission="false" />

        <activity
            android:label="@string/app_name"
            android:name=".MainActivity"
            android:theme="@style/AppTheme">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <meta-data
            android:name="com.google.android.geo.API_KEY"
            android:value="AIzaSyBhlLDqLSihI41pIs-ELuomRWUv6513CeE" />
    </application>

</manifest>

BroadcastReceiver.kt

class BroadcastReceiver : BroadcastReceiver() {
    @SuppressLint("UnsafeProtectedBroadcastReceiver")
    override fun onReceive(context: Context?, intent: Intent?) {
        context?.startService(Intent(context, CheckMessagesService::class.java))
        Log.d(LOG_TAG, "onReceive BroadcastReceiver called")
    }
}

CheckMessagesService

class CheckMessagesService : Service() {

    override fun onBind(intent: Intent): IBinder? {
        return null
    }

    override fun onCreate() {
        Log.d(LOG_TAG, "onCreate of service called")
        super.onCreate()
    }

    override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
        Log.d(LOG_TAG, "onStartCommand of service called")
        val runnable = Runnable {
            checkMessages()
            // Only need to check for messages every minute
            Thread.sleep(60000)
        }

        // New thread for checking messages, otherwise the UI-thread would be blocked
        val thread = Thread(runnable)
        thread.start()

        return super.onStartCommand(intent, flags, startId)
    }

    override fun onDestroy() {
        Log.d(LOG_TAG, "onDestroy of service called")
        super.onDestroy()
    }

checkMessages()只是调用API并反序列化以检查是否必须发送通知的函数。

我希望你们中的一个能帮助我。

1 个答案:

答案 0 :(得分:0)

对于任何将来的观看者:问题是我必须使用startForegroundService()而不是startService(),因为我是在Android Oreo上运行它的。

感谢@Pawel