开发者

how to access /data/app,/proc on Android for normal App

开发者 https://www.devze.com 2023-02-28 01:00 出处:网络
Do you know how to access /data/app, /proc in the app? Without root the Andoird phone. I finkd Dr. Web can do this. http://download开发者_Python百科.drweb.com/android/?lng=en

Do you know how to access /data/app, /proc in the app? Without root the Andoird phone.

I finkd Dr. Web can do this. http://download开发者_Python百科.drweb.com/android/?lng=en How does it achieve this?


You will have read access to most of it, but not write access.

Runtime.getRuntime().exec("ls -l /proc");

will give you the folder contents, for example. What do you want to achieve?

Only system apps have access to /data/app, so unless you obtain such key from Google, you're out of luck (at least, for non-rooted phones).

To search for installed apps, your best bet is to use class PackageManager :

public abstract List<ApplicationInfo> getInstalledApplications (int flags)

Check the API HERE

PS: before the question comes, I don't have any clue on how to get (if ever possible) a system app key (at least, I don't know how to sign an apk that can be acceptable for the market with such key).

0

精彩评论

暂无评论...
验证码 换一张
取 消