move ".views.panic" to ".panic", it has more than just Views

This commit is contained in:
Hans-Christoph Steiner 2019-06-17 11:01:25 +02:00
parent 69642d88f7
commit ef90fd2dfd
13 changed files with 17 additions and 17 deletions

View File

@ -90,7 +90,7 @@
android:exported="false"/>
<activity
android:name=".views.panic.PanicPreferencesActivity"
android:name=".panic.PanicPreferencesActivity"
android:label="@string/panic_settings"
android:parentActivityName=".views.main.MainActivity">
<meta-data
@ -105,11 +105,11 @@
</intent-filter>
</activity>
<activity
android:name=".views.panic.SelectInstalledAppsActivity"
android:parentActivityName=".views.panic.PanicPreferencesActivity"/>
android:name=".panic.SelectInstalledAppsActivity"
android:parentActivityName=".panic.PanicPreferencesActivity"/>
<activity
android:name=".views.panic.PanicResponderActivity"
android:name=".panic.PanicResponderActivity"
android:noHistory="true"
android:theme="@android:style/Theme.NoDisplay">
@ -121,7 +121,7 @@
</intent-filter>
</activity>
<activity
android:name=".views.panic.ExitActivity"
android:name=".panic.ExitActivity"
android:theme="@android:style/Theme.NoDisplay"/>
<activity
android:name=".views.hiding.CalculatorActivity"

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.content.Context;
import android.content.res.Resources;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.content.Context;
import android.support.v7.preference.Preference;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.support.v7.app.AppCompatActivity;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.os.Bundle;
import android.support.v7.app.ActionBar;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.app.Activity;
import android.content.ComponentName;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.app.Activity;
import android.content.BroadcastReceiver;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.app.Activity;
import android.support.annotation.NonNull;

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.app.Activity;
import android.support.annotation.NonNull;

View File

@ -17,7 +17,7 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import android.annotation.SuppressLint;
import android.content.res.Resources;

View File

@ -14,7 +14,7 @@
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_container"
class="org.fdroid.fdroid.views.panic.PanicPreferencesFragment"
class="org.fdroid.fdroid.panic.PanicPreferencesFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />

View File

@ -149,7 +149,7 @@
android:title="@string/panic_settings">
<intent
android:action="android.intent.action.MAIN"
android:targetClass="org.fdroid.fdroid.views.panic.PanicPreferencesActivity"
android:targetClass="org.fdroid.fdroid.panic.PanicPreferencesActivity"
android:targetPackage="@string/applicationId"/>
</android.support.v7.preference.PreferenceScreen>
</android.support.v7.preference.PreferenceCategory>

View File

@ -1,4 +1,4 @@
package org.fdroid.fdroid.views.panic;
package org.fdroid.fdroid.panic;
import org.fdroid.fdroid.data.DBHelper;
import org.fdroid.fdroid.data.FDroidProviderTest;