6 classpath 'com.android.tools.build:gradle:0.14.0'
10 apply plugin: 'com.android.application'
21 artifacts.add("default", file('libs/actionbarsherlock.aar'))
24 compile name: 'touch-image-view'
25 compile 'com.android.support:support-v4:19.1.0'
26 compile project('libs/actionbarsherlock_lib')
27 compile project(':owncloud-android-library')
28 compile 'com.jakewharton:disklrucache:2.0.2'
33 buildToolsVersion "20.0.0"
36 manifest.srcFile 'AndroidManifest.xml'
37 java.srcDirs = ['src']
38 resources.srcDirs = ['src']
39 aidl.srcDirs = ['src']
40 renderscript.srcDirs = ['src']
42 assets.srcDirs = ['res']
45 // Move the tests to tests/java, tests/res, etc...
46 instrumentTest.setRoot('tests')
48 // Move the build types to build-types/<type>
49 // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
50 // This moves them out of them default location under src/<type>/... which would
51 // conflict with src/ being used by the main source set.
52 // Adding new build types or product flavors should be accompanied
53 // by a similar customization.
54 debug.setRoot('build-types/debug')
55 release.setRoot('build-types/release')
66 sourceCompatibility JavaVersion.VERSION_1_7
67 targetCompatibility JavaVersion.VERSION_1_7
74 exclude 'META-INF/LICENSE.txt'