Skip to content

Commit 7b7cf2d

Browse files
authored
Merge pull request #134 from flipkart-incubator/develop
merge 'develop' into 'master'
2 parents 13f01d5 + da0a92f commit 7b7cf2d

193 files changed

Lines changed: 14816 additions & 15378 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

build.gradle

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
/*
2-
* Apache License
3-
* Version 2.0, January 2004
4-
* http://www.apache.org/licenses/LICENSE-2.0
2+
* Copyright 2019 Flipkart Internet Pvt. Ltd.
53
*
6-
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
77
*
8-
* Copyright (c) 2018 Flipkart Internet Pvt. Ltd.
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
10-
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
11-
* this file except in compliance with the License. You may obtain a copy of the
12-
* License at http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software distributed
15-
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
16-
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
17-
* specific language governing permissions and limitations under the License.
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1815
*/
1916

2017
// Top-level build file where you can add configuration options common to all sub-projects/modules.
@@ -43,10 +40,10 @@ allprojects {
4340

4441
ext {
4542
groupName = 'com.github.flipkart-incubator.proteus'
46-
versionName = '5.0.0-rc13'
47-
versionCode = 500013
43+
versionName = '5.0.0-snapshot'
44+
versionCode = 500014
4845
compileSdkVersion = 28
49-
minSdkVersion = 14
46+
minSdkVersion = 19
5047
targetSdkVersion = 28
5148
buildToolsVersion = '28.0.3'
5249
supportLibraryVersion = '28.0.0'

cardview-v7/build.gradle

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
/*
2-
* Apache License
3-
* Version 2.0, January 2004
4-
* http://www.apache.org/licenses/LICENSE-2.0
2+
* Copyright 2019 Flipkart Internet Pvt. Ltd.
53
*
6-
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
77
*
8-
* Copyright (c) 2018 Flipkart Internet Pvt. Ltd.
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
10-
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
11-
* this file except in compliance with the License. You may obtain a copy of the
12-
* License at http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software distributed
15-
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
16-
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
17-
* specific language governing permissions and limitations under the License.
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1815
*/
1916

2017
apply plugin: 'com.android.library'
@@ -30,8 +27,8 @@ android {
3027
defaultConfig {
3128
minSdkVersion rootProject.ext.minSdkVersion
3229
targetSdkVersion rootProject.ext.targetSdkVersion
33-
versionCode 1
34-
versionName "1.0"
30+
versionCode rootProject.ext.versionCode
31+
versionName rootProject.ext.versionName
3532

3633
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
3734

Lines changed: 10 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
<!--
2-
~ Apache License
3-
~ Version 2.0, January 2004
4-
~ http://www.apache.org/licenses/LICENSE-2.0
2+
~ Copyright 2019 Flipkart Internet Pvt. Ltd.
53
~
6-
~ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4+
~ Licensed under the Apache License, Version 2.0 (the "License");
5+
~ you may not use this file except in compliance with the License.
6+
~ You may obtain a copy of the License at
77
~
8-
~ Copyright (c) 2018 Flipkart Internet Pvt. Ltd.
8+
~ http://www.apache.org/licenses/LICENSE-2.0
99
~
10-
~ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
11-
~ this file except in compliance with the License. You may obtain a copy of the
12-
~ License at http://www.apache.org/licenses/LICENSE-2.0
13-
~
14-
~ Unless required by applicable law or agreed to in writing, software distributed
15-
~ under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
16-
~ CONDITIONS OF ANY KIND, either express or implied. See the License for the
17-
~ specific language governing permissions and limitations under the License.
10+
~ Unless required by applicable law or agreed to in writing, software
11+
~ distributed under the License is distributed on an "AS IS" BASIS,
12+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
~ See the License for the specific language governing permissions and
14+
~ limitations under the License.
1815
-->
1916

2017
<manifest package="com.flipkart.android.proteus.support.v7" />
Lines changed: 19 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
/*
2-
* Apache License
3-
* Version 2.0, January 2004
4-
* http://www.apache.org/licenses/LICENSE-2.0
2+
* Copyright 2019 Flipkart Internet Pvt. Ltd.
53
*
6-
* TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
77
*
8-
* Copyright (c) 2018 Flipkart Internet Pvt. Ltd.
8+
* http://www.apache.org/licenses/LICENSE-2.0
99
*
10-
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use
11-
* this file except in compliance with the License. You may obtain a copy of the
12-
* License at http://www.apache.org/licenses/LICENSE-2.0
13-
*
14-
* Unless required by applicable law or agreed to in writing, software distributed
15-
* under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
16-
* CONDITIONS OF ANY KIND, either express or implied. See the License for the
17-
* specific language governing permissions and limitations under the License.
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
1815
*/
1916

2017
package com.flipkart.android.proteus.support.v7;
@@ -30,15 +27,15 @@
3027

3128
public class CardViewModule implements ProteusBuilder.Module {
3229

33-
private CardViewModule() {
34-
}
30+
private CardViewModule() {
31+
}
3532

36-
public static CardViewModule create() {
37-
return new CardViewModule();
38-
}
33+
public static CardViewModule create() {
34+
return new CardViewModule();
35+
}
3936

40-
@Override
41-
public void registerWith(ProteusBuilder builder) {
42-
builder.register(new CardViewParser());
43-
}
37+
@Override
38+
public void registerWith(ProteusBuilder builder) {
39+
builder.register(new CardViewParser());
40+
}
4441
}

0 commit comments

Comments
 (0)