Finally give up on UIL and set up the gradle project ourselves

This commit is contained in:
Daniel Martí 2014-02-14 12:17:07 +01:00
parent fffae79c24
commit 1e9c6ccf2e
2 changed files with 21 additions and 1 deletions

View File

@ -12,9 +12,29 @@ apply plugin: 'android'
dependencies { dependencies {
compile files('libs/android-support-v4.jar') compile files('libs/android-support-v4.jar')
compile project(':extern:AndroidPinning') compile project(':extern:AndroidPinning')
compile project(':extern:UniversalImageLoader:library')
compile project(':extern:MemorizingTrustManager') 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 { android {
compileSdkVersion 19 compileSdkVersion 19
buildToolsVersion "19.0.1" buildToolsVersion "19.0.1"

View File

@ -1 +1 @@
include ':extern:AndroidPinning', ':extern:UniversalImageLoader', ':extern:MemorizingTrustManager' include ':extern:AndroidPinning', ':extern:UniversalImageLoader:library', ':extern:MemorizingTrustManager'