Incremento automático no android ativo

Tentei usar o android ativo, tenho uma dúvida sobre como obter um campo de incremento automático em uma tabela?

Na documentação deles, eles forneceram um código como este

Item item = new Item();
item.remoteId = 1;
item.category = restaurants;
item.name = "Outback Steakhouse";
item.save();

Podemos fazer o incremento automático do campo remoteId?

questionAnswers(1)

yourAnswerToTheQuestion