Skip to content
Snippets Groups Projects
Unverified Commit c7f584a1 authored by Tamás Szabó's avatar Tamás Szabó Committed by GitHub
Browse files

Merge pull request #2 from szakitom/bugfix

fix android name in manifest
parents aa6cb111 2e8cf6aa
No related branches found
No related tags found
1 merge request!5merge of labor4
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="me.szaki.xkcd.xkcdbrowser">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:name=".XKCDBrowserApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<activity android:name=".ui.main.MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ui.detail.DetailActivity"></activity>
<activity android:name=".ui.favorites.FavoritesActivity"></activity>
</application>
</manifest>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment