It seems to me that you have a few different options...
It was hard to tell from your post, but if the application is only being distributed within the company by simply sharing the APK with your co-workers (not using the Play store), then it would be quite easy to simply modify the required information (ID/username/etc.) and generate a unique APK for everyone who wants the application. Or you could simply include a unique ID number and keep track of who has what ID whenever you generate each APK. Depending on the size of the company and how many people will use this application this solution could range from trivial to impossible. It is also fairly limiting, as any updates to the application would require you to generate a new APK for each person who has the application.
The second option is to use some sort of identification scheme to generate a unique ID for each application and then associate that ID with the users information. There are multiple options for generating a unique ID for each installation. Here is an brief article that describes a few approaches to solving this issue: http://android-developers.blogspot.com/2011/03/identifying-app-installations.html
The third option, which I believe is probably the best, is to not necessarily track the individual installations but to save the user information locally on the device and then use this information when the application connects with your web application. For example, you could request that the user enter an ID and a password when the android application starts and then use this information to verify the identify of the person when the android application connects to the web app; without the proper ID and password, the android application would not be able to access the web information, regardless of who installed it. There is a wealth of information on storing information locally within an application: http://developer.android.com/guide/topics/data/data-storage.html
EDIT
You can also access the Unique Android device ID (Is there a unique Android device ID?) although there are some issues with this as well.
You made me curious with your question so I wrote and tested a quick method that generates a unique ID. The method below will create a unique ID number by getting the serial number of the device and adding a random number between 0 and a million to the beginning and the end of the serial number. It then writes this unique number to a simple text file that you can access and use as the unique ID for the application. Furthermore, you can call this method at the beginning of your activity and, since the method checks to see if a text file is present, a unique ID will only be created once...
public static void CreateInstallationID()
{
File log = new File("sdcard/AppInstallID.txt");
/** Check to see if ID has already been created */
if (!log.exists())
{
try
{
/** Create file */
log.createNewFile();
BufferedWriter writer = new BufferedWriter(new FileWriter(log, true));
/** Create unique ID */
Random rand1 = new Random();
Random rand2 = new Random();
int iRandomNumber1 = rand1.nextInt((1000000 - 0) + 1) + 0;
int iRandomNumber2 = rand2.nextInt((1000000 - 0) + 1) + 0;
String sUniqueID = Integer.toString(iRandomNumber1) + Build.SERIAL +
Integer.toString(iRandomNumber2);
writer.append(sUniqueID);
writer.newLine();
writer.close();
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
As an example, when I executed this method I obtained a text file entitled "AppInstallID" that read 826225F12G4005DIE416255
. You could add or remove fields to the unique ID to increase or decrease complexity as you see fit.
EDIT 2
If you do something like this make sure you add the permission to write to external storage in your manifest file.
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />