- Making some changes in Android Contacts package
- Using
mm
(make) command to build this application
Because I have to change and build this app again and again, so I want to add a build time stamp in the Contacts.apk
to check the build time when we runn it in the handset.
As we know, when we run mm
command, the Android.mk
(makefile) in Contacts package will be called.
And now, we can get the build time using date
-macro.
But how we can write this build time stamp into a file that our application can read at runtime?
Any suggestions?