123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- android:versionCode="31" android:versionName="@string/build_revision" package="org.yaxim.bruno">
- <uses-sdk android:targetSdkVersion="17" android:minSdkVersion="7"/>
- <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
- <uses-permission android:name="android.permission.INTERNET" />
- <uses-permission android:name="android.permission.NFC" />
- <uses-permission android:name="android.permission.VIBRATE" />
- <uses-permission android:name="android.permission.WAKE_LOCK" />
- <application android:icon="@drawable/icon"
- android:name=".YaximApplication"
- android:theme="@style/YaximDarkTheme"
- android:supportsRtl="true"
- android:label="@string/app_name">
- <activity android:name=".MainWindow" android:label="@string/app_name"
- android:launchMode="singleTask"
- android:theme="@style/PinkTheme"
- android:clearTaskOnLaunch="true"
- android:configChanges="orientation|keyboardHidden|screenSize">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- <intent-filter android:icon="@drawable/icon" android:label="@string/app_name">
- <action android:name="android.intent.action.SEND"></action>
- <category android:name="android.intent.category.DEFAULT"></category>
- <data android:mimeType="text/*"></data>
- </intent-filter>
- <intent-filter android:icon="@drawable/icon" android:label="@string/Menu_addFriend">
- <action android:name="android.intent.action.SENDTO" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:host="jabber" android:scheme="imto" />
- </intent-filter>
- <intent-filter android:icon="@drawable/icon" android:label="@string/Menu_addFriend">
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:scheme="xmpp" />
- </intent-filter>
- <intent-filter android:icon="@drawable/icon" android:label="@string/Menu_addFriend">
- <action android:name="android.intent.action.VIEW" />
- <category android:name="android.intent.category.DEFAULT" />
- <category android:name="android.intent.category.BROWSABLE" />
- <data android:scheme="https" android:host="yax.im" android:pathPrefix="/i/" />
- <data android:scheme="https" android:host="yax.im" android:pathPrefix="/j/" />
- <data android:scheme="https" android:host="conversations.im" android:pathPrefix="/i/" />
- <data android:scheme="https" android:host="conversations.im" android:pathPrefix="/j/" />
- </intent-filter>
- <intent-filter android:icon="@drawable/icon" android:label="@string/Menu_addFriend">
- <action android:name="android.nfc.action.NDEF_DISCOVERED"/>
- <category android:name="android.intent.category.DEFAULT"/>
- <data android:scheme="xmpp"/>
- </intent-filter>
- </activity>
- <activity android:name=".chat.ChatWindow" android:label="@string/app_name"
- android:parentActivityName=".MainWindow"
- android:theme="@style/PinkTheme"
- android:configChanges="orientation|keyboardHidden|screenSize"
- android:windowSoftInputMode="stateHidden">
- <meta-data
- android:name="android.support.PARENT_ACTIVITY"
- android:value=".MainWindow"/>
- </activity>
- <activity android:name=".chat.MUCChatWindow" android:label="@string/app_name"
- android:parentActivityName=".MainWindow"
- android:theme="@style/PinkTheme"
- android:configChanges="orientation|keyboardHidden|screenSize"
- android:windowSoftInputMode="stateHidden">
- <meta-data
- android:name="android.support.PARENT_ACTIVITY"
- android:value=".MainWindow"/>
- </activity>
- <activity android:name=".preferences.MainPrefs"
- android:label="@string/Menu_Settings">
- </activity>
- <activity android:name=".preferences.AccountPrefs"
- android:label="@string/account_settings_title">
- </activity>
- <service android:name=".service.XMPPService">
- <intent-filter>
- <action android:name="de.hdmstuttgart.yaxim.XMPPSERVICE" />
- </intent-filter>
- </service>
- <receiver android:name=".service.YaximBroadcastReceiver" android:exported="false">
- <intent-filter>
- <action android:name="android.intent.action.ACTION_SHUTDOWN" />
- <action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
- </intent-filter>
- <intent-filter>
- <action android:name="org.yaxim.bruno.ACTION_MESSAGE_HEARD" />
- <action android:name="org.yaxim.bruno.ACTION_MESSAGE_REPLY" />
- </intent-filter>
- </receiver>
- <provider android:name=".data.ChatProvider"
- android:exported="false"
- android:authorities="org.yaxim.bruno.provider.Chats" />
- <provider android:name=".data.RosterProvider"
- android:exported="false"
- android:authorities="org.yaxim.bruno.provider.Roster" />
- <activity android:name="de.duenndns.ssl.MemorizingActivity" />
- <meta-data android:name="com.google.android.gms.car.application"
- android:resource="@xml/automotive_app_desc" />
- </application>
- </manifest>
|