Skip to main content
This topic has been closed for replies.

1 reply

Inspiring
September 29, 2015

Hi,

To give you more details, I want to add the teamViewer library in my project in order to use it.

I downloaded the SDK here Android Screen sharing SDK Tutorial | TeamViewer Developers

I extracted the .jar file from the .aar file int the SDK provided by teamViewer, and added it in my android studio library project.

Next, I extracted the 'res' folder inside the .aar file, and added it to the compilation with platformoption.xml

For the compilation, I have this folder hierarchy:

/Android-ARM/

   - resTeamViewer/

       - ..... all resources files provided by teamViewer SDK

  - classes.jar

  - teamViewer.jar (extracted from the SDK file, in the .aar file)

and my platformOption.xml for android:

<?xml version="1.0" encoding="utf-8" ?>

<platform xmlns="http://ns.adobe.com/air/extension/19.0">

    <packagedDependencies>

        <packagedDependency>teamViewer.jar</packagedDependency>

    </packagedDependencies>

    <packagedResources>

       <packagedResource>

            <packageName>com.teamviewer.sdk.screensharing</packageName>

            <folderName>resTeamViewer</folderName>

        </packagedResource>

    </packagedResources>

</platform>

The ANE file compiles fine, and contains the teamViewer.jar and 'resTeamViewer' folder.

But, when I want to debug my application to test it, the compilation blocks at 57%, no error, and never finishes.

Is someone could help me ?

Inspiring
March 1, 2016

I'm still facing this issue.

Can someone from Adobe help me ?