Questions tagged [appmethod]

10 questions
5
votes
1 answer

What are Delphi / AppMethod BindSourceDB Scope Mappings and how do I use them?

I am using Delphi/AppMethod XE6, and adding a Firemonkey Mobile HD form to a blank project. On the form, I've dropped a BindSourceDB component and am viewing it in the Structure Window, There, I can see a ScopeMappings child property. I can also…
user3625874
3
votes
1 answer

Why are all the dialogs are using the "old" Android 2.x style?

I am currently using RAD Studio XE7 and just wondering why all the dialogs in my Android app are using the "old" 2.x style? And how to force my Android app to use the 4.x style in all the dialogs like date picker and MessageDlg? Using StyleBook and…
hlorenzo
  • 33
  • 4
1
vote
0 answers

Embarcadero Deployment manager puts android assets in wrong remote path

I am trying to deploy a mp3 file within a C++Builder android Project using Deployment Manager. Was trying to give a scheduled TNotification a specific sound. I tried to set Remote Path to assets\ in Deployment manager, but the mp3 file was…
1
vote
4 answers

Exception EOSError in module rtl220 bpl at 00050A4D

I have embarcadero radstudio xe8 on a windows 10 machine. Everything was working perfectly till about 2weeks ago. Everytime I try to start Delphi xe8 I get an error :"Exception EOSError in module rtl220.bpl at 00050A4D.System Error. Code 111. The…
Flexmatrix
  • 41
  • 1
  • 5
1
vote
0 answers

Playing remote audio file with TMediaPlayer - Object Pascal

I just started using Appmethod and I can't seem to figure out how to play a remote audio file using the audio player example they give. This is what I have tried: procedure TAudioPlayBackForm.btnPlayClick(Sender: TObject); begin …
austinh
  • 1,061
  • 6
  • 13
  • 34
0
votes
0 answers

Convert _di_Object to ILocalObject and object initialization

It is the first time I try to convert some Jni bridges. However I'm getting some troubles when converting some data types. The first one is related to this autogenerated header: Every time I try to recompile (Without the original .pas file, once I…
mauroaraujo
  • 332
  • 1
  • 10
  • 23
0
votes
1 answer

Bug with Banner->LoadAd(); function

I know I isn't exactly related to C++, but I'm having a little trouble when a call a function named LoadAd(). I've tried to use this function into a timer in OnTimer, in events like OnFormShow and OnFormCreate(Yes, I know it cant be in that…
mauroaraujo
  • 332
  • 1
  • 10
  • 23
0
votes
1 answer

How to create pointers for subclasses in C++?

I'm with a little trouble when pointing to a subclass of an API. Here is the original pascal code of what am I trying to do: Adapter:=TJBluetoothAdapter.JavaClass.getDefaultAdapter; …
mauroaraujo
  • 332
  • 1
  • 10
  • 23
0
votes
0 answers

Class Segmentation Fault 11 Delphi XE7 On Android

I am creating a very basic mobile application with an empty form and a TImage component with a PNG loaded in it. When I deploy the apk to a real device I am getting Class Segmentation Fault 11. The exception is raised by; memmove(Dest, Source,…
Deli Mawi
  • 1
  • 1
0
votes
1 answer

Acessing Application Lifecycle Interface with AppMethod

I am using the new Embarcadero AppMethod 1.14 to do some development for Android Devices (in C++), but I cannot for the life of me figure out how to gain access to the lifecycle events (doPAuse, doResume, etc). If anyone has any how-to's links,…