commit | author | age
|
0d7d16
|
1 |
<?xml version="1.0" encoding="utf-8"?> |
JK |
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
3 |
package="net.jacekk.bridge"> |
|
4 |
|
|
5 |
<application |
|
6 |
android:allowBackup="true" |
|
7 |
android:icon="@drawable/icon" |
|
8 |
android:label="@string/app_name" |
|
9 |
android:theme="@style/AppTheme" |
|
10 |
android:supportsRtl="true"> |
|
11 |
<activity |
|
12 |
android:name=".android.MainActivity" |
|
13 |
android:label="@string/app_name" > |
7a519e
|
14 |
<intent-filter> |
0d7d16
|
15 |
<action android:name="android.intent.action.MAIN" /> |
JK |
16 |
|
|
17 |
<category android:name="android.intent.category.LAUNCHER" /> |
7a519e
|
18 |
</intent-filter> |
JK |
19 |
</activity> |
0d7d16
|
20 |
<activity |
JK |
21 |
android:name=".android.AboutActivity" |
|
22 |
android:label="@string/about_title" |
|
23 |
android:parentActivityName=".android.MainActivity" > |
|
24 |
<meta-data |
|
25 |
android:name="android.support.PARENT_ACTIVITY" |
|
26 |
android:value="net.jacekk.bridge.android.MainActivity" /> |
|
27 |
</activity> |
7a519e
|
28 |
</application> |
0d7d16
|
29 |
|
7a519e
|
30 |
</manifest> |