Skip to content

Commit

Permalink
refactor: Renamed more package names
Browse files Browse the repository at this point in the history
  • Loading branch information
itachi1706 committed Jun 13, 2024
1 parent be42969 commit 57293f2
Show file tree
Hide file tree
Showing 45 changed files with 65 additions and 63 deletions.
26 changes: 13 additions & 13 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,32 +117,32 @@
android:process=":ui"/>
<!-- Long press the QS tile to get here -->
<activity
android:name=".eggs.red_velvet_cake.EasterEgg.neko.NekoLand"
android:name=".eggs.red_velvet_cake.easter_egg.neko.NekoLand"
android:theme="@style/AppTheme.NoActionBar"
android:exported="true">
</activity>

<!-- This is where the magic happens -->
<service
android:name=".eggs.red_velvet_cake.EasterEgg.neko.NekoService"
android:name=".eggs.red_velvet_cake.easter_egg.neko.NekoService"
android:enabled="true"
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE" />

<!-- Used to show over lock screen -->
<activity
android:name=".eggs.red_velvet_cake.EasterEgg.neko.NekoLockedActivity"
android:name=".eggs.red_velvet_cake.easter_egg.neko.NekoLockedActivity"
android:excludeFromRecents="true"
android:showOnLockScreen="true"
android:theme="@style/AppTheme.Dialog.NoActionBar" />

<!-- Used to enable easter egg -->
<activity
android:name=".eggs.red_velvet_cake.EasterEgg.neko.NekoActivationActivity"
android:name=".eggs.red_velvet_cake.easter_egg.neko.NekoActivationActivity"
android:excludeFromRecents="true"
android:theme="@style/AppTheme.NoDisplay" />

<service android:name=".eggs.red_velvet_cake.EasterEgg.neko.NekoControlsService"
<service android:name=".eggs.red_velvet_cake.easter_egg.neko.NekoControlsService"
android:permission="android.permission.BIND_CONTROLS"
android:label="@string/r_egg_name"
android:icon="@drawable/r_ic_fullcat_icon"
Expand All @@ -160,7 +160,7 @@
android:icon="@drawable/q_platlogo"
android:process=":ui" />

<activity android:name=".eggs.quince_tart.EasterEgg.quares.QuaresActivity"
<activity android:name=".eggs.quince_tart.easter_egg.quares.QuaresActivity"
android:icon="@drawable/q_icon"
android:label="@string/q_egg_name"
android:theme="@style/AppTheme.QEgg.QuaresTheme" />
Expand All @@ -171,7 +171,7 @@
android:process=":ui"
android:theme="@style/AppTheme.Wallpaper.NoActionBar.FullScreen"/>
<activity
android:name=".eggs.pie.EasterEgg.paint.PaintActivity"
android:name=".eggs.pie.easter_egg.paint.PaintActivity"
android:configChanges="orientation|keyboardHidden|screenSize|uiMode"
android:label="@string/p_egg_name"
android:theme="@style/AppTheme.PieEgg" />
Expand All @@ -190,7 +190,7 @@
android:process=":ui"
android:theme="@style/AppTheme.Wallpaper.NoActionBar.FullScreen" />
<activity
android:name=".eggs.oreo.EasterEgg.octo.Ocquarium"
android:name=".eggs.oreo.easter_egg.octo.Ocquarium"
android:theme="@style/AppTheme.Wallpaper.NoActionBar.FullScreen" />

<!-- Nougat Egg Activities -->
Expand All @@ -202,7 +202,7 @@

<!-- Long press the QS tile to get here -->
<activity
android:name=".eggs.nougat.EasterEgg.neko.NekoLand"
android:name=".eggs.nougat.easter_egg.neko.NekoLand"
android:theme="@style/AppTheme.NoActionBar"
android:exported="true">
<intent-filter>
Expand All @@ -212,27 +212,27 @@

<!-- This is where the magic happens -->
<service
android:name=".eggs.nougat.EasterEgg.neko.NekoService"
android:name=".eggs.nougat.easter_egg.neko.NekoService"
android:enabled="true"
android:exported="true"
android:permission="android.permission.BIND_JOB_SERVICE" />

<!-- Used to show over lock screen -->
<activity
android:name=".eggs.nougat.EasterEgg.neko.NekoLockedActivity"
android:name=".eggs.nougat.easter_egg.neko.NekoLockedActivity"
android:excludeFromRecents="true"
android:showOnLockScreen="true"
android:theme="@style/AppTheme.Dialog.NoActionBar" />

<!-- Used to enable easter egg -->
<activity
android:name=".eggs.nougat.EasterEgg.neko.NekoActivationActivity"
android:name=".eggs.nougat.easter_egg.neko.NekoActivationActivity"
android:excludeFromRecents="true"
android:theme="@style/AppTheme.NoDisplay" />

<!-- The quick settings tile, disabled by default -->
<service
android:name=".eggs.nougat.EasterEgg.neko.NekoTile"
android:name=".eggs.nougat.easter_egg.neko.NekoTile"
android:enabled="false"
android:icon="@drawable/nougat_stat_icon"
android:label="@string/nougat_default_tile_name"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

