Setting primary color for Android Wear app -
i creating android wear app , trying set it's primary color. create , set theme same way mobile app. every attribute changed correctly except primary color. default teal color android uses. using same theme on companion app , works there. there missing done differently in wear? there override setting? i have tried changing parent theme material or compact.app. android manifest: <application android:name="com.turndapage.navmedia.app" android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:theme="@style/theme.nav"> styles.xml <resources> <style name="theme.nav" parent="@android:style/theme.devicedefault"> <!-- app branding color app bar --> <item name="colorprimary">@color/primary</item> <!-- darker variant status bar , contextual app bars --> <item name="c...