LilianaB
LilianaB
Hi I'll try later. The library that defines polygonStrokeWidth is called scanbot. Here are examples of the library usages https://github.com/doo/Scanbot-SDK-Examples Cheers.
I just tested with Gradle 2.14.1. I managed to create the .aar file but when I want to use it, it doesn't find the classes.
I declared the dependency as embedded in the gradle file ``` apply from: 'https://raw.githubusercontent.com/adwiv/android-fat-aar/master/fat-aar.gradle' dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile...
I have this public repo https://github.com/LilianaB/ScanApp The scanbotwrapper directory is the library that I want to pack with fat aar. I hope this works as an example.
Hi, I believe the pom is fine. Is your pom file similar to mine? 
I declared the embedded dependency as follow. ``` embedded ('io.scanbot:sdk-package-1:1.19.0') { transitive = true } ```
The generated pom file is in my previous post, sdk-base is defined as a dependency. I used the publish.gradle but I guess is not working because I am not able...
I believe it is not working for you either. To test it properly you have to create a separate project that uses the resulting scanbotwrapper.aar.
It works if I include the reference to the private maven repository that contains the scanbot library (including sdk-base). That means if I add this: ``` maven { url 'http://nexus.scanbot.io/nexus/content/repositories/releases/'...
Indeed when I use the fat .aar library in an external project the gradle fails. Any ideas on how to embed dependencies into the .aar file? I thought the fat-aar.gradle...