Top "Android-annotations" questions

AndroidAnnotations is a compile time framework that helps writing simple and clean Android code that is easy to maintain.

java.lang.ArrayStoreException: sun.reflect.annotation.TypeNotPresentExceptionProxy after moving to Android Annotations v.2.7

I've got problems with building my project in eclipse after moving to Android Annotations v.2.7, at the same time maven …

android android-annotations
RequiresApi vs TargetApi android annotations

Whats the difference between RequiresApi and TargetApi? Sample in kotlin: @RequiresApi(api = Build.VERSION_CODES.M) @TargetApi(Build.VERSION_CODES.…

android android-support-library kotlin android-annotations
Dagger and Butter Knife vs. Android Annotations

I am evaluating Dependency Injection (DI) frameworks for an Android app. The top contenders are: Dagger (with Butter Knife) and …

android dependency-injection dagger android-annotations butterknife
Enums and android annotation intDef

I have an enum: public enum AppEnums { SERVICE_ERROR, CONNECTION_ERROR; } and I want to use it in an intDef …

java android enums android-support-library android-annotations
Spring Rest Template usage causes EOFException

I'm receiving java.io.EOFException's when using Spring REST template on Android. The stacktrace cause reads like this: Caused by: …

android spring eof android-annotations
Android Studio: Use AndroidAnnotations

So I wanted to try the new Android Studio and imported my eclipse projects (I generated a gradle build file). …

android intellij-idea android-annotations android-studio
AndroidAnnotations Nothing Generated, Empty Activity

I am trying to create a project using AndroidAnnotations in Android Studio. When I build and run the project, everything …

android gradle android-studio android-annotations
Can't make project in AndroidStudio with AndroidAnnotations library

I've looked at several discussions and blogs about compiling Android Applications in Android Studio with AndroidAnnotations framework specially this one, …

android gradle android-studio android-annotations
Cannot build Android project with Gradle (using Android Annotations)

I'm trying to use gradle to build my Android project wit Android Annotations but I still get errors. In my …

android gradle android-annotations
How to send x-www-form-urlencoded in a body of POST request using android annotations and resttemplate

my interface looks as follows: @Rest(rootUrl = "https://myurl.com", converters = { GsonHttpMessageConverter.class }) public interface CommunicatonInterface { @Get("/tables/login") public …

java android spring resttemplate android-annotations