blob: 6618d2bf62dd5c88ead8690fe6da33d20bd305ae [file] [log] [blame]
dependencies {
implementation 'com.example.libs:lib1:0.+'
api 'com.android.support:appcompat-v7:+'
compile files('lib1.jar')
compile files('lib2.jar', "lib3.aar")
implementation files('lib4.aar')
debugImplementation project(':javalib1')
releaseImplementation "some:lib:1.0",
files('lib5.jar'),
project(':lib3'),
fileTree(dir: 'libz', include: ['*.jar']),
[group: 'org.springframework', name: 'spring-core', version: '2.5']
api fileTree(dir: 'libs', include: ['*.jar'])
}