The following is the output of app dependencies: depend
+
| +
| | \
| +
| | \
| | \
| \
+
| +
| +
| \
| +
| \
+
+
| +
| \
\
As you can see, my library depends on support for lib 22.2.0. How can I make my project libraryuse 22.2.0 instead of 23.2.1. My application does not work 23.2.1. Is there a way to compile libraryseparately with the old version of the support library?
My dependencies look like this:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile project(':library')
compile 'org.jooq:joor:0.9.5'
}
user4423581
source
share