Move dialogs to the correct package

This commit is contained in:
Jakob Nixdorf 2020-01-30 07:29:26 +01:00
parent e10384fec8
commit 3511b51d1d
No known key found for this signature in database
GPG key ID: BE99BF86574A7DBC
4 changed files with 7 additions and 3 deletions

View file

@ -65,7 +65,7 @@ import org.shadowice.flocke.andotp.Utilities.NotificationHelper;
import org.shadowice.flocke.andotp.Utilities.TokenCalculator;
import org.shadowice.flocke.andotp.View.EntriesCardAdapter;
import org.shadowice.flocke.andotp.View.ItemTouchHelper.SimpleItemTouchHelperCallback;
import org.shadowice.flocke.andotp.View.ManualEntryDialog;
import org.shadowice.flocke.andotp.Dialogs.ManualEntryDialog;
import org.shadowice.flocke.andotp.View.TagsAdapter;
import java.util.ArrayList;

View file

@ -20,7 +20,7 @@
* SOFTWARE.
*/
package org.shadowice.flocke.andotp.View;
package org.shadowice.flocke.andotp.Dialogs;
import android.app.AlertDialog;
import android.content.DialogInterface;
@ -45,6 +45,8 @@ import org.shadowice.flocke.andotp.Database.Entry;
import org.shadowice.flocke.andotp.R;
import org.shadowice.flocke.andotp.Utilities.Settings;
import org.shadowice.flocke.andotp.Utilities.TokenCalculator;
import org.shadowice.flocke.andotp.View.EntriesCardAdapter;
import org.shadowice.flocke.andotp.View.TagsAdapter;
import java.util.HashMap;
import java.util.List;

View file

@ -21,7 +21,7 @@
* SOFTWARE.
*/
package org.shadowice.flocke.andotp.View;
package org.shadowice.flocke.andotp.Dialogs;
import android.app.AlertDialog;
import android.content.Context;
@ -35,6 +35,7 @@ import android.widget.FrameLayout;
import android.widget.ListView;
import org.shadowice.flocke.andotp.R;
import org.shadowice.flocke.andotp.View.TagsAdapter;
import java.util.HashMap;
import java.util.concurrent.Callable;

View file

@ -50,6 +50,7 @@ import android.widget.LinearLayout;
import android.widget.Toast;
import org.shadowice.flocke.andotp.Database.Entry;
import org.shadowice.flocke.andotp.Dialogs.TagsDialog;
import org.shadowice.flocke.andotp.R;
import org.shadowice.flocke.andotp.Utilities.BackupHelper;
import org.shadowice.flocke.andotp.Utilities.Constants;