├── .gitignore ├── .project ├── AndroidManifest.xml ├── README.md ├── ic_launcher-web.png ├── jni ├── Android.mk ├── Application.mk └── helper.c ├── libs ├── arm64-v8a │ └── libhelper.so ├── armeabi-v7a │ └── libhelper.so ├── armeabi │ └── libhelper.so ├── mips │ └── libhelper.so ├── mips64 │ └── libhelper.so ├── x86 │ └── libhelper.so └── x86_64 │ └── libhelper.so ├── lint.xml ├── obj └── local │ ├── arm64-v8a │ ├── libhelper.so │ └── objs │ │ └── helper │ │ ├── helper.o │ │ ├── helper.o.d │ │ ├── main.o │ │ └── main.o.d │ ├── armeabi-v7a │ ├── libhelper.so │ └── objs │ │ └── helper │ │ ├── helper.o │ │ ├── helper.o.d │ │ ├── main.o │ │ └── main.o.d │ ├── armeabi │ ├── libhelper.so │ └── objs │ │ └── helper │ │ ├── helper.o │ │ ├── helper.o.d │ │ ├── main.o │ │ └── main.o.d │ ├── mips │ ├── libhelper.so │ └── objs │ │ └── helper │ │ ├── helper.o │ │ ├── helper.o.d │ │ ├── main.o │ │ └── main.o.d │ ├── mips64 │ ├── libhelper.so │ └── objs │ │ └── helper │ │ ├── helper.o │ │ ├── helper.o.d │ │ ├── main.o │ │ └── main.o.d │ ├── x86 │ ├── libhelper.so │ └── objs │ │ └── helper │ │ ├── helper.o │ │ ├── helper.o.d │ │ ├── main.o │ │ └── main.o.d │ └── x86_64 │ ├── libhelper.so │ └── objs │ └── helper │ ├── helper.o │ ├── helper.o.d │ ├── main.o │ └── main.o.d ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ ├── ic_launcher.png │ ├── ic_notification.jpg │ └── icon_set_up.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable-xxhdpi │ └── ic_launcher.png ├── layout │ ├── activity_main.xml │ ├── activity_set.xml │ └── item_phonenum_list.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml ├── values-w820dp │ └── dimens.xml └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── src └── com └── yyh ├── activity ├── MainActivity.java └── PhoneStatReceiver.java ├── fork └── NativeRuntime.java ├── service └── HostMonitor.java └── utils ├── App.java └── FileUtils.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/README.md -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/jni/Android.mk -------------------------------------------------------------------------------- /jni/Application.mk: -------------------------------------------------------------------------------- 1 | APP_ABI := all -------------------------------------------------------------------------------- /jni/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/jni/helper.c -------------------------------------------------------------------------------- /libs/arm64-v8a/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/arm64-v8a/libhelper.so -------------------------------------------------------------------------------- /libs/armeabi-v7a/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/armeabi-v7a/libhelper.so -------------------------------------------------------------------------------- /libs/armeabi/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/armeabi/libhelper.so -------------------------------------------------------------------------------- /libs/mips/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/mips/libhelper.so -------------------------------------------------------------------------------- /libs/mips64/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/mips64/libhelper.so -------------------------------------------------------------------------------- /libs/x86/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/x86/libhelper.so -------------------------------------------------------------------------------- /libs/x86_64/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/libs/x86_64/libhelper.so -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/lint.xml -------------------------------------------------------------------------------- /obj/local/arm64-v8a/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/arm64-v8a/libhelper.so -------------------------------------------------------------------------------- /obj/local/arm64-v8a/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/arm64-v8a/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/arm64-v8a/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/arm64-v8a/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/arm64-v8a/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/arm64-v8a/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/arm64-v8a/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/arm64-v8a/objs/helper/main.o.d -------------------------------------------------------------------------------- /obj/local/armeabi-v7a/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi-v7a/libhelper.so -------------------------------------------------------------------------------- /obj/local/armeabi-v7a/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi-v7a/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/armeabi-v7a/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi-v7a/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/armeabi-v7a/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi-v7a/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/armeabi-v7a/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi-v7a/objs/helper/main.o.d -------------------------------------------------------------------------------- /obj/local/armeabi/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi/libhelper.so -------------------------------------------------------------------------------- /obj/local/armeabi/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/armeabi/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/armeabi/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/armeabi/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/armeabi/objs/helper/main.o.d -------------------------------------------------------------------------------- /obj/local/mips/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips/libhelper.so -------------------------------------------------------------------------------- /obj/local/mips/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/mips/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/mips/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/mips/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips/objs/helper/main.o.d -------------------------------------------------------------------------------- /obj/local/mips64/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips64/libhelper.so -------------------------------------------------------------------------------- /obj/local/mips64/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips64/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/mips64/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips64/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/mips64/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips64/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/mips64/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/mips64/objs/helper/main.o.d -------------------------------------------------------------------------------- /obj/local/x86/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86/libhelper.so -------------------------------------------------------------------------------- /obj/local/x86/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/x86/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/x86/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/x86/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86/objs/helper/main.o.d -------------------------------------------------------------------------------- /obj/local/x86_64/libhelper.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86_64/libhelper.so -------------------------------------------------------------------------------- /obj/local/x86_64/objs/helper/helper.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86_64/objs/helper/helper.o -------------------------------------------------------------------------------- /obj/local/x86_64/objs/helper/helper.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86_64/objs/helper/helper.o.d -------------------------------------------------------------------------------- /obj/local/x86_64/objs/helper/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86_64/objs/helper/main.o -------------------------------------------------------------------------------- /obj/local/x86_64/objs/helper/main.o.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/obj/local/x86_64/objs/helper/main.o.d -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/project.properties -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_notification.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-hdpi/ic_notification.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/icon_set_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-hdpi/icon_set_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/layout/activity_main.xml -------------------------------------------------------------------------------- /res/layout/activity_set.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/layout/activity_set.xml -------------------------------------------------------------------------------- /res/layout/item_phonenum_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/layout/item_phonenum_list.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/yyh/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/src/com/yyh/activity/MainActivity.java -------------------------------------------------------------------------------- /src/com/yyh/activity/PhoneStatReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/src/com/yyh/activity/PhoneStatReceiver.java -------------------------------------------------------------------------------- /src/com/yyh/fork/NativeRuntime.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/src/com/yyh/fork/NativeRuntime.java -------------------------------------------------------------------------------- /src/com/yyh/service/HostMonitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/src/com/yyh/service/HostMonitor.java -------------------------------------------------------------------------------- /src/com/yyh/utils/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/src/com/yyh/utils/App.java -------------------------------------------------------------------------------- /src/com/yyh/utils/FileUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dearHaoGeGe/DaemonProcess/HEAD/src/com/yyh/utils/FileUtils.java --------------------------------------------------------------------------------