forked from oNaiPs/droidVncServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
33 changed files
with
287 additions
and
2,395 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
bin | ||
gen | ||
libs | ||
obj |
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 |
---|---|---|
@@ -1,49 +1,74 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.onaips.vnc" android:versionCode="56" android:versionName="1.0a3"> | ||
<uses-sdk android:minSdkVersion="5"/> | ||
|
||
<uses-permission android:name="android.permission.WRITE_SETTINGS"></uses-permission> | ||
|
||
<application android:label="droid VNC server" android:icon="@drawable/icon" | ||
android:name="MainApplication" android:debuggable="true"> | ||
<activity android:name=".MainActivity" android:launchMode="singleInstance" | ||
android:label="@string/app_name" android:icon="@drawable/icon"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
package="org.onaips.vnc" | ||
android:versionCode="56" | ||
android:versionName="1.0a3" > | ||
|
||
<uses-sdk android:minSdkVersion="5" /> | ||
|
||
<uses-permission android:name="android.permission.WRITE_SETTINGS" > | ||
</uses-permission> | ||
|
||
<application | ||
android:name="MainApplication" | ||
android:debuggable="true" | ||
android:icon="@drawable/icon" | ||
android:label="droid VNC server" > | ||
<activity | ||
android:name=".MainActivity" | ||
android:icon="@drawable/icon" | ||
android:label="@string/app_name" | ||
android:launchMode="singleInstance" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
|
||
<action android:name="org.onaips.vnc.ACTIVITY_UPDATE" /> | ||
</intent-filter> | ||
</activity> | ||
<activity | ||
android:name="preferences" | ||
android:label="Preferences" > | ||
</activity> | ||
<activity | ||
android:name="com.google.ads.AdActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" /> | ||
|
||
<service android:name=".ServerManager" > | ||
<intent-filter> | ||
<action android:name="org.onaips.vnc.ServerManager" > | ||
</action> | ||
</intent-filter> | ||
</service> | ||
|
||
<receiver android:name=".StartServiceAtBootReceiver" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.BOOT_COMPLETED" /> | ||
|
||
<category android:name="android.intent.category.HOME" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<service android:name="avncservice" > | ||
</service> | ||
</application> | ||
|
||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.INTERNET" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.GET_TASKS" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE" > | ||
</uses-permission> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" > | ||
</uses-permission> | ||
|
||
</intent-filter> | ||
</activity> | ||
<activity android:name="preferences" android:label="Preferences"></activity> | ||
<activity android:name="com.google.ads.AdActivity" | ||
android:configChanges="keyboard|keyboardHidden|orientation" /> | ||
|
||
<service android:name=".ServerManager"> | ||
<intent-filter> | ||
<action android:name="org.onaips.vnc.ServerManager"></action> | ||
</intent-filter> | ||
</service> | ||
|
||
|
||
<receiver android:name=".StartServiceAtBootReceiver"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.BOOT_COMPLETED" /> | ||
<category android:name="android.intent.category.HOME" /> | ||
</intent-filter> | ||
</receiver> | ||
|
||
<service android:name="avncservice"></service> | ||
</application><uses-permission android:name="android.permission.READ_FRAME_BUFFER"></uses-permission> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"></uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"></uses-permission> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission> | ||
<uses-permission android:name="android.permission.INTERNET"></uses-permission> | ||
<uses-permission android:name="android.permission.GET_TASKS"></uses-permission> | ||
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission> | ||
<uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission> | ||
|
||
</manifest> | ||
|
||
</manifest> |
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
- change tcp socket to unix socket | ||
- click on address field will iterate show interface addresses | ||
- map volume keys | ||
- custom key mapping | ||
- add MIPS and X86 to APP_ABI (and more) | ||
[ADD] GnuTLS support (already working on libvncserver) | ||
[ADD] Map volume keys | ||
[ADD] Custom key mapping | ||
[ADD] MIPS and X86 to APP_ABI (and more) | ||
[ADD] Key/Touch injection though WindowManagerService/Binder mechanism (looking for a aidl->cpp translator) | ||
|
||
[CHANGE] Tcp socket to unix socket | ||
|
||
[FIX] Click on address field will iterate show interface addresses |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.