Skip to content

Commit c0d60ab

Browse files
author
Paul Rybitskyi
committed
Update files copyright info
1 parent 2e962d4 commit c0d60ab

File tree

62 files changed

+711
-87
lines changed

Some content is hidden

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

62 files changed

+711
-87
lines changed

build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
*
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
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
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.
15+
*/
16+
117
// Top-level build file where you can add configuration options common to all sub-projects/modules.
218
apply plugin: "com.github.ben-manes.versions"
319

gradle/configs/app_config.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
*
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
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
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.
15+
*/
16+
117
ext {
218
appConfig = [
319
compileSdkVersion: 29,

gradle/configs/publishing_config.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
*
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
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
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.
15+
*/
16+
117
ext {
218
publishingConfig = [
319
releaseRepoName: "maven",

persistentsearchview/build.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
*
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
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
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.
15+
*/
16+
117
apply plugin: 'com.android.library'
218

319
apply from: 'library_config.gradle'

persistentsearchview/library_config.gradle

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
*
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
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
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.
15+
*/
16+
117
ext {
218
libraryConfig = [
319
versionCode: 5,
Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,17 @@
1-
<manifest package="com.paulrybitskyi.persistentsearchview"
2-
/>
1+
<!--
2+
~ Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
~
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
7+
~
8+
~ http://www.apache.org/licenses/LICENSE-2.0
9+
~
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.
15+
-->
16+
17+
<manifest package="com.paulrybitskyi.persistentsearchview"/>

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/PersistentSearchView.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/adapters/SuggestionsRecyclerViewAdapter.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/adapters/model/SuggestionItem.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/adapters/resources/SuggestionItemResources.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/animations/BackgroundDimmingAnimation.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/listeners/AnimatorListenerAdapter.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/listeners/AnimatorListenerDecorator.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/listeners/OnSearchConfirmedListener.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/listeners/OnSearchQueryChangeListener.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/listeners/OnSuggestionChangeListener.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/listeners/QueryListener.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/model/Suggestion.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/AnimationType.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/KeyboardManagingUtil.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/Preconditions.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/StateUtils.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
3+
*
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
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
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.
15+
*/
16+
117
package com.paulrybitskyi.persistentsearchview.utils;
218

319
import android.os.Parcelable;

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/SuggestionCreationUtil.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/Utils.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/ViewUtils.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/utils/VoiceRecognitionDelegate.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/java/com/paulrybitskyi/persistentsearchview/widgets/AdvancedEditText.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/*
2-
* Copyright 2017
3-
*
4-
* Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5-
* Arthur Ivanets, arthur.ivanets.l@gmail.com
2+
* Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
63
*
74
* Licensed under the Apache License, Version 2.0 (the "License");
85
* you may not use this file except in compliance with the License.

persistentsearchview/src/main/res/layout/persistent_search_view_layout.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!--
4+
~ Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5+
~
6+
~ Licensed under the Apache License, Version 2.0 (the "License");
7+
~ you may not use this file except in compliance with the License.
8+
~ You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
219
<merge
320
xmlns:android="http://schemas.android.com/apk/res/android"
421
xmlns:tools="http://schemas.android.com/tools"

persistentsearchview/src/main/res/layout/persistent_search_view_suggestion_item_layout.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
3+
<!--
4+
~ Copyright 2017 Paul Rybitskyi, paul.rybitskyi.work@gmail.com
5+
~
6+
~ Licensed under the Apache License, Version 2.0 (the "License");
7+
~ you may not use this file except in compliance with the License.
8+
~ You may obtain a copy of the License at
9+
~
10+
~ http://www.apache.org/licenses/LICENSE-2.0
11+
~
12+
~ Unless required by applicable law or agreed to in writing, software
13+
~ distributed under the License is distributed on an "AS IS" BASIS,
14+
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
~ See the License for the specific language governing permissions and
16+
~ limitations under the License.
17+
-->
18+
219
<RelativeLayout
320
xmlns:android="http://schemas.android.com/apk/res/android"
421
xmlns:tools="http://schemas.android.com/tools"

0 commit comments

Comments
 (0)