c# - Getting the services/receivers of an Android App -
for example: please take @ app: disable service
i trying figure out how find receivers/services of apps , disable them.
things i've tried far:
foreach (var item in packagemanager.getinstalledapplications (new android.content.pm.packageinfoflags())) { var context = createpackagecontext( item.packagename, packagecontextflags.ignoresecurity); console.writeline(context.packagename); // contex.packagemanager.getreceiverinfo() // contex.packagemanager.queryintentservices } i'm able packages confused on getting services/intent.
thanks.
Comments
Post a Comment