Skip to content

Commit

Permalink
Update package casing
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniolg committed Jul 4, 2018
1 parent b322afd commit 7af3f15
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".Login.LoginActivity"
android:name=".login.LoginActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
*/

package com.antonioleiva.mvpexample.app.Login;
package com.antonioleiva.mvpexample.app.login;

import android.app.Activity;
import android.content.Intent;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.antonioleiva.mvpexample.app.Login;
package com.antonioleiva.mvpexample.app.login;

import android.os.Handler;
import android.text.TextUtils;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
*/

package com.antonioleiva.mvpexample.app.Login;
package com.antonioleiva.mvpexample.app.login;

public class LoginPresenter implements LoginInteractor.OnLoginFinishedListener {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
*/

package com.antonioleiva.mvpexample.app.Login;
package com.antonioleiva.mvpexample.app.login;

public interface LoginView {
void showProgress();
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/menu/login.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.antonioleiva.mvpexample.app.Login.LoginActivity" >
tools:context="com.antonioleiva.mvpexample.app.login.LoginActivity" >

<item android:id="@+id/action_settings"
android:title="@string/action_settings"
Expand Down

0 comments on commit 7af3f15

Please sign in to comment.