forked from ClockworkMod/ClockworkModBilling
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
43 lines (36 loc) · 840 Bytes
/
build.gradle
File metadata and controls
43 lines (36 loc) · 840 Bytes
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
38
39
40
41
42
43
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.0.1'
}
}
apply plugin: 'com.android.library'
repositories {
mavenCentral()
}
dependencies {
compile files('libs/in-app-purchasing-2.0.61.jar')
compile files('libs/PayPal_MPL.jar')
}
android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['res/']
aidl.srcDirs = ['src/']
java.srcDirs = ['src/']
}
}
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
minSdkVersion 9
targetSdkVersion 21
}
}
// upload to maven task
//if (System.getenv().I_AM_KOUSH == 'true') {
// apply from: 'https://raw.github.com/koush/mvn-repo/master/maven.gradle'
//}