| | |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="net.jacekk.bridge"> |
| | | <application android:allowBackup="true" android:label="@string/app_name" |
| | | android:icon="@drawable/icon" android:theme="@style/AppTheme"> |
| | | <activity android:name="net.jacekk.bridge.android.MainActivity" |
| | | android:label="@string/app_name"> |
| | | <?xml version="1.0" encoding="utf-8"?> |
| | | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| | | package="net.jacekk.bridge"> |
| | | |
| | | <application |
| | | android:allowBackup="true" |
| | | android:icon="@drawable/icon" |
| | | android:label="@string/app_name" |
| | | android:theme="@style/AppTheme" |
| | | android:supportsRtl="true"> |
| | | <activity |
| | | android:name=".android.MainActivity" |
| | | android:label="@string/app_name" > |
| | | <intent-filter> |
| | | <action android:name="android.intent.action.MAIN"/> |
| | | <category android:name="android.intent.category.LAUNCHER"/> |
| | | <action android:name="android.intent.action.MAIN" /> |
| | | |
| | | <category android:name="android.intent.category.LAUNCHER" /> |
| | | </intent-filter> |
| | | </activity> |
| | | <activity |
| | | android:name=".android.AboutActivity" |
| | | android:label="@string/about_title" |
| | | android:parentActivityName=".android.MainActivity" > |
| | | <meta-data |
| | | android:name="android.support.PARENT_ACTIVITY" |
| | | android:value="net.jacekk.bridge.android.MainActivity" /> |
| | | </activity> |
| | | </application> |
| | | |
| | | </manifest> |