blob: 7a2ab0e036e46548139416547aae6b9b7ac37841 [file] [log] [blame]
Justin Klaassenf837c2b2014-06-19 10:37:49 -07001/*
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 {
Justin Klaassen1bb7ce42014-06-27 16:46:19 -070023 classpath "com.android.tools.build:gradle:0.12.+"
Justin Klaassenf837c2b2014-06-19 10:37:49 -070024 }
25}
26
Justin Klaassen1bb7ce42014-06-27 16:46:19 -070027apply plugin: "com.android.application"
Justin Klaassenf837c2b2014-06-19 10:37:49 -070028
29android {
30 compileSdkVersion "android-L"
Justin Klaassen1bb7ce42014-06-27 16:46:19 -070031 buildToolsVersion "20"
Justin Klaassenf837c2b2014-06-19 10:37:49 -070032
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}