1/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *   http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17buildscript {
18    repositories {
19        mavenCentral()
20    }
21
22    dependencies {
23        classpath "com.android.tools.build:gradle:0.12.+"
24    }
25}
26
27apply plugin: "com.android.application"
28
29android {
30    compileSdkVersion "android-L"
31    buildToolsVersion "20"
32
33    defaultConfig {
34        applicationId "com.google.android.apps.calculator"
35    }
36
37    sourceSets {
38        main {
39            manifest.srcFile "AndroidManifest.xml"
40            java.srcDirs = ["src"]
41            res.srcDirs = ["res"]
42        }
43    }
44
45    compileOptions {
46        sourceCompatibility JavaVersion.VERSION_1_7
47        targetCompatibility JavaVersion.VERSION_1_7
48    }
49}
50
51repositories {
52    mavenLocal()
53}
54
55dependencies {
56    compile files("arity-2.1.2.jar")
57    compile "com.android.support:support-v4:+"
58}
59