Skip to content

Commit 90e6678

Browse files
committed
Added Copyright
1 parent 08c5cf5 commit 90e6678

File tree

163 files changed

+2985
-156
lines changed

Some content is hidden

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

163 files changed

+2985
-156
lines changed

.github/ci-gradle.properties

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
1+
#
2+
#
3+
# Copyright 2023 Einstein Blanco
4+
#
5+
# Licensed under the GNU General Public License v3.0 (the "License");
6+
# you may not use this file except in compliance with the License.
7+
# You may obtain a copy of the License at
8+
#
9+
# https://www.gnu.org/licenses/gpl-3.0
10+
#
11+
# Unless required by applicable law or agreed to in writing, software
12+
# distributed under the License is distributed on an "AS IS" BASIS,
13+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
# See the License for the specific language governing permissions and
15+
# limitations under the License.
16+
#
17+
#
118
org.gradle.daemon=false
219
org.gradle.parallel=true
320
org.gradle.workers.max=2
4-
521
kotlin.incremental=false
6-
722
# Controls KotlinOptions.allWarningsAsErrors.
823
# This value used in CI and is currently set to false.
924
# If you want to treat warnings as errors locally, set this property to true

.idea/copyright/GNU_General_Public_License_v3_0.xml

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/copyright/profiles_settings.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle.kts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
*
3+
* Copyright 2023 Einstein Blanco
4+
*
5+
* Licensed under the GNU General Public License v3.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* https://www.gnu.org/licenses/gpl-3.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
*/
18+
119
plugins {
220
alias(libs.plugins.com.android.geto.application)
321
alias(libs.plugins.com.android.geto.applicationCompose)

app/src/androidTest/kotlin/com/android/geto/NavigationTest.kt

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
*
3+
* Copyright 2023 Einstein Blanco
4+
*
5+
* Licensed under the GNU General Public License v3.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* https://www.gnu.org/licenses/gpl-3.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
*/
18+
119
package com.android.geto
220

321
import androidx.activity.compose.setContent
@@ -35,7 +53,7 @@ class NavigationTest {
3553
}
3654

3755
@Test
38-
fun test_navHost_verifyStartDestination() {
56+
fun navHost_verifyStartDestination() {
3957
composeTestRule.onNodeWithTag("applist").assertIsDisplayed()
4058
}
4159

app/src/main/AndroidManifest.xml

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

app/src/main/kotlin/com/android/geto/App.kt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
*
3+
* Copyright 2023 Einstein Blanco
4+
*
5+
* Licensed under the GNU General Public License v3.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* https://www.gnu.org/licenses/gpl-3.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
*/
18+
119
package com.android.geto
220

321
import android.app.Application

app/src/main/kotlin/com/android/geto/MainActivity.kt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
*
3+
* Copyright 2023 Einstein Blanco
4+
*
5+
* Licensed under the GNU General Public License v3.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* https://www.gnu.org/licenses/gpl-3.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
*/
18+
119
package com.android.geto
220

321
import android.os.Bundle

app/src/main/kotlin/com/android/geto/di/AppModule.kt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
*
3+
* Copyright 2023 Einstein Blanco
4+
*
5+
* Licensed under the GNU General Public License v3.0 (the "License");
6+
* you may not use this file except in compliance with the License.
7+
* You may obtain a copy of the License at
8+
*
9+
* https://www.gnu.org/licenses/gpl-3.0
10+
*
11+
* Unless required by applicable law or agreed to in writing, software
12+
* distributed under the License is distributed on an "AS IS" BASIS,
13+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14+
* See the License for the specific language governing permissions and
15+
* limitations under the License.
16+
*
17+
*/
18+
119
package com.android.geto.di
220

321
import android.content.ClipboardManager

0 commit comments

Comments
 (0)