forked from nvmanh/android-auto-generate-dimension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
76 lines (70 loc) · 1.91 KB
/
build.gradle
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
apply plugin: 'com.android.library'
apply from: 'autodimension.gradle'
//apply plugin: 'maven'
//apply plugin: 'signing'
buildscript {
repositories {
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
}
}
android {
compileSdkVersion 23
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 13
targetSdkVersion 23
}
}
//signing {
// required { gradle.taskGraph.hasTask("uploadArchives") }
// sign configurations.archives
//}
//
//uploadArchives {
// configuration = configurations.archives
// repositories.mavenDeployer {
// beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
//
// repository(url: sonatypeRepo) {
// authentication(userName: sonatypeUsername,
// password: sonatypePassword)
// }
//
// pom.groupId = 'com.intuit.sdp'
// pom.artifactId = 'sdp-android'
// pom.version = '1.0.3'
//
// pom.project {
// name 'sdp'
// packaging 'aar'
// description 'A scalable size unit for Andorid'
// url 'https://github.com/intuit/sdp'
//
// scm {
// url 'https://github.com/intuit/sdp'
// connection 'scm:git@github.com:intuit/sdp.git'
// developerConnection 'scm:git@github.com:intuit/sdp.git'
// }
//
// licenses {
// license {
// name 'The MIT License (MIT)'
// url 'https://github.com/intuit/sdp/blob/master/LICENSE'
// distribution 'repo'
// }
// }
//
// developers {
// developer {
// id developerID
// name developerName
// email developerEmail
// }
// }
// }
// }
//}