Quantcast
Channel: Embarcadero Community - Embarcadero Community
Viewing all 1963 articles
Browse latest View live

Cannot locate SDK API level for Android

$
0
0

I have latest Android SDK installed with Android Studio 2.3, but when I try to add it to C++ Builder 10.2 the SDK API level field displays "Cannot locate SDK API level" and the android application cannot compile.

Does anybody have solution for that?


Foreground Service In FMX Android Development

$
0
0

Dear Sir,

I am trying to create a service application in FMX Android (Delphi XE10.1 Berlin Update 2) but when the host app is in foreground or in background everything works well. However, if I close the host app service stops as well.

I know that in android if the service is declared to run in the foreground, it's rarely killed. So is there a way to create a foreground service in FMX and if yes can you provide us an example ?

 

Thank you very much in advance for your answer.

Delphi 10.2 Tokyo: TAniIndicator not working on Android

$
0
0

Hi I am testing Delphi 10.2 Tokyo. It seems that TAniIndicator is not working on Android. All I did was drop a TAniIndicator on a form, enabled and aligned to center. Works on windows but shows nothing on Android. Is this a bug? Hank.

Update starter directly from berlin 10.1 to tokyo 10.2

$
0
0

I'd like to update starter directly from berlin 10.1 to tokyo 10.2 - I do not see a way to do so within the program IDE or external.  Downloading 10.2 just installs a second version and leaves the original alone.  (I hope I've missed the obvious)

 I have spent time installing components in 10.1 and do not want to loose that time investment.   I'm moving a program developed in D6 with lots of 3rd party and custom components. 

Delphi Seattle: TimageViewer Problem on OSX 10.12 Sierra

$
0
0

I'm working with Rad Studio 10 Seattle.
I'm having problems with a program that needs to run on Windows and OSX.
The program works on Windows and OS X 11.10 El Capitan.
The program behaves strangely on OSX 10:12 Sierra.
The program has an About window with a TimageViewer that displays the logo of the application.
The logo does not appear on OSX Sierra.
The main window has a TImageViewer that works properly on all systems.
I tried different ways of loading the logo without success.
I tried using Delphi Berlin without success, the problem persists.

Any support for Fast Reports?

$
0
0

Fast Reports is missing from GetiT.

Download from Fast Reports itself will not install in Rad Studio 10.2

Missing main page from IDE

$
0
0

Any idea where my main page of Rad Studio went? After starting Rad Studio for the third time today the main page is missing. Any idea how I can show the main page? Thanks. Peter    

Chinese characters in memo

$
0
0

good morning

I have a memo field in the firebird database and I use dbexpres tools with Delphi xe5 when I enter the data normally but after the run  the application the data is formatted in Chinese characters

  The picture is illustrated in this link

http://up.top4top.net/downloadf-362vvmhm1-rar.html 

 

I tried to hide those fields and re-create them in the database to no avail as the tables containing those fields and the result itself

And the odd thing is that I created another application but the memo fields appear normally and this is the application

http://up.top4top.net/downloadf-341w5ykb1-rar.html 

 

What is your solution?


I have just upgraded to Tokyo. Our Android project is having some major difficulties. Some advise please.

$
0
0

Hi   I have just upgraded to Tokyo. Our Android project is having some major difficulties, such as: 1. FormShow and FormActive is called while the splash screen is still showing 2. None of our effects, such as glow effects on buttons is working. A previous post regarding the AniIndicator not working was posted. I suspect it might be linked, as ours is also not working 3. The application has become VERY slow to a point that it is unusable. Although the same app work 100% running on iOS 32, Windows.   I would like some guidance to this issue, as I would like someone to confirm/give advice regarding my Android SDK settings. I would also like advice as to how to log an issue that will get urgent attention.   Much appreciated! Regards Stiaan Pretorius

INstalltion of 1.2 trial or free

$
0
0

Installation of 10.2 fails with provide serail number

 

Does any GetIt package install in 10.2?

$
0
0

Hi,

Don't know about you, after going through the usual hassle of full day remove older version and install the new one (why the heck can't we get a real upgrade?), now I see a few packages available in GetIt. Tried several, all download, compile and fail, with fatal errors.

For the first time I installed 10.2 Tokyo using the WebInstaller.

But again, most of the GetIt packages I'm supposed to use are not present, and the ones that are, fail.

What about you? Were you able to install, say, Abbrevia, Lockbox?

Why E1026 Cannot find 'MyForm.Windows.fmx' on fmx multi device project open or compile?

$
0
0

I have been creating multi-device firemonkey apps for a while now. I am trying to create a new multi-device project that brings together some existing (fmx) units and forms plus some newly created forms.

When I compile the project, compile is ok, but fails because it cannot find the E1026 FormName.Windows.fmx and FormName.Surface.fmx files. for each Form.

 

I checked the library path and environment vars and they look ok(?).

 

Later, when I reopen the project I get a similar error for the main form. I am DOA with this issue. I cannot find anything in the forums.

 

Any help would be appreciated. Thanks!

Is it possible to use opensles in rad studio

$
0
0

Hello,

Is it possible to use android opensles in rad studio? I couldn't find any samples or documents. Thanks.

Android LocationListener problem(?)

$
0
0
  1. void __fastcall TTulparForm::FormCreate(TObject *Sender)
  2. {
  3. Listener = new TListener();
  4. LocationManagerService = SharedActivityContext()->getSystemService(TJContext::JavaClass->LOCATION_SERVICE);
  5. FLocationManager = TJLocationManager::Wrap(((_di_ILocalObject)LocationManagerService)->GetObjectID());
  6. //isGPSEnabled = FLocationManager->isProviderEnabled (StringToJString("GPS_PROVIDER"));  //
  7. /*
  8.                 The following function gives this error while running.
  9.                 Can you help me. I could not understand this error ...
  10.                 "EJNIFatal with message 'Invoke error: method not found'
  11. */
  12. FLocationManager->requestLocationUpdates(StringToJString("GPS_PROVIDER"),1000,10,Listener);
  13. }
  14. ...
  15. ...
  16. ...
  17. class TListener : public TCppInterfacedObject
  18. {
  19. private:
  20. public:
  21. TListener();
  22. __fastcall ~TListener();
  23. void onLocationChanged(_di_JLocation location);
  24. void onProviderDisabled(Androidapi::Jni::Javatypes::_di_JString provider);
  25. void onProviderEnabled(Androidapi::Jni::Javatypes::_di_JString provider);
  26. void onStatusChanged(Androidapi::Jni::Javatypes::_di_JString provider, int status, Androidapi::Jni::Os::_di_JBundle extras);
  27. };
  28. TListener::TListener()
  29. {
  30. }
  31. __fastcall TListener::~TListener()
  32. {
  33. }
  34. void TListener::onLocationChanged(_di_JLocation location)
  35. {
  36. }
  37. void TListener::onProviderDisabled(Androidapi::Jni::Javatypes::_di_JString provider)
  38. {
  39. }
  40. void TListener::onProviderEnabled(Androidapi::Jni::Javatypes::_di_JString provider)
  41. {
  42. }
  43. void TListener::onStatusChanged(Androidapi::Jni::Javatypes::_di_JString provider, int status, Androidapi::Jni::Os::_di_JBundle extras)
  44. {
  45. }

XCode 8.3?

$
0
0

Hi,

As always, starts aligned like each previous releases... RAD Studio is out, and a few days later, the new XCode is there too.
Did anybody try XCode 8.3 with RadStudio 10.2?
Is anything broken?
Thanks for any clue.


My program crashes after the computer wakes from hibernation with "Exception EInvalidPointer"

$
0
0

I have compiled my program (myprog.exe) with 64-bit Delphi 10 Seattle.  It runs fine.  However, if the computer goes to sleep and then wakes up after hibernation it crashes with an error "Exception EInvalidPointer in module myprog.exe at 000000000000008E42. Invalid pointer operation."

Any help would be appreciated.

Thanks,

Delphi 10.1 (BigBen) release?

$
0
0

Hi,

Any release date for Delphi 10.1 (BigBen)?

Thanks,

Asaf

TNetHttpClient cann't change Content-type

$
0
0

Dear Sir, With the new control TNETHttpClient, I am not able to change its Content-Type from the default "application/x-www-form-urlencoded" to "application/soap+xml" or others  when posting xml request and monitoring by wireshark? I tested in delphi 10.1 seattle/Berlin and 10.2.

Could you help figure it out? Thank you very  much!

Very annoying problem.

$
0
0

Dear Sir/madam ,

Currently we are using a CodeGear™ C++Builder® 2007 R2 Version 11.0.2902.10471 in our development , we experience a strange but very annoying problem.

Our application runs under Windows 7 64bit OS . The problem arises when we use a VCL's TPageControl control  (bidi mode rtl) ,in that case the panel (with all of it's controls) moves to the random location of the form, leaving behind only a semi-refreshed marks. Touching the scrollbar or moving to the other page refreshes the form ,and fixes a UI mess.

We researched this issue and found that the cause of the problem is a TeamViewer program installed on the same computer our application runs. TeamViewer appears to be extremely important program for our clients and for that they disagree to uninstall it. 

Could you please help us to overcome this serious issue? Screenshots attached:

Screen1Screen2

 

 

Thank you,

Rodniansky Victor,

www.hargal.co.il

 

 

http://oi66.tinypic.com/2eclpbd.jpg

Problem locating Android SDK API level

$
0
0

I'm using C++ Builder 10.2 Tokyo and I want to configure it to use Android SDK installed with Android Studio 2.3. I follow the instructions as described in the docwiki, but when it comes to select the SDK API level, I have nothing to select from.

Here is what I see in the wizard:

Android tools configuration

Then my project doesn't compile.

Is there any solution for that or should I use the old versions of the Android SDK/NDK?

Thanks in advance for any help

 

Viewing all 1963 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>