Created
December 7, 2014 15:59
-
-
Save JorgeCastilloPrz/94c4b3196a075a7bdba1 to your computer and use it in GitHub Desktop.
MainActivity injection
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by jorge on 3/17/14. | |
*/ | |
public class MainActivity extends InjectedActivity { | |
@Inject | |
GoogleApiClient mGoogleApiClient; | |
@Inject | |
LocationController mLocationController; | |
@Inject | |
AbstractFontFactory fontFactory; | |
private ViewPagerAdapter mPagerAdapter; | |
private ActionBarDrawerToggle mDrawerToggle; | |
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.main_activity); | |
} | |
{...} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment