When i take a screenshot of my app (Material Design with Elevations), the shadow (elevation) is not in the saved screenshot-file. I try it with a real Device (Nexus 5) and with the google emulator. The screenshots looks fine but the shadows are not included.
i captured the screenshots with solo AND screencap (adb shell).
anybody a idea? thank you
EDIT: Manifest (Part):
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.package.name"
android:installLocation="auto"
android:versionCode="123"
android:versionName="1.23" >
<supports-screens android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true"/>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />
<uses-permission android:name="android.permission.INTERNET" />
<!-- ... -->
<application
android:name="MyApplication"
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:vmSafeMode="true"
android:theme="@style/AppTheme">
<!-- definition of receivers -->
<!-- definition of activities -->
</application>
</manifest>