Is there a way for my app to know the android:versionCode from AndroidManifest.xml or do I have to create a separate constant in one of my classes?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
I put this in my subclassed android.app.Application but you can use it anywhere you have a context. Just change getPackageManager() to context.getPackageManager().
|
||||
|
|
|
Yes, you can access this information via PackageManager.getPackageInfo Also, see details about versioning in the documentation |
|||
|
|
|
You can use |
|||
|
|