I\'m following a tutorial in HeadFirst Android development and encountered issues after adding: private ActionBarDrawerToggle drawerToggle;
The control was depre
First add this line to your manifest tag if you do not have yet:
xmlns:tools="http://schemas.android.com/tools"
Example:
Then Add this meta tag inside your application to overwrite you build tools version, in this case for example I choosed the version 25.3.1
... ..