I want to create a mini ORM(Object Relational Mapping)
for android if some one of you have used Hibernate which is also an ORM but not for mobile in which you can create Class to Table mapping by using annotations.
What i want to create my annotations in android and than read that class by reflection and create tables.
in standard java i am able to create my annotations and use it. but for android i could not found any way to create annotations in android This project using custom annotations but i could not found how.
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
These above Meta-Annotations
are available in standard java but not in android which help to create annotations
any help please