teleposter/app/src/main/AndroidManifest.xml

38 lines
1.2 KiB
XML
Raw Normal View History

2016-11-23 22:27:22 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2017-07-14 19:20:05 +00:00
package="telegra.ph">
2016-11-23 22:27:22 +00:00
2016-12-21 11:26:31 +00:00
<uses-feature
android:name="android.hardware.touchscreen"
2017-07-14 19:20:05 +00:00
android:required="false" />
2016-11-26 10:37:27 +00:00
2017-07-14 19:20:05 +00:00
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
2016-11-23 22:27:22 +00:00
<application
2016-12-21 11:26:31 +00:00
android:allowBackup="false"
2017-07-14 19:20:05 +00:00
android:icon="@mipmap/ic_launcher"
2016-12-21 11:26:31 +00:00
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
2016-12-21 21:21:58 +00:00
<activity
android:name=".MainActivity"
android:configChanges="orientation|screenSize">
2016-11-23 22:27:22 +00:00
<intent-filter>
2017-07-14 19:20:05 +00:00
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
2016-11-23 22:27:22 +00:00
</intent-filter>
2016-11-24 19:53:28 +00:00
<intent-filter>
2017-07-14 19:20:05 +00:00
<action android:name="android.intent.action.VIEW" />
2016-12-21 11:26:31 +00:00
2017-07-14 19:20:05 +00:00
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
2016-12-21 11:26:31 +00:00
2017-07-14 19:20:05 +00:00
<data android:scheme="http" />
<data android:scheme="https" />
<data android:host="telegra.ph" />
2016-11-24 19:53:28 +00:00
</intent-filter>
2016-11-23 22:27:22 +00:00
</activity>
</application>
</manifest>