Reputation: 489
How can I change it so that android uses a light theme?
Upvotes: 2
Views: 1984
Reputation: 1776
Build your project and then copy <app>/build/android/AndroidManifest.xml
to <app>/platform/android/AndroidManifest.xml
and add the theme in.
http://developer.android.com/guide/topics/ui/themes.html#ApplyATheme
Precisely:
<application android:theme="@android:style/Theme.Light">
Upvotes: 4