Skip to content

Commit 7174b02

Browse files
committed
Apply GPLv3
Signed-off-by: Hui-Hong You <hiroshi@ghostsinthelab.org>
1 parent 7daa51a commit 7174b02

22 files changed

Lines changed: 1052 additions & 0 deletions

File tree

GPL-3.0.txt

Lines changed: 674 additions & 0 deletions
Large diffs are not rendered by default.

app/build.gradle.kts

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
plugins {
220
alias(libs.plugins.android.application)
321
alias(libs.plugins.jetbrains.kotlin.android)

app/src/androidTest/java/com/miyabi_hiroshi/app/libchewing_android_app_module/ExampleInstrumentedTest.kt

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
package com.miyabi_hiroshi.app.libchewing_android_app_module
220

321
import androidx.test.platform.app.InstrumentationRegistry

app/src/main/AndroidManifest.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
5+
~
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.
10+
~
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.
15+
~
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/>.
18+
-->
19+
220
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
321
xmlns:tools="http://schemas.android.com/tools">
422

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

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
<vector xmlns:android="http://schemas.android.com/apk/res/android"
220
xmlns:aapt="http://schemas.android.com/aapt"
321
android:width="108dp"

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
5+
~
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.
10+
~
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.
15+
~
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/>.
18+
-->
19+
220
<vector xmlns:android="http://schemas.android.com/apk/res/android"
321
android:width="108dp"
422
android:height="108dp"

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
5+
~
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.
10+
~
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.
15+
~
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/>.
18+
-->
19+
220
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
321
<background android:drawable="@drawable/ic_launcher_background" />
422
<foreground android:drawable="@drawable/ic_launcher_foreground" />

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
5+
~
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.
10+
~
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.
15+
~
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/>.
18+
-->
19+
220
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
321
<background android:drawable="@drawable/ic_launcher_background" />
422
<foreground android:drawable="@drawable/ic_launcher_foreground" />

app/src/main/res/values-night/themes.xml

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
<resources xmlns:tools="http://schemas.android.com/tools">
220
<!-- Base application theme. -->
321
<style name="Theme.LibchewingAndroidAppModule" parent="Theme.MaterialComponents.DayNight.DarkActionBar">

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

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,22 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
<!--
3+
~ libchewingAndroidAppModule: libchewing Android App Module (AAR)
4+
~ Copyright (C) 2024. YOU, Hui-Hong
5+
~
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.
10+
~
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.
15+
~
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/>.
18+
-->
19+
220
<resources>
321
<color name="purple_200">#FFBB86FC</color>
422
<color name="purple_500">#FF6200EE</color>

0 commit comments

Comments
 (0)