目前正在研究android卸载应用的报告,是通过JNI来实现,通过判断/data/data/包名。。。。来卸载应用发生报告,网上资源很多,但是到了最后卸载应用后,跳到指定的网页这一步时,出错了,原因还不知道,指定的网页跳不过去。我用的是真机,求大神指点迷津:
附 C语言的代码:
#include "com_dm_hz_splash_SplashActivity.h"
#include
#include
#include
#define LOG_TAG "uninstalled_listen"
#define LOGD(...) android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS)
#define LOGI(...) android_log_print(ANDROID_LOG_INFO, LOG_TAG, __VA_ARGS)
JNIEXPORT void JNICALL Java_com_dm_hz_splash_SplashActivity_listenUninstalled
(JNIEnv * env, jobject obj){
int state = fork();
if(state > 0) {
LOGI("parent process..");
} else if(state == 0) {
LOGI("sub process..");
int flag = 1;
while(flag) {
sleep(1); // sleep方法中接收的单位是: 秒
LOGI("listening current app is uninstalled!!!");
FILE* file = fopen("/data/data/com.dm.hz", "r");
if(file == NULL) {
// 当前文件不存在, 程序被卸载了...
LOGI("app is uninstalled!!!");
flag = 0;
// 打开浏览器, 指定一个网址
// execlp方法是在linux系统下执行一个命令, 执行的是am命令, 最后一个NULL代表是命令结束.
execlp("am", "am", "start",
"-a", "android.intent.action.VIEW",
"-d", "http://www.baidu.com", NULL);
}
}
} else {
LOGI("error");
}
}