Skip to content

Commit c201ac2

Browse files
committed
Apply GPLv3
Signed-off-by: Hui-Hong You <hiroshi@ghostsinthelab.org>
1 parent da59be2 commit c201ac2

21 files changed

Lines changed: 267 additions & 183 deletions

File tree

.idea/copyright/GPLv3.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/deploymentTargetSelector.xml

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

app/build.gradle.kts

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
/*
2-
* libchewingAndroidAppModule: libchewing Android App Module (AAR)
3-
* Copyright (C) 2024. YOU, Hui-Hong
2+
* libchewingAndroidAppModule: libchewing Android App Module (AAR)
3+
* Copyright (C) 2024. YOU, Hui-Hong
44
*
5-
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8-
* (at your option) any later version.
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
99
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
1414
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
plugins {

app/src/main/AndroidManifest.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4-
~ Copyright (C) 2024. YOU, Hui-Hong
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
55
~
6-
~ This program is free software: you can redistribute it and/or modify
7-
~ it under the terms of the GNU General Public License as published by
8-
~ the Free Software Foundation, either version 3 of the License, or
9-
~ (at your option) any later version.
6+
~ This program is free software: you can redistribute it and/or modify
7+
~ it under the terms of the GNU General Public License as published by
8+
~ the Free Software Foundation, either version 3 of the License, or
9+
~ (at your option) any later version.
1010
~
11-
~ This program is distributed in the hope that it will be useful,
12-
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
~ GNU General Public License for more details.
11+
~ This program is distributed in the hope that it will be useful,
12+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
~ GNU General Public License for more details.
1515
~
16-
~ You should have received a copy of the GNU General Public License
17-
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
~ You should have received a copy of the GNU General Public License
17+
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
-->
1919

2020
<manifest xmlns:android="http://schemas.android.com/apk/res/android"

app/src/main/cpp/CMakeLists.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
#
2+
# libchewingAndroidAppModule: libchewing Android App Module (AAR)
3+
# Copyright (C) 2024. YOU, Hui-Hong
4+
#
5+
# This program is free software: you can redistribute it and/or modify
6+
# it under the terms of the GNU General Public License as published by
7+
# the Free Software Foundation, either version 3 of the License, or
8+
# (at your option) any later version.
9+
#
10+
# This program is distributed in the hope that it will be useful,
11+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
# GNU General Public License for more details.
14+
#
15+
# You should have received a copy of the GNU General Public License
16+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
#
18+
119
# For more information about using CMake with Android Studio, read the
220
# documentation: https://d.android.com/studio/projects/add-native-code.html.
321
# For more examples on how to use CMake, see https://github.com/android/ndk-samples.

app/src/main/cpp/app.cpp

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
/*
2+
* libchewingAndroidAppModule: libchewing Android App Module (AAR)
3+
* Copyright (C) 2024. YOU, Hui-Hong
4+
*
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
9+
*
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
14+
*
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
17+
*/
18+
119
#include <jni.h>
220
#include <string>
321
#include <android/log.h>

app/src/main/java/com/miyabi_hiroshi/app/libchewing_android_app_module/Chewing.kt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
/*
2-
* libchewingAndroidAppModule: libchewing Android App Module (AAR)
3-
* Copyright (C) 2024. YOU, Hui-Hong
2+
* libchewingAndroidAppModule: libchewing Android App Module (AAR)
3+
* Copyright (C) 2024. YOU, Hui-Hong
44
*
5-
* This program is free software: you can redistribute it and/or modify
6-
* it under the terms of the GNU General Public License as published by
7-
* the Free Software Foundation, either version 3 of the License, or
8-
* (at your option) any later version.
5+
* This program is free software: you can redistribute it and/or modify
6+
* it under the terms of the GNU General Public License as published by
7+
* the Free Software Foundation, either version 3 of the License, or
8+
* (at your option) any later version.
99
*
10-
* This program is distributed in the hope that it will be useful,
11-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
* GNU General Public License for more details.
10+
* This program is distributed in the hope that it will be useful,
11+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
* GNU General Public License for more details.
1414
*
15-
* You should have received a copy of the GNU General Public License
16-
* along with this program. If not, see <https://www.gnu.org/licenses/>.
15+
* You should have received a copy of the GNU General Public License
16+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
*/
1818

1919
package com.miyabi_hiroshi.app.libchewing_android_app_module

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<!--
2-
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
3-
~ Copyright (C) 2024. YOU, Hui-Hong
2+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
3+
~ Copyright (C) 2024. YOU, Hui-Hong
44
~
5-
~ This program is free software: you can redistribute it and/or modify
6-
~ it under the terms of the GNU General Public License as published by
7-
~ the Free Software Foundation, either version 3 of the License, or
8-
~ (at your option) any later version.
5+
~ This program is free software: you can redistribute it and/or modify
6+
~ it under the terms of the GNU General Public License as published by
7+
~ the Free Software Foundation, either version 3 of the License, or
8+
~ (at your option) any later version.
99
~
10-
~ This program is distributed in the hope that it will be useful,
11-
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12-
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13-
~ GNU General Public License for more details.
10+
~ This program is distributed in the hope that it will be useful,
11+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
12+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13+
~ GNU General Public License for more details.
1414
~
15-
~ You should have received a copy of the GNU General Public License
16-
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
15+
~ You should have received a copy of the GNU General Public License
16+
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
1717
-->
1818

1919
<vector xmlns:android="http://schemas.android.com/apk/res/android"

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4-
~ Copyright (C) 2024. YOU, Hui-Hong
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
55
~
6-
~ This program is free software: you can redistribute it and/or modify
7-
~ it under the terms of the GNU General Public License as published by
8-
~ the Free Software Foundation, either version 3 of the License, or
9-
~ (at your option) any later version.
6+
~ This program is free software: you can redistribute it and/or modify
7+
~ it under the terms of the GNU General Public License as published by
8+
~ the Free Software Foundation, either version 3 of the License, or
9+
~ (at your option) any later version.
1010
~
11-
~ This program is distributed in the hope that it will be useful,
12-
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
13-
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14-
~ GNU General Public License for more details.
11+
~ This program is distributed in the hope that it will be useful,
12+
~ but WITHOUT ANY WARRANTY; without even the implied warranty of
13+
~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14+
~ GNU General Public License for more details.
1515
~
16-
~ You should have received a copy of the GNU General Public License
17-
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
16+
~ You should have received a copy of the GNU General Public License
17+
~ along with this program. If not, see <https://www.gnu.org/licenses/>.
1818
-->
1919

2020
<vector xmlns:android="http://schemas.android.com/apk/res/android"

0 commit comments

Comments
 (0)