Skip to content

Commit

Permalink
fix formatting and notifications list
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Hadutski committed Dec 2, 2018
1 parent 58f0647 commit 98bfb59
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 21 deletions.
42 changes: 22 additions & 20 deletions app/src/main/AndroidManifest.xml
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>
3 changes: 2 additions & 1 deletion app/src/main/res/layout/activity_profile.xml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,10 @@
<android.support.v7.widget.RecyclerView
android:id="@+id/profileNotificationsList"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_height="0dp"
android:clipToPadding="false"
android:paddingTop="15dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
Expand Down

0 comments on commit 98bfb59

Please sign in to comment.