Finally give up on UIL and set up the gradle project ourselves
This commit is contained in:
parent
fffae79c24
commit
1e9c6ccf2e
20
build.gradle
20
build.gradle
@ -12,9 +12,29 @@ apply plugin: 'android'
|
||||
dependencies {
|
||||
compile files('libs/android-support-v4.jar')
|
||||
compile project(':extern:AndroidPinning')
|
||||
compile project(':extern:UniversalImageLoader:library')
|
||||
compile project(':extern:MemorizingTrustManager')
|
||||
}
|
||||
|
||||
project(':extern:UniversalImageLoader:library') {
|
||||
apply plugin: 'android-library'
|
||||
|
||||
android {
|
||||
compileSdkVersion 16
|
||||
buildToolsVersion '19.0.1'
|
||||
|
||||
sourceSets {
|
||||
main {
|
||||
manifest.srcFile 'AndroidManifest.xml'
|
||||
java.srcDirs = ['src']
|
||||
resources.srcDirs = ['src']
|
||||
aidl.srcDirs = ['src']
|
||||
renderscript.srcDirs = ['src']
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
android {
|
||||
compileSdkVersion 19
|
||||
buildToolsVersion "19.0.1"
|
||||
|
@ -1 +1 @@
|
||||
include ':extern:AndroidPinning', ':extern:UniversalImageLoader', ':extern:MemorizingTrustManager'
|
||||
include ':extern:AndroidPinning', ':extern:UniversalImageLoader:library', ':extern:MemorizingTrustManager'
|
||||
|
Loading…
x
Reference in New Issue
Block a user