Skip to content

Commit 2c269f4

Browse files
committed
Update License
1 parent 33e0cd4 commit 2c269f4

File tree

91 files changed

+197
-97
lines changed

Some content is hidden

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

91 files changed

+197
-97
lines changed

README.md

+1-1

app/build.gradle.kts

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1+
/*
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
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+
*/
116
import com.skydoves.pokedex.Configuration
217

318
///*
4-
// * Designed and developed by 2020 skydoves (Jaewoong Eum)
19+
// * Designed and developed by 2022 skydoves (Jaewoong Eum)
520
// *
621
// * Licensed under the Apache License, Version 2.0 (the "License");
722
// * you may not use this file except in compliance with the License.

app/src/androidTest/kotlin/com/skydoves/pokedex/AppTestRunner.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/androidTest/kotlin/com/skydoves/pokedex/DetailActivityInjectionTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/androidTest/kotlin/com/skydoves/pokedex/MainActivityInjectionTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/PokedexApp.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/binding/RecyclerViewBinding.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/binding/ViewBinding.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/initializer/TimberInitializer.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/ui/details/DetailActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/ui/details/DetailViewModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/ui/main/MainActivity.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/ui/main/MainViewModel.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/ui/main/PokemonAdapter.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/utils/PokemonTypeUtils.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/kotlin/com/skydoves/pokedex/utils/SpacesItemDecoration.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/main/res/drawable-v24/ic_launcher_foreground.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/drawable/ic_arrow.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/drawable/ic_launcher_background.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/drawable/scrollbar.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/layout/activity_detail.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/layout/activity_main.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/layout/item_pokemon.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/layout/toolbar_home.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values-es/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values-it/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values-pt-rBR/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values-v31/styles.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values/colors.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values/ic_launcher_background.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values/strings.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/res/values/styles.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/test/kotlin/com/skydoves/pokedex/DetailViewModelTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

app/src/test/kotlin/com/skydoves/pokedex/MainViewModelTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

benchmark/build.gradle.kts

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1+
/*
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
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+
*/
116
import com.skydoves.pokedex.Configuration
217

318
///*
4-
// * Designed and developed by 2020 skydoves (Jaewoong Eum)
19+
// * Designed and developed by 2022 skydoves (Jaewoong Eum)
520
// *
621
// * Licensed under the Apache License, Version 2.0 (the "License");
722
// * you may not use this file except in compliance with the License.

benchmark/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

benchmark/src/main/kotlin/com/github/skydoves/benchmark/BaselineProfileGenerator.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

benchmark/src/main/kotlin/com/github/skydoves/benchmark/StartupBenchmark.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

build.gradle.kts

+2-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
///*
2-
// * Designed and developed by 2020 skydoves (Jaewoong Eum)
2+
// * Designed and developed by 2022 skydoves (Jaewoong Eum)
33
// *
44
// * Licensed under the Apache License, Version 2.0 (the "License");
55
// * you may not use this file except in compliance with the License.
@@ -16,8 +16,6 @@
1616

1717
plugins {
1818
alias(libs.plugins.spotless)
19-
id("com.android.library") version "7.2.2" apply false
20-
id("org.jetbrains.kotlin.android") version "1.7.10" apply false
2119
}
2220

2321
buildscript {
@@ -45,7 +43,7 @@ subprojects {
4543
)
4644
}
4745

48-
configure<com.diffplug.gradle.spotless.SpotlessExtension> {
46+
extensions.configure<com.diffplug.gradle.spotless.SpotlessExtension> {
4947
kotlin {
5048
target("**/*.kt")
5149
targetExclude("$buildDir/**/*.kt")
@@ -63,8 +61,6 @@ subprojects {
6361
target("**/*.kts")
6462
targetExclude("$buildDir/**/*.kts")
6563
licenseHeaderFile(rootProject.file("spotless/spotless.license.kt"), "(^(?![\\/ ]\\*).*$)")
66-
trimTrailingWhitespace()
67-
endWithNewline()
6864
}
6965
format("xml") {
7066
target("**/*.xml")

core-data/build.gradle.kts

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Designed and developed by 2022 skydoves (Jaewoong Eum)
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+
*/
116
import com.skydoves.pokedex.Configuration
217

318
plugins {

core-data/src/main/AndroidManifest.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Designed and developed by 2020 skydoves (Jaewoong Eum)
3+
Designed and developed by 2022 skydoves (Jaewoong Eum)
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)