allow show when locked

This commit is contained in:
Alexey Kuznetsov 2017-04-10 14:45:32 +03:00
commit 0ff41ad927

View file

@ -25,6 +25,7 @@
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:showOnLockScreen="true"
android:theme="@style/RecThemeLight.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
@ -35,7 +36,8 @@
<activity
android:name=".activities.RecordingActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:launchMode="singleInstance" />
android:launchMode="singleInstance"
android:showOnLockScreen="true" />
</application>
</manifest>