In my android library project I include many third-party libraries like
compile 'com.jakewharton:butterknife:8.0.1'
apt 'com.jakewharton:butterknife-compiler:8.0.1'
// Java8的时间库
compile 'com.jakewharton.threetenabp:threetenabp:1.0.3'
// RxJava
compile 'io.reactivex:rxjava:1.1.5'
compile 'io.reactivex:rxandroid:1.2.0'
when I used ./gradlew install
build arr not include this third library. So my other project can't reference this library.
but when I include Rosie project (https://github.com/Karumi/Rosie). I can auto include dagger
, butterknife
....
How can I do it?
I want my library to include these third-party libraries in my arr.What can i do?