崩溃后,Android应用会自动重启

时间:2011-08-30 15:18:11

标签: android android-ndk

我的应用程序部分使用C / C ++在本机应用程序中编写。问题是,每当C / C ++部分由于某种原因崩溃时,应用程序就会死机,然后自动重启。这会导致各种混乱的问题

当然, 应该 不会在本机部分崩溃,而我正试图清除它为什么会发生的所有原因。但是,如果确实发生了,我想:

  1. 优雅退出
  2. 如果它确实死亡,至少不要尝试自动重启。
  3. 我很好奇为什么会出现这种情况。经过一些搜索后,我尝试将以下行放在AndroidManifest.xml的主要活动元素中:

    android:finishOnTaskLaunch="true"
    

    但仍然会自动恢复。

    任何人都知道为什么会这样,以及如何改变它?

    更新 我认为一个更基本的问题是,  如果发生本机崩溃,是否存在类似于回调的内容?

    其中一个答案表明“处理碰撞信号”。对于如何在应用程序或模块级别完成任何链接,我将不胜感激。

    目前,如果发生崩溃,应用程序就会消失,logcat中没有任何内容,因此无法进行调试。

2 个答案:

答案 0 :(得分:14)

尝试处理崩溃信号(SIGSEGV等)并在信号处理程序中向自己发送kill。这个技巧对我有帮助。

示例:

#include <signal.h>
#include <unistd.h>


static void signal_handler(int signal, siginfo_t *info, void *reserved)
{
  kill(getpid(),SIGKILL);
}

extern "C" jint JNI_OnLoad(JavaVM* vm, void* /*reserved*/)
{
  struct sigaction handler;
  memset(&handler, 0, sizeof(handler));
  handler.sa_sigaction = signal_handler;
  handler.sa_flags = SA_SIGINFO;
  sigaction(SIGILL, &handler, NULL);
  sigaction(SIGABRT, &handler, NULL);
  sigaction(SIGBUS, &handler, NULL);
  sigaction(SIGFPE, &handler, NULL);
  sigaction(SIGSEGV, &handler, NULL);
  sigaction(SIGSTKFLT, &handler, NULL);
  return(JNI_VERSION_1_6);
}

<强> UPDATE2

如果你想在android logcat中看到crashlog,你应该使用这个信号处理程序

static void signal_handler(int signal, siginfo_t *info, void *reserved)
{
 struct sockaddr_un addr;
 size_t namelen;
 socklen_t alen;
 int s, err;
 char name[] = "android:debuggerd";
 namelen  = strlen(name);

 // Test with length +1 for the *initial* '\0'.
 if ((namelen + 1) > sizeof(addr.sun_path)) {
    errno = EINVAL;
    return;
 }

 /* This is used for abstract socket namespace, we need
  * an initial '\0' at the start of the Unix socket path.
  *
  * Note: The path in this case is *not* supposed to be
  * '\0'-terminated. ("man 7 unix" for the gory details.)
  */
 memset (&addr, 0, sizeof addr);
 addr.sun_family = AF_LOCAL;
 addr.sun_path[0] = 0;
 memcpy(addr.sun_path + 1, name, namelen);

 alen = namelen + offsetof(struct sockaddr_un, sun_path) + 1;

 s = socket(AF_LOCAL, SOCK_STREAM, 0);
 if(s < 0) return;

 RETRY_ON_EINTR(err,connect(s, (struct sockaddr *) &addr, alen));
 if (err < 0) {
    close(s);
    s = -1;
 }

 pid_t tid = gettid();
 if(s>=0)
 {
   /* debugger knows our pid from the credentials on the
    * local socket but we need to tell it our tid.  It
    * is paranoid and will verify that we are giving a tid
    * that's actually in our process
    */
    int  ret;

    RETRY_ON_EINTR(ret, write(s, &tid, sizeof(unsigned)));
    if (ret == sizeof(unsigned)) {
        /* if the write failed, there is no point to read on
         * the file descriptor. */
        RETRY_ON_EINTR(ret, read(s, &tid, 1));
        //notify_gdb_of_libraries();
    }
    close(s);
 }

 wait(NULL);
 kill(getpid(),SIGKILL);
}

我从android源码中获取它(因为android.git.kernel.org已关闭而无法插入链接),但我不确定它将在未来的Android版本中发挥作用

答案 1 :(得分:0)

默认情况下,您的应用程序不应自动重启。通常人们必须注册这种事情,例如通过AlarmManager / keep alives。

您是否在服务中提供服务?