Error in this line
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"></style>
each element must be defined between the open and close style tags. In your case they are outside. You must have
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:colorPrimary">@color/PrimaryColor</item> <item name="android:colorPrimaryDark">@color/PrimaryDarkColor</item> <item name="android:statusBarColor">@android:color/transparent</item> </style>
instead
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar"></style> <item name="android:colorPrimary">@color/PrimaryColor</item> <item name="android:colorPrimaryDark">@color/PrimaryDarkColor</item> <item name="android:statusBarColor">@android:color/transparent</item>
source share