You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
I'm using AA with ORMLite on all my applications. I miss an annotation to declare an ORMLIte DAO in my activites / services / beans.
I would like to have something like that :
@EActivity(R.layout.main)
public class MyActivity extends Activity {
@OrmLiteDao(model = User.class, helper = DatabaseHelper.class)
protected UserDao userDao;
}
I'm already working on it but I'd like to have your thoughts on the issue or some advices if you have any.