Twidere-App-Android-Twitter.../twidere.extension.shortener.../src/main/AndroidManifest.xml

62 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
~ Twidere - Twitter client for Android
~
~ Copyright (C) 2012-2015 Mariotaku Lee <mariotaku.lee@gmail.com>
~
~ This program is free software: you can redistribute it and/or modify
~ it under the terms of the GNU General Public License as published by
~ the Free Software Foundation, either version 3 of the License, or
~ (at your option) any later version.
~
~ This program is distributed in the hope that it will be useful,
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
~ GNU General Public License for more details.
~
~ You should have received a copy of the GNU General Public License
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<manifest
package="org.mariotaku.twidere.extension.shortener.gist"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET"/>
<application
android:allowBackup="true"
android:fullBackupContent="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault"
tools:ignore="GoogleAppIndexingWarning">
<meta-data
android:name="org.mariotaku.twidere.extension"
android:value="true"/>
<activity
android:name=".SettingsActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.DeviceDefault.Dialog">
<intent-filter>
<action android:name="org.mariotaku.twidere.EXTENSION_SETTINGS"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<service
android:name=".GistStatusShortenerService"
android:permission="org.mariotaku.twidere.permission.SHORTEN_STATUS">
<intent-filter>
<action android:name="org.mariotaku.twidere.EXTENSION_SHORTEN_STATUS"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</service>
</application>
</manifest>