Roboguice brings the power and testability of using the Google Guice dependency injection framework to Android application development.
I'm working on a fairly large project that has a lot of injections. We're currently using a class that implements …
java dependency-injection guice roboguiceI'm working on an Android project and I would like to know any recommendations about what's a good architecture to …
android design-patterns architecture tdd roboguiceI have a bunch of classes that use e.g. an @Singleton annotation like so @Singleton public class ImageCache that …
android proguard roboguiceI'm using Robolectric to test Android. I'm running my tests via maven, e.g. mvn -Dtest=LogTest test If I …
java android maven-2 roboguice robolectricexample using roboguice. This code get ClassCastException. public class MainActivity extends RoboActivity{ @InjectView(R.id.text) TextView name; @InjectView(R.…
android roboguiceI'm debating using guice in an android project that is quite complex and has a lot of business logic. Guice …
android guice roboguiceI've been looking at the astroboy example code and documentation for RoboGuice 2, and I'm honestly stumped. I hope you all …
dependency-injection android-2.2-froyo roboguice robolectricI'm having issues finding a working example of using fragments + RoboGuice. The problem happens when you attempt to add/remove …
android fragment roboguice