How to set the local cpp source path in Android studio for prebuild library











up vote
0
down vote

favorite












I created an App which includes our source code as a native lib (so-file). I'm able to step into it and everything works fine so far with this code.



This native lib links against another native lib which was pre-build on a different machine and which I copied into the jni-abi-folder. I have checked out the svn-repository of this so-file in a different folder parallel to my project and need to be able to debug also into it.



When I now do a break, I can see the method names in the callstack so I assume that the symbols can be loaded, but Android Studio doesn't know where to find the source files.



Under Visual Studio, when I did a break, I could specify the symbols in the symbol path and then an error was displaced that I should navigate to the corresponding source file. Then I only needed to navigate to the folder and it was working.



How can this be done with Android Studio - I have the newest version 3.2.1 installed.










share|improve this question
























  • No one an idea how to specify a source search path for external libraries in Android Studio (lldb maybe)?
    – user1768205
    Nov 26 at 7:24















up vote
0
down vote

favorite












I created an App which includes our source code as a native lib (so-file). I'm able to step into it and everything works fine so far with this code.



This native lib links against another native lib which was pre-build on a different machine and which I copied into the jni-abi-folder. I have checked out the svn-repository of this so-file in a different folder parallel to my project and need to be able to debug also into it.



When I now do a break, I can see the method names in the callstack so I assume that the symbols can be loaded, but Android Studio doesn't know where to find the source files.



Under Visual Studio, when I did a break, I could specify the symbols in the symbol path and then an error was displaced that I should navigate to the corresponding source file. Then I only needed to navigate to the folder and it was working.



How can this be done with Android Studio - I have the newest version 3.2.1 installed.










share|improve this question
























  • No one an idea how to specify a source search path for external libraries in Android Studio (lldb maybe)?
    – user1768205
    Nov 26 at 7:24













up vote
0
down vote

favorite









up vote
0
down vote

favorite











I created an App which includes our source code as a native lib (so-file). I'm able to step into it and everything works fine so far with this code.



This native lib links against another native lib which was pre-build on a different machine and which I copied into the jni-abi-folder. I have checked out the svn-repository of this so-file in a different folder parallel to my project and need to be able to debug also into it.



When I now do a break, I can see the method names in the callstack so I assume that the symbols can be loaded, but Android Studio doesn't know where to find the source files.



Under Visual Studio, when I did a break, I could specify the symbols in the symbol path and then an error was displaced that I should navigate to the corresponding source file. Then I only needed to navigate to the folder and it was working.



How can this be done with Android Studio - I have the newest version 3.2.1 installed.










share|improve this question















I created an App which includes our source code as a native lib (so-file). I'm able to step into it and everything works fine so far with this code.



This native lib links against another native lib which was pre-build on a different machine and which I copied into the jni-abi-folder. I have checked out the svn-repository of this so-file in a different folder parallel to my project and need to be able to debug also into it.



When I now do a break, I can see the method names in the callstack so I assume that the symbols can be loaded, but Android Studio doesn't know where to find the source files.



Under Visual Studio, when I did a break, I could specify the symbols in the symbol path and then an error was displaced that I should navigate to the corresponding source file. Then I only needed to navigate to the folder and it was working.



How can this be done with Android Studio - I have the newest version 3.2.1 installed.







android debugging native prebuild






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 19 at 9:50

























asked Nov 19 at 9:44









user1768205

64




64












  • No one an idea how to specify a source search path for external libraries in Android Studio (lldb maybe)?
    – user1768205
    Nov 26 at 7:24


















  • No one an idea how to specify a source search path for external libraries in Android Studio (lldb maybe)?
    – user1768205
    Nov 26 at 7:24
















No one an idea how to specify a source search path for external libraries in Android Studio (lldb maybe)?
– user1768205
Nov 26 at 7:24




No one an idea how to specify a source search path for external libraries in Android Studio (lldb maybe)?
– user1768205
Nov 26 at 7:24












1 Answer
1






active

oldest

votes

















up vote
0
down vote



accepted










I finally found the solution.




  1. I got a stripped version from my colleague, he basically gave me the version inside his apk which is stripped. Now he gave me directly the build version (I think it is located somewhere in the intermediate directory or so, just search for the name of the lib).

  2. Under RunEdit ConfigurationsDebuggerLLDB startup commands the original source directory can be mapped to the source directory on my computer which is different. To achieve this, enter "settings set target.source-map or-dir cur-dir"


There should be a way to find out the original source directory from the so file, but I don't know it right now.



I hope this can help somebody else






share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53371914%2fhow-to-set-the-local-cpp-source-path-in-android-studio-for-prebuild-library%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    0
    down vote



    accepted










    I finally found the solution.




    1. I got a stripped version from my colleague, he basically gave me the version inside his apk which is stripped. Now he gave me directly the build version (I think it is located somewhere in the intermediate directory or so, just search for the name of the lib).

    2. Under RunEdit ConfigurationsDebuggerLLDB startup commands the original source directory can be mapped to the source directory on my computer which is different. To achieve this, enter "settings set target.source-map or-dir cur-dir"


    There should be a way to find out the original source directory from the so file, but I don't know it right now.



    I hope this can help somebody else






    share|improve this answer

























      up vote
      0
      down vote



      accepted










      I finally found the solution.




      1. I got a stripped version from my colleague, he basically gave me the version inside his apk which is stripped. Now he gave me directly the build version (I think it is located somewhere in the intermediate directory or so, just search for the name of the lib).

      2. Under RunEdit ConfigurationsDebuggerLLDB startup commands the original source directory can be mapped to the source directory on my computer which is different. To achieve this, enter "settings set target.source-map or-dir cur-dir"


      There should be a way to find out the original source directory from the so file, but I don't know it right now.



      I hope this can help somebody else






      share|improve this answer























        up vote
        0
        down vote



        accepted







        up vote
        0
        down vote



        accepted






        I finally found the solution.




        1. I got a stripped version from my colleague, he basically gave me the version inside his apk which is stripped. Now he gave me directly the build version (I think it is located somewhere in the intermediate directory or so, just search for the name of the lib).

        2. Under RunEdit ConfigurationsDebuggerLLDB startup commands the original source directory can be mapped to the source directory on my computer which is different. To achieve this, enter "settings set target.source-map or-dir cur-dir"


        There should be a way to find out the original source directory from the so file, but I don't know it right now.



        I hope this can help somebody else






        share|improve this answer












        I finally found the solution.




        1. I got a stripped version from my colleague, he basically gave me the version inside his apk which is stripped. Now he gave me directly the build version (I think it is located somewhere in the intermediate directory or so, just search for the name of the lib).

        2. Under RunEdit ConfigurationsDebuggerLLDB startup commands the original source directory can be mapped to the source directory on my computer which is different. To achieve this, enter "settings set target.source-map or-dir cur-dir"


        There should be a way to find out the original source directory from the so file, but I don't know it right now.



        I hope this can help somebody else







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 30 at 8:42









        user1768205

        64




        64






























            draft saved

            draft discarded




















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53371914%2fhow-to-set-the-local-cpp-source-path-in-android-studio-for-prebuild-library%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            If I really need a card on my start hand, how many mulligans make sense? [duplicate]

            Alcedinidae

            Can an atomic nucleus contain both particles and antiparticles? [duplicate]