I tried to use a custom theme but I always get the following error
AndroidManifest.xml:19: error: Error: No resource found that matches the given name (at 'theme' with value '@style/MyTheme').
I created a theme.xml under res/values folder. The theme.xml file has the following content
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style
name="MyTheme" parent="Theme.Holo.Light">
</style>
</resources>
My manifest file has
SetApplicationAttribute(android:theme, "style/MyTheme")
I also tried
SetApplicationAttribute(android:theme, "@android:style/MyTheme")
But both don't work. I am using platforms\android-21\android.jar in configure paths
AndroidManifest.xml:19: error: Error: No resource found that matches the given name (at 'theme' with value '@style/MyTheme').
I created a theme.xml under res/values folder. The theme.xml file has the following content
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style
name="MyTheme" parent="Theme.Holo.Light">
</style>
</resources>
My manifest file has
SetApplicationAttribute(android:theme, "style/MyTheme")
I also tried
SetApplicationAttribute(android:theme, "@android:style/MyTheme")
But both don't work. I am using platforms\android-21\android.jar in configure paths