调试在启动时运行的应用程序
Debug app that runs at boot
我正在使用 Android Studio。
我为接收 android.intent.action.BOOT_COMPLETED 的应用程序添加了 BroadcastReceiver,接收器仅显示 Toast 以供测试。问题是 Android 启动后我收到 "App has stopped" 消息。
我的第一个问题是:有没有办法在开机的时候自己调试一下,看看是哪里出了问题?因为我在 Android Studio 中看不到任何涉及该问题的日志。
我的第二个问题与问题本身有关。这是代码:
XML:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="myapp">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".AutoStartReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
Java: 广播接收器
public class AutoStartReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "loaded", Toast.LENGTH_LONG).show();
throw new UnsupportedOperationException("Not yet implemented");
}
}
第三个问题是:在receiver中做一些繁重的工作(读取一些文件并设置AlarmManager)而不是创建一个服务是否可以?因为 API 26 Android 对服务施加了很多限制。
谢谢
启动时启动的应用程序可以在您的设备获得调试连接后进行调试,这通常发生在应用程序本身启动之前。只需打开 logcat 并观察设备和应用程序在重启后弹出。请注意,这假定应用程序是可调试的。没有的应用程序将不会显示任何日志。
您收到 MyApp has unfortunately stopped
消息的原因很明显:
public class AutoStartReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "loaded", Toast.LENGTH_LONG).show();
throw new UnsupportedOperationException("Not yet implemented");
}
}
你抛出一个异常,这意味着它会停止。
至于你在服务中做什么,只要它使用合理数量的 RAM 和处理器(非常繁重的服务更有可能被杀死以节省电池和内存)你就可以了
对于调试部分,我使用了这个(在终端中,当模拟器打开时):
adb shell am set-debug-app -w --persistent <your.app.package>
开始调试,然后当应用程序在模拟器上提示时单击将调试器附加到android进程。
要禁用此功能:
adb shell am clear-debug-app <your.app.package>
在这里找到答案:https://medium.com/@elye.project/debug-app-deeplink-at-launch-time-bdb2cf04a9e6
我正在使用 Android Studio。
我为接收 android.intent.action.BOOT_COMPLETED 的应用程序添加了 BroadcastReceiver,接收器仅显示 Toast 以供测试。问题是 Android 启动后我收到 "App has stopped" 消息。
我的第一个问题是:有没有办法在开机的时候自己调试一下,看看是哪里出了问题?因为我在 Android Studio 中看不到任何涉及该问题的日志。
我的第二个问题与问题本身有关。这是代码: XML:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="myapp">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name="MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name=".AutoStartReceiver"
android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>
Java: 广播接收器
public class AutoStartReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "loaded", Toast.LENGTH_LONG).show();
throw new UnsupportedOperationException("Not yet implemented");
}
}
第三个问题是:在receiver中做一些繁重的工作(读取一些文件并设置AlarmManager)而不是创建一个服务是否可以?因为 API 26 Android 对服务施加了很多限制。
谢谢
启动时启动的应用程序可以在您的设备获得调试连接后进行调试,这通常发生在应用程序本身启动之前。只需打开 logcat 并观察设备和应用程序在重启后弹出。请注意,这假定应用程序是可调试的。没有的应用程序将不会显示任何日志。
您收到 MyApp has unfortunately stopped
消息的原因很明显:
public class AutoStartReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Toast.makeText(context, "loaded", Toast.LENGTH_LONG).show();
throw new UnsupportedOperationException("Not yet implemented");
}
}
你抛出一个异常,这意味着它会停止。
至于你在服务中做什么,只要它使用合理数量的 RAM 和处理器(非常繁重的服务更有可能被杀死以节省电池和内存)你就可以了
对于调试部分,我使用了这个(在终端中,当模拟器打开时):
adb shell am set-debug-app -w --persistent <your.app.package>
开始调试,然后当应用程序在模拟器上提示时单击将调试器附加到android进程。
要禁用此功能:
adb shell am clear-debug-app <your.app.package>
在这里找到答案:https://medium.com/@elye.project/debug-app-deeplink-at-launch-time-bdb2cf04a9e6