Loading app/src/main/AndroidManifest.xml +8 −8 Original line number Diff line number Diff line Loading @@ -45,7 +45,7 @@ android:usesCleartextTraffic="true"> <activity android:name=".MainActivity" android:name=".ui.MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> Loading @@ -54,10 +54,10 @@ </intent-filter> <nav-graph android:value="@navigation/navigation_resource" /> </activity> <service android:name=".manager.pkg.InstallerService" /> <service android:name=".install.pkg.InstallerService" /> <receiver android:name="foundation.e.apps.manager.download.DownloadManagerBR" android:name="foundation.e.apps.install.download.DownloadManagerBR" android:exported="true"> <intent-filter> <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" /> Loading @@ -67,13 +67,13 @@ </intent-filter> </receiver> <receiver android:name=".updates.manager.UpdatesBroadcastReceiver"> <receiver android:name=".install.updates.UpdatesBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver> <receiver android:name=".receiver.PWAPlayerStatusReceiver" <receiver android:name=".install.receiver.PWAPlayerStatusReceiver" android:exported="true"> <intent-filter> <action android:name="foundation.e.pwaplayer.PWA_ADDED" /> Loading @@ -86,7 +86,7 @@ </intent-filter> </receiver> <receiver android:name=".setup.signin.LocaleChangedBroadcastReceiver"> <receiver android:name=".ui.setup.signin.LocaleChangedBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.LOCALE_CHANGED"/> </intent-filter> Loading @@ -98,10 +98,10 @@ android:authorities="${applicationId}.androidx-startup" tools:node="remove" /> <service android:name=".manager.pkg.PackageInstallerService" /> <service android:name=".install.pkg.PackageInstallerService" /> <service android:name=".splitinstall.SplitInstallService" android:name=".install.splitinstall.SplitInstallService" android:exported="true" /> </application> Loading app/src/main/java/foundation/e/apps/AppLoungeApplication.kt +5 −5 Original line number Diff line number Diff line Loading @@ -24,11 +24,11 @@ import androidx.hilt.work.HiltWorkerFactory import androidx.work.Configuration import androidx.work.ExistingPeriodicWorkPolicy import dagger.hilt.android.HiltAndroidApp import foundation.e.apps.manager.pkg.PkgManagerBR import foundation.e.apps.manager.pkg.PkgManagerModule import foundation.e.apps.manager.workmanager.InstallWorkManager import foundation.e.apps.setup.tos.TOS_VERSION import foundation.e.apps.updates.manager.UpdatesWorkManager import foundation.e.apps.install.pkg.PkgManagerBR import foundation.e.apps.install.pkg.PkgManagerModule import foundation.e.apps.install.workmanager.InstallWorkManager import foundation.e.apps.ui.setup.tos.TOS_VERSION import foundation.e.apps.install.updates.UpdatesWorkManager import foundation.e.apps.utils.modules.DataStoreModule import foundation.e.apps.utils.modules.PreferenceManagerModule import foundation.e.lib.telemetry.Telemetry Loading app/src/main/java/foundation/e/apps/api/ApiCaller.kt→app/src/main/java/foundation/e/apps/data/ApiCaller.kt +1 −1 Original line number Diff line number Diff line package foundation.e.apps.api package foundation.e.apps.data import retrofit2.Response Loading app/src/main/java/foundation/e/apps/api/BaseStoreRepository.kt→app/src/main/java/foundation/e/apps/data/BaseStoreRepository.kt +1 −1 Original line number Diff line number Diff line Loading @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ package foundation.e.apps.api package foundation.e.apps.data interface BaseStoreRepository { Loading app/src/main/java/foundation/e/apps/api/JobResult.kt→app/src/main/java/foundation/e/apps/data/JobResult.kt +1 −1 Original line number Diff line number Diff line package foundation.e.apps.api package foundation.e.apps.data import foundation.e.apps.utils.enums.ResultStatus Loading Loading
app/src/main/AndroidManifest.xml +8 −8 Original line number Diff line number Diff line Loading @@ -45,7 +45,7 @@ android:usesCleartextTraffic="true"> <activity android:name=".MainActivity" android:name=".ui.MainActivity" android:exported="true"> <intent-filter> <action android:name="android.intent.action.MAIN" /> Loading @@ -54,10 +54,10 @@ </intent-filter> <nav-graph android:value="@navigation/navigation_resource" /> </activity> <service android:name=".manager.pkg.InstallerService" /> <service android:name=".install.pkg.InstallerService" /> <receiver android:name="foundation.e.apps.manager.download.DownloadManagerBR" android:name="foundation.e.apps.install.download.DownloadManagerBR" android:exported="true"> <intent-filter> <action android:name="android.intent.action.DOWNLOAD_NOTIFICATION_CLICKED" /> Loading @@ -67,13 +67,13 @@ </intent-filter> </receiver> <receiver android:name=".updates.manager.UpdatesBroadcastReceiver"> <receiver android:name=".install.updates.UpdatesBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.BOOT_COMPLETED" /> </intent-filter> </receiver> <receiver android:name=".receiver.PWAPlayerStatusReceiver" <receiver android:name=".install.receiver.PWAPlayerStatusReceiver" android:exported="true"> <intent-filter> <action android:name="foundation.e.pwaplayer.PWA_ADDED" /> Loading @@ -86,7 +86,7 @@ </intent-filter> </receiver> <receiver android:name=".setup.signin.LocaleChangedBroadcastReceiver"> <receiver android:name=".ui.setup.signin.LocaleChangedBroadcastReceiver"> <intent-filter> <action android:name="android.intent.action.LOCALE_CHANGED"/> </intent-filter> Loading @@ -98,10 +98,10 @@ android:authorities="${applicationId}.androidx-startup" tools:node="remove" /> <service android:name=".manager.pkg.PackageInstallerService" /> <service android:name=".install.pkg.PackageInstallerService" /> <service android:name=".splitinstall.SplitInstallService" android:name=".install.splitinstall.SplitInstallService" android:exported="true" /> </application> Loading
app/src/main/java/foundation/e/apps/AppLoungeApplication.kt +5 −5 Original line number Diff line number Diff line Loading @@ -24,11 +24,11 @@ import androidx.hilt.work.HiltWorkerFactory import androidx.work.Configuration import androidx.work.ExistingPeriodicWorkPolicy import dagger.hilt.android.HiltAndroidApp import foundation.e.apps.manager.pkg.PkgManagerBR import foundation.e.apps.manager.pkg.PkgManagerModule import foundation.e.apps.manager.workmanager.InstallWorkManager import foundation.e.apps.setup.tos.TOS_VERSION import foundation.e.apps.updates.manager.UpdatesWorkManager import foundation.e.apps.install.pkg.PkgManagerBR import foundation.e.apps.install.pkg.PkgManagerModule import foundation.e.apps.install.workmanager.InstallWorkManager import foundation.e.apps.ui.setup.tos.TOS_VERSION import foundation.e.apps.install.updates.UpdatesWorkManager import foundation.e.apps.utils.modules.DataStoreModule import foundation.e.apps.utils.modules.PreferenceManagerModule import foundation.e.lib.telemetry.Telemetry Loading
app/src/main/java/foundation/e/apps/api/ApiCaller.kt→app/src/main/java/foundation/e/apps/data/ApiCaller.kt +1 −1 Original line number Diff line number Diff line package foundation.e.apps.api package foundation.e.apps.data import retrofit2.Response Loading
app/src/main/java/foundation/e/apps/api/BaseStoreRepository.kt→app/src/main/java/foundation/e/apps/data/BaseStoreRepository.kt +1 −1 Original line number Diff line number Diff line Loading @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ package foundation.e.apps.api package foundation.e.apps.data interface BaseStoreRepository { Loading
app/src/main/java/foundation/e/apps/api/JobResult.kt→app/src/main/java/foundation/e/apps/data/JobResult.kt +1 −1 Original line number Diff line number Diff line package foundation.e.apps.api package foundation.e.apps.data import foundation.e.apps.utils.enums.ResultStatus Loading