2013-01-29 15:59:58 +04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:installLocation="auto"
|
|
|
|
package="com.freerdp.afreerdp"
|
2013-11-08 16:15:04 +04:00
|
|
|
android:versionCode="@ANDROID_APP_VERSION@"
|
2013-04-23 19:58:37 +04:00
|
|
|
android:versionName="@GIT_REVISION@" >
|
2013-01-29 15:59:58 +04:00
|
|
|
|
2013-11-08 16:15:04 +04:00
|
|
|
<uses-sdk
|
|
|
|
android:targetSdkVersion="@ANDROID_APP_TARGET_SDK@"
|
|
|
|
android:minSdkVersion="@ANDROID_APP_MIN_SDK@"/>
|
|
|
|
|
|
|
|
<supports-screens
|
|
|
|
android:anyDensity="true"
|
|
|
|
android:smallScreens="true"
|
|
|
|
android:normalScreens="true"
|
|
|
|
android:largeScreens="true"
|
|
|
|
android:xlargeScreens="true" />
|
2013-01-29 15:59:58 +04:00
|
|
|
|
2013-02-14 13:53:12 +04:00
|
|
|
<application android:name="com.freerdp.afreerdp.application.GlobalApp"
|
2013-01-29 15:59:58 +04:00
|
|
|
android:label="aFreeRDP"
|
2013-11-08 15:51:01 +04:00
|
|
|
android:debuggable="@ANDROID_DEBUG_ENABLE@"
|
2013-01-29 15:59:58 +04:00
|
|
|
android:icon="@drawable/icon_launcher_freerdp" >
|
|
|
|
|
|
|
|
<!-- Main activity -->
|
2013-02-18 18:00:55 +04:00
|
|
|
<activity android:name="com.freerdp.freerdpcore.presentation.HomeActivity"
|
2013-01-29 15:59:58 +04:00
|
|
|
android:label="@string/app_title"
|
|
|
|
android:theme="@style/Theme.Main"
|
|
|
|
android:alwaysRetainTaskState="true"
|
|
|
|
>
|
|
|
|
<intent-filter android:label="@string/app_title">
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
|
|
</intent-filter>
|
2013-03-10 15:51:36 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2013-03-19 17:29:11 +04:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2013-04-09 22:51:48 +04:00
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.rdp" />
|
|
|
|
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.rdp" />
|
2013-03-19 20:40:29 +04:00
|
|
|
<data android:mimeType="*/*" />
|
2013-03-10 15:51:36 +04:00
|
|
|
</intent-filter>
|
2013-01-29 15:59:58 +04:00
|
|
|
</activity>
|
|
|
|
|
2013-02-20 14:06:03 +04:00
|
|
|
<!-- Session request handler activity - used for search and internally to start sessions -->
|
|
|
|
<!-- This should actually be defined in FreeRDPCore lib but Android manifest merging will -->
|
|
|
|
<!-- append the libs manifest to the apps manifest and therefore aliasing is not possible -->
|
|
|
|
<activity android:name="com.freerdp.freerdpcore.services.SessionRequestHandlerActivity"
|
|
|
|
android:theme="@android:style/Theme.NoDisplay"
|
|
|
|
android:noHistory="true"
|
|
|
|
android:excludeFromRecents="true">
|
2013-02-26 16:04:23 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN"/>
|
2013-04-09 22:51:48 +04:00
|
|
|
</intent-filter>
|
2013-02-20 14:06:03 +04:00
|
|
|
</activity>
|
|
|
|
|
2013-02-26 16:04:23 +04:00
|
|
|
<activity-alias android:name=".services.SessionRequestHandlerActivity"
|
|
|
|
android:targetActivity="com.freerdp.freerdpcore.services.SessionRequestHandlerActivity">
|
2013-02-20 14:06:03 +04:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable" />
|
2013-02-26 16:04:23 +04:00
|
|
|
</activity-alias>
|
2013-02-20 14:06:03 +04:00
|
|
|
|
|
|
|
<provider android:name="com.freerdp.freerdpcore.services.FreeRDPSuggestionProvider"
|
|
|
|
android:authorities="com.freerdp.afreerdp.services.freerdpsuggestionprovider"
|
|
|
|
>
|
|
|
|
</provider>
|
|
|
|
|
2013-01-29 15:59:58 +04:00
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|
2013-04-09 22:51:48 +04:00
|
|
|
|