-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.gradle
51 lines (42 loc) · 1.87 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
/*
* Copyright (C) 2016 MySQUAR. All rights reserved.
*
* This software is the confidential and proprietary information of MySQUAR or one of its
* subsidiaries. You shall not disclose this confidential information and shall use it only in
* accordance with the terms of the license agreement or other applicable agreement you entered into
* with MySQUAR.
*
* MySQUAR MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF THE SOFTWARE, EITHER
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT. MySQUAR SHALL NOT BE LIABLE FOR ANY LOSSES
* OR DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR
* ITS DERIVATIVES.
*/
ext {
android = [
compileSdkVersion: 24,
buildToolsVersion: "24.0.1",
applicationId : "me.silong.observablerm",
minSdkVersion : 15,
targetSdkVersion : 23,
versionCode : 25,
versionName : "1.0.0-beta"
]
bintray = [
bintrayRepo : "maven",
bintrayName : "observablerm",
publishedGroupId : "me.silong",
libraryName : "Observable RecyclerViewAdapter Manager",
artifact : "observablerm",
libraryDescription: "Observable RecyclerViewAdapter Manager",
siteUrl : "https://github.com/longbkiter07/SnappyRecyclerAdapter/",
gitUrl : "git@github.com:longbkiter07/SnappyRecyclerAdapter.git",
libraryVersion : rootProject.ext.android["versionName"],
developerId : "longbkiter07",
developerName : "Si Long",
developerEmail : "long.bkiter07@gmail.com",
licenseName : "The Apache Software License, Version 2.0",
licenseUrl : "http://www.apache.org/licenses/LICENSE-2.0.txt",
allLicenses : ["Apache-2.0"]
]
}