I am working on an android project,on that project i am stuck on "when client send data into a remote database server then he or she have to use an unique no" so i decided to use phone mac address so that i can avoid duplication of id no,For now i am use
public void minInteger(View view){
minteger = minteger + 1;
display(minteger);
}
public void display(int number){
TextView displayInteger = (TextView)findViewById(R.id.randGe);
displayInteger.setText("Integer: "+number);
}
This app will use by few client like 20-30 peoples.