Migrate to gradle, appcompat as external dependency.
[mobilnebezpieczenstwo.git] / app / src / main / AndroidManifest.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <!--
3    Copyright (C) 2014  Samsung Electronics Polska Sp. z o.o.
4
5     This program is free software: you can redistribute it and/or modify
6     it under the terms of the GNU AFFERO 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     You may obtain a copy of the License at
10
11                 http://www.gnu.org/licenses/agpl-3.0.txt
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License
19     along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 -->
21 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
22     package="com.samsung.srpol"
23     android:versionCode="7"
24     android:versionName="1.01" >
25
26     <uses-sdk
27         android:minSdkVersion="8"
28         android:targetSdkVersion="21" />
29
30     <application
31         android:allowBackup="true"
32         android:icon="@drawable/ic_launcher"
33         android:label="@string/app_name"
34         android:theme="@style/AppTheme" >
35         <activity
36             android:name="com.samsung.srpol.ui.MainActivity"
37             android:label="@string/app_name"
38             android:launchMode="singleTask" >
39             <intent-filter>
40                 <action android:name="android.intent.action.MAIN" />
41
42                 <category android:name="android.intent.category.LAUNCHER" />
43             </intent-filter>
44         </activity>
45         <activity
46             android:name="com.samsung.srpol.ui.AppInfoActivity"
47             android:label="@string/app_name" >
48         </activity>
49         <activity
50             android:name="com.samsung.srpol.ui.PopupActivity"
51             android:label="@string/app_name" >
52         </activity>
53         <activity
54             android:name="com.samsung.srpol.ui.LicenseActivity"
55             android:label="@string/app_name" >
56         </activity>
57     </application>
58
59 </manifest>