-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle
49 lines (44 loc) · 1.2 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
apply plugin: 'com.android.library'
//apply plugin: 'bintray-release'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
minSdkVersion 16
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
//publish {
// userOrg = 'Jiffy'
// groupId = 'com.nordicusability.com'
// artifactId = 'Jiffy-ContentProvider-Contract'
// publishVersion = android.defaultConfig.versionName
// description = 'Oh hi, this is a nice description for a project, right?'
// website = 'https://github.com/novoda/bintray-release'
//}
//bintray {
// user = 'MazyNoc'
// key = 'febeabb703d1428c4dd61d679648fe2ab22b1070'
//
// configurations = ['archives']
// pkg {
// repo = "jcenter"
// name = "JiffyContentProviderContract"
//// websiteUrl = siteUrl
//// vcsUrl = gitUrl
// licenses = ["Apache-2.0"]
// publish = true
// }
//}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
}