-
Notifications
You must be signed in to change notification settings - Fork 4
/
config.gradle
69 lines (58 loc) · 2.54 KB
/
config.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
/*
* Copyright 2015 "Henry Tao <[email protected]>"
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
ext {
java = [
sourceCompatibility: JavaVersion.VERSION_1_8,
targetCompatibility: JavaVersion.VERSION_1_8
]
android = [
compileSdkVersion: 24,
buildToolsVersion: "24.0.2",
applicationId : "me.henrytao.rxsharedpreferencesdemo",
minSdkVersion : 11,
targetSdkVersion : 24,
versionCode : 2,
versionName : "1.5.0"
]
bintray = [
bintrayRepo : "maven",
bintrayName : "rx-shared-preferences",
publishedGroupId : "me.henrytao",
libraryName : "RxSharedPreferences",
artifact : "rx-shared-preferences",
libraryDescription: "RxJava version of Android SharedPreferences",
siteUrl : "https://github.com/henrytao-me/rx-shared-preferences",
gitUrl : "https://github.com/henrytao-me/rx-shared-preferences.git",
libraryVersion : rootProject.ext.android.versionName,
developerId : "henrytao",
developerName : "Henry Tao",
developerEmail : "[email protected]",
licenseName : "The Apache Software License, Version 2.0",
licenseUrl : "http://www.apache.org/licenses/LICENSE-2.0.txt",
allLicenses : ["Apache-2.0"]
]
dependencies = [
"io.reactivex:rxjava" : "io.reactivex:rxjava:1.0.15",
"com.google.code.gson:gson" : "com.google.code.gson:gson:2.7",
"junit:junit" : "junit:junit:4.12",
"org.hamcrest:hamcrest-core" : "org.hamcrest:hamcrest-core:1.3",
"org.hamcrest:hamcrest-library" : "org.hamcrest:hamcrest-library:1.3",
"org.hamcrest:hamcrest-integration" : "org.hamcrest:hamcrest-integration:1.3",
"org.robolectric:robolectric" : "org.robolectric:robolectric:3.0",
"org.robolectric:shadows-core" : "org.robolectric:shadows-core:3.0",
"org.robolectric:shadows-support-v4": "org.robolectric:shadows-support-v4:3.0"
]
}