Also, that last line will work fine with aar()
On Thu, Mar 13, 2014 at 4:26 PM, Perry Nguyen <[email protected]> wrote: > android-sdk-plugin doesn't automatically process transitive aar and apklib > dependencies; I don't remember the reason but I originally wrote it with > them disabled explicitly... > > > On Thu, Mar 13, 2014 at 4:11 PM, Bruno Conde <[email protected]>wrote: > >> Well, I solved my problem loading all of these: >> >> libraryDependencies += aar("com.github.chrisbanes.actionbarpulltorefresh" >> % "library" % "0.9.3") >> >> libraryDependencies += aar("com.github.chrisbanes.actionbarpulltorefresh" >> % "extra-abc" % "0.9.3") >> >> libraryDependencies += "com.github.castorflex.smoothprogressbar" % >> "library" % "0.2.0" artifacts(Artifact("library", "aar", "aar")) >> >> But shouldn't the dependencies load implicitly? >> >> >> On Thursday, March 13, 2014 11:02:55 PM UTC, Bruno Conde wrote: >>> >>> Nothing changed... the error is the same. >>> >>> It's not that "library" the "extra-abc" depends... >>> >>> On Thursday, March 13, 2014 10:55:05 PM UTC, Jim Fulton wrote: >>>> >>>> On Thu, Mar 13, 2014 at 6:40 PM, Bruno Conde <[email protected]> >>>> wrote: >>>> > Greetings, >>>> > >>>> > I'm trying to develop and android app in scala and for that I'm using >>>> the >>>> > android-sdk-plugin at https://github.com/pfn/android-sdk-plugin. >>>> > >>>> > I'm having some problems loading a specific aar dependency, more >>>> > specifically: >>>> > >>>> > libraryDependencies += aar("com.github.chrisbanes.actionbarpulltorefresh" >>>> % >>>> > "extra-abc" % "0.9.3") >>>> > >>>> > This library is fetched and SBT does not complain. When I try to >>>> compile, I >>>> > get compile errors because a package on a dependent library (called >>>> > "library") is missing: >>>> > >>>> > object library is not a member of package >>>> > uk.co.senab.actionbarpulltorefresh >>>> >>>> > [error] import >>>> > uk.co.senab.actionbarpulltorefresh.library.listeners.OnRefreshListener >>>> >>>> > >>>> ^ >>>> > Dependent library is: >>>> > "com.github.chrisbanes.actionbarpulltorefresh" % "library" % "0.9.3" >>>> >>>> libraryDependencies += "com.github.castorflex.smoothprogressbar" % >>>> "library" % "0.2.0" artifacts(Artifact("library", "aar", "aar")) >>>> >>>> Jim >>>> >>>> -- >>>> Jim Fulton >>>> http://www.linkedin.com/in/jimfulton >>>> >>> -- >> You received this message because you are subscribed to the Google Groups >> "scala-on-android" group. >> To unsubscribe from this group and stop receiving emails from it, send an >> email to [email protected]. >> For more options, visit https://groups.google.com/d/optout. >> > > -- You received this message because you are subscribed to the Google Groups "scala-on-android" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
