Wednesday, September 10, 2014

Android Wear : Solution for "You cannot combine swipe dismissal and the action bar"

While running my first application in android wear in eclipse. I have faced with the exception.

Exception:
android.util.AndroidRuntimeException: You cannot combine swipe dismissal and the action bar.
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2197)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2258)
at android.app.ActivityThread.access$800(ActivityThread.java:138)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1209)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5026)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:777)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:602)
at dalvik.system.NativeStart.main(Native Method)
Caused by: android.util.AndroidRuntimeException: You cannot combine swipe dismissal and the action bar.
Workaround Solution:
There should be some SDK issues where it is behaving weirdly.
So, I have tried by removing android:targetSdkVersion and change the android:minSdkVersion as shown below it worked out for me.

Change to  
<uses-sdk android:minSdkVersion="8" /> 

from 
<uses-sdk android:minSdkVersion="20" android:targetSdkVersion="20" />



No comments :

Post a Comment