I have this configuration for my application.
<application android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light">
<activity android:name=".MainActivity"
android:label="@string/app_name">
I try to add the following…
<application android:label="@string/app_name" android:theme="@android:style/Theme.Holo.Light">
<activity android:name=".MainActivity"
android:label="@string/app_name"
android:uiOptions="splitActionBarWhenNarrow">
I get the following error….
[aapt] /home/jackie/Development/Code/personal/Android/ApaShooter/AndroidManifest.xml:9: error: No resource identifier found for attribute 'uiOptions' in package 'android'
More info….
using android.support.v4.app.FragmentActivity
I don’t think anyone could have answered this but in case…
My problem was related to the build.xml being built for a lower target.
I ran >android update project -p ./ -t 14
This seemed to fix it