I am having trouble with Android Studio throwing an error in my styles.xml about unresolved symbol "Theme". The error is throw where I have my AppBaseTheme defined as below.
<style name="AppBaseTheme" parent="Theme.AppCompat.NoActionBar">
This only started after I upgrade from com.android.tools.build:gradle:3.1.3 to 3.1.4. If I revert back to 3.1.3, it works but it then complains and says i should upgrade to 3.1.4.
This one works...
classpath 'com.android.tools.build:gradle:3.1.3'
This one does NOT work
classpath 'com.android.tools.build:gradle:3.1.4'
What should I do? I've tried restarting, doing an Invalidate Cache and Restart, etc. Nothing seems to work.