-
-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes to make building the different remote desktop clients
more easily.
- v5.3.5
- v5.3.4
- v5.3.3
- v5.3.2
- v5.3.1
- v5.3.0
- v5.2.9
- v5.2.8
- v5.2.7
- v5.2.6
- v5.2.5
- v5.2.4
- v5.2.3
- v5.2.2
- v5.2.1
- v5.2.0
- v5.1.9
- v5.1.8
- v5.1.7
- v5.1.6
- v5.1.5
- v5.1.4
- v5.1.3
- v5.1.2
- v5.1.1
- v5.1.0
- v5.0.9
- v5.0.8
- v5.0.7
- v5.0.6
- v5.0.5
- v5.0.4
- v5.0.3
- v5.0.3_beta
- v5.0.2
- v5.0.2_beta
- v5.0.1
- v5.0.1_beta
- v5.0.0
- v5.0.0_beta
- v4.3.0
- v4.2.0
- v4.1.0
- v4.0.9
- v4.0.8
- v4.0.7
- v4.0.6
- v4.0.5
- v4.0.4
- v4.0.3
- v4.0.2
- v4.0.1
- v4.0.0
- v3.9.9
- v3.9.8
- v3.9.7
- v3.9.6
- v3.9.5
- v3.9.4
- v3.9.3
- v
- otherbinaries
- dependencies
- RELEASE-v5.7.9
- RELEASE-v5.7.8
- RELEASE-v5.7.7
- RELEASE-v5.7.6
- RELEASE-v5.7.5
- RELEASE-v5.7.4
- RELEASE-v5.7.3
- RELEASE-v5.7.2
- RELEASE-v5.7.1
- RELEASE-v5.7.0
- RELEASE-v5.6.9
- RELEASE-v5.6.8
- RELEASE-v5.6.7
- RELEASE-v5.6.6
- RELEASE-v5.6.5
- RELEASE-v5.6.4
- RELEASE-v5.6.3
- RELEASE-v5.6.1
- RELEASE-v5.6.0
- RELEASE-v5.5.9
- RELEASE-v5.5.8
- RELEASE-v5.5.7
- RELEASE-v5.4.8
- Opaque-v1.5.2
- Opaque-v1.5.1
- Opaque-v1.5.0
- Opaque-v1.4.9
- Opaque-v1.4.8
- Opaque-v1.4.7
- Opaque-v1.4.6
- Opaque-v1.4.5
- Opaque-v1.4.4
- Opaque-v1.4.3
- 5.2.1
- 5.2.0
- 5.1.9
Showing
69 changed files
with
2,522 additions
and
155 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ local.properties | |
obj/ | ||
libs/armeabi/ | ||
libs/armeabi-v7a | ||
libs/x86 | ||
gst-build |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
AndroidManifest.xml.bVNC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.iiordanov.aRDP" android:installLocation="auto" | ||
android:versionCode="3920" android:versionName="v3.9.2"> | ||
|
||
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10"></uses-sdk> | ||
<uses-permission android:name="android.permission.INTERNET"></uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> | ||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> | ||
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"></uses-permission> | ||
<uses-permission android:name="android.permission.RECORD_AUDIO"></uses-permission> | ||
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> | ||
<uses-feature android:name="android.hardware.microphone" android:required="false"/> | ||
|
||
<supports-screens | ||
android:xlargeScreens="true" | ||
android:largeScreens="true" | ||
android:normalScreens="true" | ||
android:smallScreens="true" | ||
android:anyDensity="true"/> | ||
|
||
<application android:icon="@drawable/icon" android:label="@string/ardp_app_name" android:allowBackup="false" android:debuggable="false" android:theme="@style/AppTheme" android:name="com.iiordanov.bVNC.App"> | ||
<activity android:label="@string/ardp_app_name" | ||
android:name="com.iiordanov.bVNC.aRDP" | ||
android:screenOrientation="unspecified" | ||
android:configChanges="orientation|keyboardHidden" | ||
android:windowSoftInputMode="stateHidden|adjustResize" | ||
android:theme="@android:style/Theme.DeviceDefault"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"></action> | ||
<category android:name="android.intent.category.LAUNCHER"></category> | ||
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER"></category> | ||
</intent-filter> | ||
</activity> | ||
<activity android:screenOrientation="unspecified" | ||
android:configChanges="orientation|keyboardHidden|keyboard" | ||
android:name="com.iiordanov.bVNC.RemoteCanvasActivity" | ||
android:windowSoftInputMode="stateHidden|adjustResize" | ||
android:theme="@android:style/Theme.DeviceDefault"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW"></action> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:scheme="rdp" /> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<data android:mimeType="application/vnd.rdp" /> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<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" /> | ||
<data android:scheme="http" android:host="*" android:pathPattern=".*\\.RDP" /> | ||
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.RDP" /> | ||
<data android:mimeType="*/*" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name="com.iiordanov.bVNC.ConnectionListActivity" | ||
android:label="@string/shortcut_label" | ||
android:windowSoftInputMode="stateHidden|adjustResize" | ||
android:theme="@android:style/Theme.DeviceDefault"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.CREATE_SHORTCUT" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name="com.iiordanov.pubkeygenerator.GeneratePubkeyActivity" | ||
android:configChanges="keyboardHidden|orientation" | ||
android:windowSoftInputMode="stateHidden|adjustResize" | ||
android:screenOrientation="unspecified" | ||
android:theme="@android:style/Theme.DeviceDefault"/> | ||
<uses-library android:required="false" android:name="com.sec.android.app.multiwindow"> </uses-library> | ||
<meta-data android:name="com.sec.android.support.multiwindow" | ||
android:value="true" /> | ||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" | ||
android:resource="@dimen/app_defaultsize_w" /> | ||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" | ||
android:resource="@dimen/app_defaultsize_h" /> | ||
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W" | ||
android:resource="@dimen/app_minimumsize_w" /> | ||
<meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" | ||
android:resource="@dimen/app_minimumsize_h" /> | ||
</application> | ||
</manifest> |
Oops, something went wrong.