diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index b49adab74b86df2dbbfdbec28b73e102ead16893..6e25c8f7263be0a4b1bd2c9281228375ca65b3ce 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -1,21 +1,24 @@ <?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