So, disappointingly, the development of the roboguice library exceeded its documentation . There is no RoboApplication class in the new library.
Instead, you should delete this file and create a roboguice.xml file in your values ββthat points to your custom robo module:
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="roboguice_modules"> <item>com.mypackage.MyModule</item> </string-array> </resources>
Also, if you used AbstractAndroidModule or RoboModule for your module code, now it is called AbstractModule.
Jasonofffarth
source share