OSDN Git Service

DO NOT MERGE) ExifInterface: Close the file when an exception happens am: 418e0869ba...
[android-x86/frameworks-base.git] / tests / HierarchyViewerTest / build.gradle
1 buildscript {
2     repositories {
3         jcenter()
4     }
5     dependencies {
6         classpath 'com.android.tools.build:gradle:1.1.0+'
7
8     }
9 }
10
11 apply plugin: 'com.android.application'
12
13 android {
14     compileSdkVersion 21
15     buildToolsVersion "22.0.0"
16
17     defaultConfig {
18         minSdkVersion 21
19         targetSdkVersion 21
20         versionCode 1
21         versionName "1.0"
22     }
23
24     sourceSets {
25         main {
26             manifest.srcFile 'AndroidManifest.xml'
27             java.srcDirs = ['src']
28             res.srcDirs = ['res']
29         }
30     }
31 }