if i crate an action:
action CommandsByFile /commands/file/{file_id:#}
the flollowing functon is created
public static Uri buildCommandsByFileUri(int fileId)
however it should be
public static Uri buildCommandsByFileUri(long fileId)
as most ids for android sqlite are assumed to be long
if i crate an action:
action CommandsByFile /commands/file/{file_id:#}
the flollowing functon is createdpublic static Uri buildCommandsByFileUri(int fileId)
however it should bepublic static Uri buildCommandsByFileUri(long fileId)
as most ids for android sqlite are assumed to be long