import androidx.appcompat.app.AppCompatActivity;

import com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko.NekoActivationActivity;
import com.itachi1706.droideggs.eggs.nougat.easter_egg.neko.NekoActivationActivity;
import com.itachi1706.droideggs.R;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.annotation.TargetApi;
import android.app.Notification;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.annotation.TargetApi;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.content.ComponentName;
import android.content.pm.PackageManager;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.annotation.TargetApi;
import android.app.Dialog;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.annotation.TargetApi;
import android.app.ActionBar;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.content.DialogInterface;
import android.content.DialogInterface.OnDismissListener;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.annotation.TargetApi;
import android.app.Notification;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.annotation.TargetApi;
import android.content.Intent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.nougat.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.nougat.easter_egg.neko;

import android.content.Context;
import android.content.SharedPreferences;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

import androidx.appcompat.app.AppCompatActivity;

import com.itachi1706.droideggs.eggs.oreo.EasterEgg.octo.Ocquarium;
import com.itachi1706.droideggs.eggs.oreo.easter_egg.octo.Ocquarium;
import com.itachi1706.droideggs.R;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.oreo.EasterEgg.octo;
package com.itachi1706.droideggs.eggs.oreo.easter_egg.octo;

import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.view.ViewGroup;
import android.widget.FrameLayout;
import android.widget.ImageView;

import androidx.appcompat.app.AppCompatActivity;

import com.itachi1706.droideggs.R;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.oreo.EasterEgg.octo;
package com.itachi1706.droideggs.eggs.oreo.easter_egg.octo;

import android.animation.TimeAnimator;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.oreo.EasterEgg.octo;
package com.itachi1706.droideggs.eggs.oreo.easter_egg.octo;

import android.graphics.Canvas;
import android.graphics.Paint;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

import androidx.appcompat.app.AppCompatActivity;

import com.itachi1706.droideggs.eggs.oreo.EasterEgg.octo.Ocquarium;
import com.itachi1706.droideggs.eggs.oreo.easter_egg.octo.Ocquarium;
import com.itachi1706.droideggs.R;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
import androidx.appcompat.app.AppCompatActivity;

import com.google.android.material.snackbar.Snackbar;
import com.itachi1706.droideggs.eggs.pie.EasterEgg.paint.PaintActivity;
import com.itachi1706.droideggs.eggs.pie.easter_egg.paint.PaintActivity;

import org.json.JSONObject;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint

import android.content.Context
import android.graphics.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint

import android.content.Context
import android.os.Build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint;
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint;

import static android.view.MotionEvent.ACTION_CANCEL;
import static android.view.MotionEvent.ACTION_DOWN;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint

import android.content.Context
import android.graphics.*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint

import android.graphics.Color

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint

import java.util.LinkedList
import android.view.MotionEvent
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.pie.EasterEgg.paint
package com.itachi1706.droideggs.eggs.pie.easter_egg.paint

import android.content.Context
import android.view.WindowInsets
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

import com.google.android.material.snackbar.Snackbar;
import com.itachi1706.droideggs.PlatLogoCommon;
import com.itachi1706.droideggs.eggs.quince_tart.EasterEgg.quares.QuaresActivity;
import com.itachi1706.droideggs.eggs.quince_tart.easter_egg.quares.QuaresActivity;
import com.itachi1706.droideggs.R;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.quince_tart.EasterEgg.quares
package com.itachi1706.droideggs.eggs.quince_tart.easter_egg.quares

import android.content.Context
import android.graphics.Bitmap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.itachi1706.droideggs.eggs.quince_tart.EasterEgg.quares
package com.itachi1706.droideggs.eggs.quince_tart.easter_egg.quares

import android.app.Activity
import android.content.Context
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@

import com.google.android.material.snackbar.Snackbar;
import com.itachi1706.droideggs.R;
import com.itachi1706.droideggs.eggs.red_velvet_cake.EasterEgg.neko.NekoActivationActivity;
import com.itachi1706.droideggs.eggs.red_velvet_cake.easter_egg.neko.NekoActivationActivity;
import com.itachi1706.helperlib.helpers.PrefHelper;

import org.json.JSONObject;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.red_velvet_cake.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.red_velvet_cake.easter_egg.neko;

import android.annotation.TargetApi;
import android.app.Notification;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.itachi1706.droideggs.eggs.red_velvet_cake.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.red_velvet_cake.easter_egg.neko;

import android.annotation.TargetApi;
import android.content.Context;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
* permissions and limitations under the License.
*/

package com.itachi1706.droideggs.eggs.red_velvet_cake.EasterEgg.neko;
package com.itachi1706.droideggs.eggs.red_velvet_cake.easter_egg.neko;

import android.content.ComponentName;
import android.content.SharedPreferences;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

@file:Suppress("PackageName")

package com.itachi1706.droideggs.eggs.red_velvet_cake.EasterEgg.neko
package com.itachi1706.droideggs.eggs.red_velvet_cake.easter_egg.neko

import android.app.PendingIntent
import android.content.Intent
Expand Down
Loading

0 comments on commit 57293f2

Please sign in to comment.