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