Is it possible to get any information about the package or the application from the apk file without installing it in the Android environment?
Check out this method from the PackageManager class:
public PackageInfo getPackageArchiveInfo(String archiveFilePath, int flags)
Retrieve overall information about an application package defined in a package archive file
Might be helpful for you ;)