forked from GoogleCloudPlatform/endpoints-codelab-android
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (31 loc) · 1.05 KB
/
Copy pathbuild.gradle
File metadata and controls
37 lines (31 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
minSdkVersion 8
targetSdkVersion 19
testPackageName "com.todotxt.todotxttouch.test"
testInstrumentationRunner "android.test.InstrumentationTestRunner"
}
lintOptions {
abortOnError false
}
}
repositories {
mavenLocal()
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':chuckbjonesSwipeToDismissUndoListec6bf93')
compile project(':actionBarPullToRefreshextras')
compile files('libs/signpost-core-1.2.1.1.jar')
compile files('libs/json_simple-1.1.jar')
compile files('libs/libphonenumber-4.1.jar')
compile files('libs/signpost-commonshttp4-1.2.1.1.jar')
compile files('libs/apache-mime4j-0.6.jar')
compile files('libs/httpmime-4.0.3.jar')
compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
compile 'com.android.support:support-v4:+'
compile project(path: ':todoTxtBackend', configuration: 'android-endpoints')
}