Merge branch 'audiorecorder-1.4.22'

This commit is contained in:
Alexey Kuznetsov 2017-04-10 14:45:36 +03:00
commit 609043348d
2 changed files with 5 additions and 3 deletions

View file

@ -8,8 +8,8 @@ android {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 23
versionCode 123
versionName "1.4.21"
versionCode 124
versionName "1.4.22"
}
signingConfigs {
release {

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>