2017-01-03 18:32:45 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
package="om.sstvencoder">
|
|
|
|
|
|
|
|
|
|
<uses-permission
|
2017-01-06 12:32:31 +01:00
|
|
|
android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
2017-01-03 18:32:45 +01:00
|
|
|
<uses-feature
|
|
|
|
|
android:name="android.hardware.camera"
|
|
|
|
|
android:required="false"/>
|
|
|
|
|
<application
|
|
|
|
|
android:allowBackup="false"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
|
<provider
|
|
|
|
|
android:name="android.support.v4.content.FileProvider"
|
|
|
|
|
android:authorities="om.sstvencoder"
|
|
|
|
|
android:exported="false"
|
|
|
|
|
android:grantUriPermissions="true">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
|
|
|
android:resource="@xml/paths"/>
|
|
|
|
|
</provider>
|
|
|
|
|
|
|
|
|
|
<activity
|
|
|
|
|
android:name=".MainActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:launchMode="singleTask">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
<intent-filter>
|
|
|
|
|
<action android:name="android.intent.action.SEND"/>
|
|
|
|
|
<category android:name="android.intent.category.DEFAULT"/>
|
|
|
|
|
<data android:mimeType="image/*"/>
|
|
|
|
|
</intent-filter>
|
|
|
|
|
</activity>
|
|
|
|
|
|
2017-01-05 10:00:25 +01:00
|
|
|
<activity
|
|
|
|
|
android:name=".EditTextActivity"
|
|
|
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
|
|
|
android:windowSoftInputMode="stateVisible|adjustPan"/>
|
2017-01-03 18:32:45 +01:00
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
</manifest>
|