It would still be nice to be able to put my .so files in to a Maven repo and have a dependency like:
compile 'net.sqlcipher:sqlcipher:3.0.0:armeabi' // <-- note the classifier of "armeabi" (so Android Gradle plugin knows that it is a "armeabi" binary By supporting this, I would NOT have to commit binaries into my GIT repo. I could also share my binaries between projects. On Thu, Jan 23, 2014 at 4:09 PM, Mike Kulasinski < [email protected]> wrote: > Thanks will test it on Monday > On 23 Jan 2014 18:11, "Xavier Ducrohet" <[email protected]> wrote: > > I just pushed 0.8 to Maven Central. This fixes the issue of jniLibs not > being supported in library projects. > > > On Thu, Jan 23, 2014 at 7:52 AM, Moritz Post <[email protected]> wrote: > >> @Mike Kulasinski >> >> >>> I have a simple native libarary that sits in the Android-Libarary >>> project and I can't figure out how to add it to gradle, because simple move >>> *.so files to src/main/jniLibs does not work for me. >>> >> >> There seems to be a bug in the build system in regards to merging when >> using a library project. If you place your native .so files into the >> jniLibs folder of the main project the native libraries should be picked up. >> >> Greets >> Moritz >> >> >>> Thanks >>> >>> On Monday, January 20, 2014 7:32:20 PM UTC, Xavier Ducrohet wrote: >>>> >>>> No you don't need to split per ABI. >>>> >>>> You mention libraries. Libraries don't support flavors anyway, so when >>>> you publish an aar it's always a fat bundle with all ABIs. >>>> >>>> >>>> On Fri, Jan 17, 2014 at 1:21 PM, mwolfe <[email protected]> wrote: >>>> >>>>> Do we need a product flavor for each ABI? I would much rather bundle >>>>> all my ABI's in a single product flavor as it's a very small library. >>>>> >>>>> >>>>> On Wednesday, January 8, 2014 2:55:50 PM UTC-8, Xavier Ducrohet wrote: >>>>> >>>>>> Samples are at the bottom of this page: http://tools.android.com >>>>>> /tech-docs/new-build-system >>>>>> >>>>>> >>>>>> On Wed, Jan 8, 2014 at 4:24 PM, Johannes Kraemer <[email protected]>wrote: >>>>>> >>>>>>> Version 0.7.2 of what? >>>>>>> >>>>>>> Where can we find this sample? >>>>>>> >>>>>>> I'd love to use this new feature, but don't understand where do get >>>>>>> it. >>>>>>> >>>>>>> >>>>>>> On Friday, December 27, 2013 1:39:45 AM UTC, Xavier Ducrohet wrote: >>>>>>>> >>>>>>>> Version 0.7.2 was published on MavenCentral. >>>>>>>> >>>>>>>> You can put your prebuilts in src/main/jniLibs/... >>>>>>>> There's a sample called ndkJniLib that shows the expected folder >>>>>>>> structure in there. >>>>>>>> >>>>>>>> -- >>>>>>>> Xavier Ducrohet >>>>>>>> Android SDK Tech Lead >>>>>>>> Google Inc. >>>>>>>> http://developer.android.com | http://tools.android.com >>>>>>>> >>>>>>>> Please do not send me questions directly. Thanks! >>>>>>>> >>>>>>> -- >>>>>>> You received this message because you are subscribed to the Google >>>>>>> Groups "adt-dev" 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/groups/opt_out. >>>>>>> >>>>>> >>>>>> >>>>>> >>>>>> -- >>>>>> Xavier Ducrohet >>>>>> Android SDK Tech Lead >>>>>> Google Inc. >>>>>> http://developer.android.com | http://tools.android.com >>>>>> >>>>>> Please do not send me questions directly. Thanks! >>>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google >>>>> Groups "adt-dev" 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/groups/opt_out. >>>>> >>>> >>>> >>>> >>>> -- >>>> Xavier Ducrohet >>>> Android SDK Tech Lead >>>> Google Inc. >>>> http://developer.android.com | http://tools.android.com >>>> >>>> Please do not send me questions directly. Thanks! >>>> >>> -- >> You received this message because you are subscribed to the Google Groups >> "adt-dev" 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/groups/opt_out. >> > > > > -- > Xavier Ducrohet > Android SDK Tech Lead > Google Inc. > http://developer.android.com | http://tools.android.com > > Please do not send me questions directly. Thanks! > > -- > You received this message because you are subscribed to a topic in the > Google Groups "adt-dev" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/adt-dev/nQobKd2Gl_8/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > > -- > You received this message because you are subscribed to a topic in the > Google Groups "adt-dev" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/adt-dev/nQobKd2Gl_8/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "adt-dev" 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/groups/opt_out.
