Jump to content
Sign in to follow this  
Mauro Botta

Delphi 13 - How can use Android Studio for Profiler / analize Delphi Application ?

Recommended Posts

6 hours ago, Mauro Botta said:

how can use Android Studio for Profiler / analize my Delphi FMX Application (Android) ?

Ensure that your AndroidManifest.template.xml has the debuggable attribute set to true, i.e.:

    <application
        android:debuggable="true"
        android:hardwareAccelerated="%hardwareAccelerated%"
        android:icon="%icon%"
        android:label="%label%"
        android:largeHeap="%largeHeap%"
        android:persistent="%persistent%"
        android:requestLegacyExternalStorage="true"
        android:resizeableActivity="true"
        android:restoreAnyVersion="%restoreAnyVersion%"
        android:theme="%theme%" >

(I do not know how else to set this)
 

In Android Studio you need to have a project open (because Android Studio is weird), even if it is a dummy, blank app. Then click View > Tool Windows > Profiler.

Click the + button on the left next to where it says "Sessions":

 

image.thumb.png.1d6f1021b279c1ff4b3b1d16b6e9aad9.png

 

..and select the running process. This is as far as I went. You might be able to work out more from there.

  • Like 1
  • Thanks 1

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×