I tried to use active android, i have a doubt about how could i achieve a auto-increment field in a table?
In their documentation they have provided a code like this
Item item = new Item();
item.remoteId = 1;
item.category = restaurants;
item.name = "Outback Steakhouse";
item.save();
Can we make the remoteId field auto-increment?