-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathbuild.gradle
More file actions
37 lines (33 loc) · 835 Bytes
/
build.gradle
File metadata and controls
37 lines (33 loc) · 835 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
apply plugin: 'com.android.library'
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
api project(":AndroidAsync:AndroidAsync")
api project(":ion:ion")
api files('libs/in-app-purchasing-2.0.61.jar')
api files('libs/PayPal_MPL.jar')
// api 'com.android.support:support-v4:28.0.0'
}
android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
res.srcDirs = ['res/']
aidl.srcDirs = ['src/']
java.srcDirs = ['src/']
}
}
compileSdkVersion 30
buildToolsVersion '30.0.2'
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
}
}
// upload to maven task
//if (System.getenv().I_AM_KOUSH == 'true') {
// apply from: 'https://raw.github.com/koush/mvn-repo/master/maven.gradle'
//}