| author | Da Risk <da_risk@geekorum.com> |
| Thu, 13 Apr 2023 20:57:29 -0400 | |
| changeset 8 | f1eed32c4764 |
| parent 5 | 448854642714 |
| child 34 | ce299aacc068 |
| permissions | -rw-r--r-- |
|
5
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
1 |
<!-- |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
2 |
|
| 8 | 3 |
AboutOss is an utility library to retrieve and display |
|
5
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
4 |
opensource licenses in Android applications. |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
5 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
6 |
Copyright (C) 2023 by Frederic-Charles Barthelery. |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
7 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
8 |
This file is part of AboutOss. |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
9 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
10 |
AboutOss is free software: you can redistribute it and/or modify |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
11 |
it under the terms of the GNU General Public License as published by |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
12 |
the Free Software Foundation, either version 3 of the License, or |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
13 |
(at your option) any later version. |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
14 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
15 |
AboutOss is distributed in the hope that it will be useful, |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
16 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
17 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
18 |
GNU General Public License for more details. |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
19 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
20 |
You should have received a copy of the GNU General Public License |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
21 |
along with AboutOss. If not, see <http://www.gnu.org/licenses/>. |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
22 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
23 |
--> |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
24 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android"> |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
25 |
<application> |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
26 |
<activity android:name=".OpenSourceLicensesActivity" |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
27 |
android:theme="@style/Theme.AppCompat.NoActionBar" |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
28 |
android:label="@string/title_oss_licenses" |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
29 |
android:exported="false" |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
30 |
/> |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
31 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
32 |
</application> |
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
33 |
|
|
448854642714
ui:material: Add activity in manifest and allow to configure the theme used
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
34 |
</manifest> |