forked from serso/android-checkout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.gradle
More file actions
31 lines (28 loc) · 719 Bytes
/
Copy pathbuild.gradle
File metadata and controls
31 lines (28 loc) · 719 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
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.3'
}
ext {
versions = [libs: [support: "25.0.1"],
sdk : [compile: 24, buildTools: "24.0.1", min: 9, target: 24],
code: 36,
name: "0.9.2"]
}
}
allprojects {
repositories {
maven {
url "file://${System.env.ANDROID_HOME}/extras/android/m2repository/"
}
mavenCentral()
}
if (!project.hasProperty("ossrhUsername")) {
ext.ossrhUsername = "no-username"
}
if (!project.hasProperty("ossrhPassword")) {
ext.ossrhPassword = "no-password"
}
}