-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix formatting and notifications list
- Loading branch information
Anton Hadutski
committed
Dec 2, 2018
1 parent
58f0647
commit 98bfb59
Showing
2 changed files
with
24 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,36 @@ | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.anton.github"> | ||
package="com.anton.github"> | ||
|
||
<uses-permission android:name="android.permission.INTERNET"/> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
<application | ||
android:name="com.anton.github.application.GithubApplication" | ||
android:allowBackup="false" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
android:name="com.anton.github.application.GithubApplication" | ||
android:allowBackup="false" | ||
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="com.anton.github.presentation.splash.SplashActivity" | ||
android:screenOrientation="portrait" | ||
android:theme="@style/SplashTheme"> | ||
android:name="com.anton.github.presentation.splash.SplashActivity" | ||
android:screenOrientation="portrait" | ||
android:theme="@style/SplashTheme"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW"/> | ||
<action android:name="android.intent.action.VIEW" /> | ||
</intent-filter> | ||
<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="com.anton.github.presentation.login.LoginActivity" | ||
android:screenOrientation="portrait"/> | ||
<activity | ||
android:name="com.anton.github.presentation.login.LoginActivity" | ||
android:screenOrientation="portrait" /> | ||
|
||
<activity android:name="com.anton.github.presentation.profile.ProfileActivity" | ||
android:screenOrientation="portrait"/> | ||
<activity | ||
android:name="com.anton.github.presentation.profile.ProfileActivity" | ||
android:screenOrientation="portrait" /> | ||
</application> | ||
</manifest> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters