Bernhard Miklautz
1e54fdb5c2
android: fix a regression with remote program ( #4091 )
...
Commit 54a7d799d1
introduced a problem
where /app was used instead of /shell causing a black screen when remote
programs were used. The Android client doesn't support remote apps
therefore /app can't work. "Remote program" just sets the selected
program as shell to run.
2017-08-16 13:28:11 +02:00
Armin Novak
eb0bf411af
Do not add quotes to client hostname.
2017-08-16 11:31:33 +02:00
Armin Novak
8b9e3fa51e
Fixed use of reserved keywords for include guards.
2017-07-20 09:35:41 +02:00
Armin Novak
0490aeb018
Fixed clang malloc integer overflow warnings.
2017-07-20 09:29:48 +02:00
Armin Novak
6b3048b85b
Cleaned up database access code.
2017-03-13 12:05:49 +01:00
Armin Novak
f5e6aebb31
Using plain HTTP links for freerdp.com
2017-03-13 09:21:07 +01:00
Armin Novak
5546da2932
Readded css for phone layout.
2017-03-09 15:08:01 +01:00
Armin Novak
5f3dbc3784
Fixed help pages.
2017-03-09 13:55:19 +01:00
Armin Novak
2e9cb0f3ea
Fixed keyboard show/hide
2017-03-09 13:55:05 +01:00
Armin Novak
91be74e0d6
Removed unused strings, translated missing ones.
2017-03-09 11:07:59 +01:00
Armin Novak
6f57b090a6
Validating advanced and screen settings.
2017-03-09 11:07:59 +01:00
Armin Novak
d8858cf19f
Validating advanced settings before use.
2017-03-09 11:07:59 +01:00
Armin Novak
a595602953
Updated gradle and config printout.
2017-03-09 11:07:59 +01:00
Armin Novak
ed5b81a807
CSS to external file, fixed license linebreaks.
2017-03-09 10:01:36 +01:00
Armin Novak
589114593c
Async transport removed, H264 check for support.
2017-03-07 16:09:24 +01:00
Armin Novak
f866d60c2c
Validating log level.
2017-03-07 15:08:24 +01:00
Armin Novak
ade4bfcd3c
Fixed issues with database upgrade code.
2017-03-07 14:50:52 +01:00
Armin Novak
1f1dae79e6
Fixed cursor empty checks.
2017-03-07 13:17:37 +01:00
Armin Novak
03f3f061b7
Fixed disconnect handling.
2017-03-03 12:06:37 +01:00
Armin Novak
e1cfec1f6d
Added missing translations for color enumeration.
2017-03-02 13:06:10 +01:00
Armin Novak
93cd763815
Removed https links in MPL and apache license.
2017-03-02 12:48:13 +01:00
Armin Novak
c204fbe409
Added client name reset if empty.
2017-03-02 10:27:13 +01:00
Armin Novak
345cbddba7
Updated intent filter to open RDP files.
2017-03-02 08:49:50 +01:00
Armin Novak
05f6dac204
Moved construction to onCreate.
2017-02-24 11:30:36 +01:00
Armin Novak
eeee92a309
All EditTextPreferences are now single lined.
2017-02-24 09:48:40 +01:00
Armin Novak
37e9db4b04
Added signing configuration.
2017-02-24 09:29:26 +01:00
Armin Novak
65f761a587
Use HTTPS links in about.
2017-02-23 15:20:19 +01:00
Armin Novak
b938bb483a
Updated gradle build, allow to configure from file.
2017-02-23 15:06:11 +01:00
Armin Novak
ae09ab79ae
Updated about pages.
2017-02-23 13:24:00 +01:00
Armin Novak
f47bde3df2
Added a H264 availability check.
2017-02-23 12:31:08 +01:00
Armin Novak
5d8a9f2ff3
Fixed asset loading.
2017-02-23 10:51:21 +01:00
Armin Novak
71294554bd
Updated licensing information and data protection clause.
2017-02-22 20:11:20 +01:00
Armin Novak
70e43e682e
Refactored application settings, added client hostname ( #1343 )
2017-02-22 18:04:43 +01:00
Armin Novak
91c6d0db20
Refactored db upgrade code.
2017-02-22 16:08:43 +01:00
Armin Novak
a8bf7afac3
Using AppCompatActivity.
2017-02-22 16:08:43 +01:00
Armin Novak
57eea83c2a
Deactivated async_transport #3134
2017-02-22 16:08:43 +01:00
Armin Novak
2a934b7d15
Reformatted using AndroidStudio coding style.
2017-02-22 16:08:43 +01:00
Armin Novak
553d7827ec
Updated gradle.
2017-02-22 16:08:43 +01:00
Armin Novak
6d93b92d64
Updated library names after change in #3704
2017-01-16 18:08:07 +01:00
Armin Novak
77a8821b1b
Updated gradle settings.
2017-01-16 16:40:06 +01:00
Armin Novak
548927eb2e
Renamed OpenSSL library
...
To avoid collisions with system provided OpenSSL use
a different (unique) library name for android builds.
2017-01-16 16:39:06 +01:00
Iordan Iordanov
f4b08d8347
The first parameter of LibFreeRDP.OnRemoteClipboardChanged() was
...
changed from int to long, however, the changed method signature was not
reflected in android_cliprdr.c.
As a result, a copy in the remote session would result in the
java.lang.NoSuchMethodError below:
01-08 20:24:16.620 8234 8865 E AndroidRuntime: FATAL EXCEPTION: Thread-11495
01-08 20:24:16.620 8234 8865 E AndroidRuntime: Process: com.iiordanov.aRDP, PID: 8234
01-08 20:24:16.620 8234 8865 E AndroidRuntime: java.lang.NoSuchMethodError: no static method "Lcom/freerdp/freerdpcore/services/LibFreeRDP;.OnRemoteClipboardChanged(ILjava/lang/String;)V"
01-08 20:51:44.737 11025 11439 F libc : Fatal signal 11 (SIGSEGV), code 1, fault addr 0xa0 in tid 11439 (Thread-6)
01-08 20:53:14.887 11717 11717 E AndroidRuntime: FATAL EXCEPTION: main
This commit fixes the bug.
2017-01-10 17:17:44 -05:00
Norbert Federa
f71b6b46e8
fix string format specifiers
...
- fixed invalid, missing or additional arguments
- removed all type casts from arguments
- added missing (void*) typecasts for %p arguments
- use inttypes defines where appropriate
2016-12-16 13:48:43 +01:00
Armin Novak
0906483f1c
Added 64bit support to API.
2016-12-02 12:04:53 +01:00
Armin Novak
ea41084281
Updated build tools and readme for android.
2016-12-02 12:04:53 +01:00
Norbert Federa
c6e6b44143
countless WLog/printf format specifier fixes
2016-11-25 17:06:25 +01:00
Martin Fleisz
0febd9c7cd
Merge pull request #3563 from akallabeth/android_update
...
Android fix warnings, visibility and formatting
2016-11-24 12:59:30 +01:00
Armin Novak
43755c28eb
Android: fixed visibility, reformatted
2016-10-17 12:20:06 +02:00
Armin Novak
8ef1808191
Adjusted non X11 implementations.
2016-10-14 12:50:04 +02:00
Armin Novak
649d270ccd
Fixed GDI_RGN->null initialization.
2016-10-06 13:43:15 +02:00