6 classpath 'com.android.tools.build:gradle:1.2.3'
10 apply plugin: 'com.android.application'
22 compile name: 'touch-image-view'
23 compile 'com.android.support:support-v4:22.2.1'
24 compile project(':owncloud-android-library')
25 compile 'com.jakewharton:disklrucache:2.0.2'
26 compile 'com.android.support:appcompat-v7:22.2.1'
27 compile 'com.getbase:floatingactionbutton:1.10.1'
32 buildToolsVersion "22.0.1"
35 applicationId "com.owncloud.android.beta"
40 manifest.srcFile 'AndroidManifest.xml'
41 java.srcDirs = ['src']
42 resources.srcDirs = ['src']
43 aidl.srcDirs = ['src']
44 renderscript.srcDirs = ['src']
46 assets.srcDirs = ['res']
49 // Move the tests to tests/java, tests/res, etc...
50 instrumentTest.setRoot('tests')
52 // Move the build types to build-types/<type>
53 // For instance, build-types/debug/java, build-types/debug/AndroidManifest.xml, ...
54 // This moves them out of them default location under src/<type>/... which would
55 // conflict with src/ being used by the main source set.
56 // Adding new build types or product flavors should be accompanied
57 // by a similar customization.
58 debug.setRoot('build-types/debug')
59 release.setRoot('build-types/release')
72 exclude 'META-INF/LICENSE.txt'