android Programming Glossary: sourcedir
How to get the file *.apk location in Android device http://stackoverflow.com/questions/4635448/how-to-get-the-file-apk-location-in-android-device PackageManager.getInstalledApplications will give you a list of the installed applications and ApplicationInfo.sourceDir is the path to the .apk file. PackageManager pm getPackageManager for ApplicationInfo app pm.getInstalledApplications 0.. pm getPackageManager for ApplicationInfo app pm.getInstalledApplications 0 Log.d PackageList package app.packageName sourceDir app.sourceDir Outputs something like this package com.tmobile.themechooser sourceDir system app ThemeChooser.apk package.. for ApplicationInfo app pm.getInstalledApplications 0 Log.d PackageList package app.packageName sourceDir app.sourceDir Outputs something like this package com.tmobile.themechooser sourceDir system app ThemeChooser.apk package com.tmobile.thememanager..
|