diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index f6169f539..9f013658b 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -16,7 +16,7 @@
@@ -111,7 +111,6 @@
-
@@ -124,7 +123,6 @@
-
diff --git a/app/src/main/java/in/dragons/galaxy/AboutActivity.java b/app/src/main/java/in/dragons/galaxy/AboutActivity.java
index ef6e1a2a3..7b721b7f9 100644
--- a/app/src/main/java/in/dragons/galaxy/AboutActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/AboutActivity.java
@@ -17,7 +17,7 @@ import android.view.View;
import android.widget.TextView;
import android.widget.Toast;
-public class AboutActivity extends YalpStoreActivity implements NavigationView.OnNavigationItemSelectedListener{
+public class AboutActivity extends GalaxyActivity implements NavigationView.OnNavigationItemSelectedListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
diff --git a/app/src/main/java/in/dragons/galaxy/AppListActivity.java b/app/src/main/java/in/dragons/galaxy/AppListActivity.java
index e64ff4c43..00b2eb620 100644
--- a/app/src/main/java/in/dragons/galaxy/AppListActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/AppListActivity.java
@@ -28,7 +28,7 @@ import java.util.List;
import java.util.Map;
import java.util.Set;
-abstract public class AppListActivity extends YalpStoreActivity implements NavigationView.OnNavigationItemSelectedListener{
+abstract public class AppListActivity extends GalaxyActivity implements NavigationView.OnNavigationItemSelectedListener{
protected ListView listView;
protected Map listItems = new HashMap<>();
@@ -108,7 +108,7 @@ abstract public class AppListActivity extends YalpStoreActivity implements Navig
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
- if (YalpStorePermissionManager.isGranted(requestCode, permissions, grantResults)) {
+ if (GalaxyPermissionManager.isGranted(requestCode, permissions, grantResults)) {
Log.i(getClass().getSimpleName(), "User granted the write permission");
new ButtonDownload(this, DetailsActivity.app).download();
}
diff --git a/app/src/main/java/in/dragons/galaxy/CategoryListActivity.java b/app/src/main/java/in/dragons/galaxy/CategoryListActivity.java
index 47457fbb4..260567f97 100644
--- a/app/src/main/java/in/dragons/galaxy/CategoryListActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/CategoryListActivity.java
@@ -14,7 +14,7 @@ import in.dragons.galaxy.task.playstore.CategoryListTask;
import in.dragons.galaxy.task.playstore.CategoryTask;
-public class CategoryListActivity extends YalpStoreActivity implements NavigationView.OnNavigationItemSelectedListener{
+public class CategoryListActivity extends GalaxyActivity implements NavigationView.OnNavigationItemSelectedListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
diff --git a/app/src/main/java/in/dragons/galaxy/DebugHttpClientAdapter.java b/app/src/main/java/in/dragons/galaxy/DebugHttpClientAdapter.java
index da1ef528b..08ca65e47 100644
--- a/app/src/main/java/in/dragons/galaxy/DebugHttpClientAdapter.java
+++ b/app/src/main/java/in/dragons/galaxy/DebugHttpClientAdapter.java
@@ -13,7 +13,7 @@ import java.util.Map;
public class DebugHttpClientAdapter extends NativeHttpClientAdapter {
- static private final String DEBUG_DIRECTORY = "yalp-store-debug";
+ static private final String DEBUG_DIRECTORY = "galaxy-store-debug";
static private File dumpDirectory;
public DebugHttpClientAdapter() {
diff --git a/app/src/main/java/in/dragons/galaxy/DetailsActivity.java b/app/src/main/java/in/dragons/galaxy/DetailsActivity.java
index ec48dd3ce..bc072e3f2 100644
--- a/app/src/main/java/in/dragons/galaxy/DetailsActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/DetailsActivity.java
@@ -28,7 +28,7 @@ import in.dragons.galaxy.model.App;
import in.dragons.galaxy.task.playstore.CloneableTask;
import in.dragons.galaxy.task.playstore.DetailsTask;
-public class DetailsActivity extends YalpStoreActivity implements NavigationView.OnNavigationItemSelectedListener{
+public class DetailsActivity extends GalaxyActivity implements NavigationView.OnNavigationItemSelectedListener{
static private final String INTENT_PACKAGE_NAME = "INTENT_PACKAGE_NAME";
@@ -98,7 +98,7 @@ public class DetailsActivity extends YalpStoreActivity implements NavigationView
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
- if (YalpStorePermissionManager.isGranted(requestCode, permissions, grantResults)) {
+ if (GalaxyPermissionManager.isGranted(requestCode, permissions, grantResults)) {
Log.i(getClass().getSimpleName(), "User granted the write permission");
if (null == downloadOrInstallFragment && null != app) {
downloadOrInstallFragment = new DownloadOrInstall(this, app);
diff --git a/app/src/main/java/in/dragons/galaxy/DeviceInfoActivity.java b/app/src/main/java/in/dragons/galaxy/DeviceInfoActivity.java
index eb4594201..3b8cb3d3f 100644
--- a/app/src/main/java/in/dragons/galaxy/DeviceInfoActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/DeviceInfoActivity.java
@@ -13,7 +13,7 @@ import java.util.Collections;
import java.util.List;
import java.util.Properties;
-public class DeviceInfoActivity extends YalpStoreActivity {
+public class DeviceInfoActivity extends GalaxyActivity {
public static final String INTENT_DEVICE_NAME = "INTENT_DEVICE_NAME";
diff --git a/app/src/main/java/in/dragons/galaxy/DirectDownloadActivity.java b/app/src/main/java/in/dragons/galaxy/DirectDownloadActivity.java
index 9cd1a76d8..64e87562d 100644
--- a/app/src/main/java/in/dragons/galaxy/DirectDownloadActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/DirectDownloadActivity.java
@@ -10,7 +10,7 @@ import in.dragons.galaxy.model.App;
import in.dragons.galaxy.task.playstore.DetailsTask;
import in.dragons.galaxy.task.playstore.PurchaseTask;
-public class DirectDownloadActivity extends YalpStoreActivity {
+public class DirectDownloadActivity extends GalaxyActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
@@ -20,7 +20,7 @@ public class DirectDownloadActivity extends YalpStoreActivity {
finish();
return;
}
- if (!new YalpStorePermissionManager(this).checkPermission()) {
+ if (!new GalaxyPermissionManager(this).checkPermission()) {
startActivity(DetailsActivity.getDetailsIntent(this, packageName));
finish();
return;
diff --git a/app/src/main/java/in/dragons/galaxy/Downloader.java b/app/src/main/java/in/dragons/galaxy/Downloader.java
index c6f09fd58..9cb9ca32c 100644
--- a/app/src/main/java/in/dragons/galaxy/Downloader.java
+++ b/app/src/main/java/in/dragons/galaxy/Downloader.java
@@ -45,7 +45,7 @@ public class Downloader {
if (deliveryData.getAdditionalFileCount() > 1) {
bytesNeeded += deliveryData.getAdditionalFile(1).getSize();
}
- StatFs stat = new StatFs(Paths.getYalpPath(context).getPath());
+ StatFs stat = new StatFs(Paths.getDownloadPath(context).getPath());
return (long) stat.getBlockSize() * (long) stat.getAvailableBlocks() >= bytesNeeded;
}
diff --git a/app/src/main/java/in/dragons/galaxy/FlagDialogBuilder.java b/app/src/main/java/in/dragons/galaxy/FlagDialogBuilder.java
index f6f9035f5..6e653958e 100644
--- a/app/src/main/java/in/dragons/galaxy/FlagDialogBuilder.java
+++ b/app/src/main/java/in/dragons/galaxy/FlagDialogBuilder.java
@@ -24,10 +24,10 @@ public class FlagDialogBuilder {
};
static private final String[] reasonLabels = new String[8];
- private YalpStoreActivity activity;
+ private GalaxyActivity activity;
private App app;
- public FlagDialogBuilder setActivity(YalpStoreActivity activity) {
+ public FlagDialogBuilder setActivity(GalaxyActivity activity) {
this.activity = activity;
reasonLabels[0] = activity.getString(R.string.flag_sexual_content);
reasonLabels[1] = activity.getString(R.string.flag_graphic_violence);
diff --git a/app/src/main/java/in/dragons/galaxy/YalpStoreActivity.java b/app/src/main/java/in/dragons/galaxy/GalaxyActivity.java
similarity index 95%
rename from app/src/main/java/in/dragons/galaxy/YalpStoreActivity.java
rename to app/src/main/java/in/dragons/galaxy/GalaxyActivity.java
index dc2a89551..6e9148356 100644
--- a/app/src/main/java/in/dragons/galaxy/YalpStoreActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/GalaxyActivity.java
@@ -24,19 +24,19 @@ import in.dragons.galaxy.fragment.FilterMenu;
import static in.dragons.galaxy.PlayStoreApiAuthenticator.PREFERENCE_EMAIL;
-public abstract class YalpStoreActivity extends AppCompatActivity {
+public abstract class GalaxyActivity extends AppCompatActivity {
static protected boolean logout = false;
public static void cascadeFinish() {
- YalpStoreActivity.logout = true;
+ GalaxyActivity.logout = true;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
Log.v(getClass().getSimpleName(), "Starting activity");
logout = false;
- if (((YalpStoreApplication) getApplication()).isTv()) {
+ if (((GalaxyApplication) getApplication()).isTv()) {
requestWindowFeature(Window.FEATURE_OPTIONS_PANEL);
}
ThemeManager.setTheme(this);
@@ -119,7 +119,7 @@ public abstract class YalpStoreActivity extends AppCompatActivity {
@Override
public boolean onQueryTextSubmit(String query) {
- Intent i = new Intent(YalpStoreActivity.this, SearchActivity.class);
+ Intent i = new Intent(GalaxyActivity.this, SearchActivity.class);
i.setAction(Intent.ACTION_SEARCH);
i.putExtra(SearchManager.QUERY, query);
startActivity(i);
diff --git a/app/src/main/java/in/dragons/galaxy/YalpStoreApplication.java b/app/src/main/java/in/dragons/galaxy/GalaxyApplication.java
similarity index 98%
rename from app/src/main/java/in/dragons/galaxy/YalpStoreApplication.java
rename to app/src/main/java/in/dragons/galaxy/GalaxyApplication.java
index 0d1e28657..4b508cefa 100644
--- a/app/src/main/java/in/dragons/galaxy/YalpStoreApplication.java
+++ b/app/src/main/java/in/dragons/galaxy/GalaxyApplication.java
@@ -17,7 +17,7 @@ import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
-public class YalpStoreApplication extends Application {
+public class GalaxyApplication extends Application {
private boolean isBackgroundUpdating = false;
private List pendingUpdates = new ArrayList<>();
diff --git a/app/src/main/java/in/dragons/galaxy/YalpStorePermissionManager.java b/app/src/main/java/in/dragons/galaxy/GalaxyPermissionManager.java
similarity index 93%
rename from app/src/main/java/in/dragons/galaxy/YalpStorePermissionManager.java
rename to app/src/main/java/in/dragons/galaxy/GalaxyPermissionManager.java
index f8900ace6..893e43689 100644
--- a/app/src/main/java/in/dragons/galaxy/YalpStorePermissionManager.java
+++ b/app/src/main/java/in/dragons/galaxy/GalaxyPermissionManager.java
@@ -8,13 +8,13 @@ import android.util.Log;
import java.lang.ref.WeakReference;
-public class YalpStorePermissionManager {
+public class GalaxyPermissionManager {
private static final int PERMISSIONS_REQUEST_CODE = 384;
private WeakReference activityRef = new WeakReference<>(null);
- public YalpStorePermissionManager(Activity activity) {
+ public GalaxyPermissionManager(Activity activity) {
this.activityRef = new WeakReference<>(activity);
}
diff --git a/app/src/main/java/in/dragons/galaxy/YalpSuggestionProvider.java b/app/src/main/java/in/dragons/galaxy/GalaxySuggestionProvider.java
similarity index 98%
rename from app/src/main/java/in/dragons/galaxy/YalpSuggestionProvider.java
rename to app/src/main/java/in/dragons/galaxy/GalaxySuggestionProvider.java
index 9e37e769d..0253b1a22 100644
--- a/app/src/main/java/in/dragons/galaxy/YalpSuggestionProvider.java
+++ b/app/src/main/java/in/dragons/galaxy/GalaxySuggestionProvider.java
@@ -17,7 +17,7 @@ import com.github.yeriomin.playstoreapi.SearchSuggestEntry;
import java.io.File;
import java.io.IOException;
-public class YalpSuggestionProvider extends ContentProvider {
+public class GalaxySuggestionProvider extends ContentProvider {
@Override
public boolean onCreate() {
diff --git a/app/src/main/java/in/dragons/galaxy/GlobalDownloadReceiver.java b/app/src/main/java/in/dragons/galaxy/GlobalDownloadReceiver.java
index cf80342dc..f1cc19bba 100644
--- a/app/src/main/java/in/dragons/galaxy/GlobalDownloadReceiver.java
+++ b/app/src/main/java/in/dragons/galaxy/GlobalDownloadReceiver.java
@@ -65,7 +65,7 @@ public class GlobalDownloadReceiver extends DownloadReceiver {
} else {
Log.i(getClass().getSimpleName(), "Notifying about download completion of " + app.getPackageName());
notifyDownloadComplete(app);
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
}
}
diff --git a/app/src/main/java/in/dragons/galaxy/GlobalInstallReceiver.java b/app/src/main/java/in/dragons/galaxy/GlobalInstallReceiver.java
index a1243eb56..c4d19b788 100644
--- a/app/src/main/java/in/dragons/galaxy/GlobalInstallReceiver.java
+++ b/app/src/main/java/in/dragons/galaxy/GlobalInstallReceiver.java
@@ -38,7 +38,7 @@ public class GlobalInstallReceiver extends BroadcastReceiver {
if (null != DetailsActivity.app && packageName.equals(DetailsActivity.app.getPackageName())) {
updateDetails(actionIsInstall(intent));
}
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(packageName, actionIsInstall(intent));
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(packageName, actionIsInstall(intent));
if (needToRemoveApk(context) && actionIsInstall(intent)) {
App app = getApp(context, packageName);
File apkPath = Paths.getApkPath(context, app.getPackageName(), app.getVersionCode());
diff --git a/app/src/main/java/in/dragons/galaxy/InstallerAbstract.java b/app/src/main/java/in/dragons/galaxy/InstallerAbstract.java
index 78aefbbcc..f02c1fb80 100644
--- a/app/src/main/java/in/dragons/galaxy/InstallerAbstract.java
+++ b/app/src/main/java/in/dragons/galaxy/InstallerAbstract.java
@@ -65,7 +65,7 @@ public abstract class InstallerAbstract {
}
if (!new ApkSignatureVerifier(context).match(app.getPackageName(), apkPath)) {
Log.i(getClass().getSimpleName(), "Signature mismatch for " + app.getPackageName());
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
if (ContextUtil.isAlive(context)) {
getSignatureMismatchDialog(app).show();
} else {
diff --git a/app/src/main/java/in/dragons/galaxy/InstallerBackground.java b/app/src/main/java/in/dragons/galaxy/InstallerBackground.java
index 4d0bdc8a6..690ebbf16 100644
--- a/app/src/main/java/in/dragons/galaxy/InstallerBackground.java
+++ b/app/src/main/java/in/dragons/galaxy/InstallerBackground.java
@@ -21,7 +21,7 @@ abstract public class InstallerBackground extends InstallerAbstract {
}
if (background && !new PermissionsComparator(context).isSame(app)) {
Log.i(getClass().getSimpleName(), "New permissions for " + app.getPackageName());
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
notifyNewPermissions(app);
return false;
}
diff --git a/app/src/main/java/in/dragons/galaxy/InstallerPrivileged.java b/app/src/main/java/in/dragons/galaxy/InstallerPrivileged.java
index 4e29346d9..299b00c09 100644
--- a/app/src/main/java/in/dragons/galaxy/InstallerPrivileged.java
+++ b/app/src/main/java/in/dragons/galaxy/InstallerPrivileged.java
@@ -75,7 +75,7 @@ public class InstallerPrivileged extends InstallerBackground {
}
if (context.getPackageManager().checkPermission(Manifest.permission.INSTALL_PACKAGES, BuildConfig.APPLICATION_ID) != PackageManager.PERMISSION_GRANTED) {
Log.i(getClass().getSimpleName(), Manifest.permission.INSTALL_PACKAGES + " not granted");
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
notifyAndToast(R.string.notification_not_privileged, R.string.pref_not_privileged, app);
return false;
}
@@ -88,7 +88,7 @@ public class InstallerPrivileged extends InstallerBackground {
File apkFile = Paths.getApkPath(context, app.getPackageName(), app.getVersionCode());
if (!apkFile.exists()) {
Log.e(getClass().getSimpleName(), "Installation requested for apk " + apkFile.getAbsolutePath() + " which does not exist");
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
sendBroadcast(app.getPackageName(), false);
return;
}
@@ -98,7 +98,7 @@ public class InstallerPrivileged extends InstallerBackground {
pm.getClass().getMethod("installPackage", types).invoke(pm, Uri.fromFile(apkFile), new InstallObserver(app), INSTALL_REPLACE_EXISTING, BuildConfig.APPLICATION_ID);
} catch (NoSuchMethodException | IllegalArgumentException | IllegalAccessException | InvocationTargetException e) {
Log.e(getClass().getSimpleName(), "Could not start privileged installation: " + e.getClass().getName() + " " + e.getMessage());
- ((YalpStoreApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
+ ((GalaxyApplication) context.getApplicationContext()).removePendingUpdate(app.getPackageName());
sendBroadcast(app.getPackageName(), false);
}
}
diff --git a/app/src/main/java/in/dragons/galaxy/Paths.java b/app/src/main/java/in/dragons/galaxy/Paths.java
index 98d14957d..3f7d7785c 100644
--- a/app/src/main/java/in/dragons/galaxy/Paths.java
+++ b/app/src/main/java/in/dragons/galaxy/Paths.java
@@ -33,7 +33,7 @@ public class Paths {
return storageRoot;
}
- static public File getYalpPath(Context context) {
+ static public File getDownloadPath(Context context) {
return new File(
getStorageRoot(context),
PreferenceManager.getDefaultSharedPreferences(context).getString(PreferenceActivity.PREFERENCE_DOWNLOAD_DIRECTORY, "")
@@ -42,7 +42,7 @@ public class Paths {
static public File getApkPath(Context context, String packageName, int version) {
String filename = packageName + "." + String.valueOf(version) + ".apk";
- return new File(getYalpPath(context), filename);
+ return new File(getDownloadPath(context), filename);
}
static public File getDeltaPath(Context context, String packageName, int version) {
diff --git a/app/src/main/java/in/dragons/galaxy/PreferenceActivity.java b/app/src/main/java/in/dragons/galaxy/PreferenceActivity.java
index 8ed1b0d7d..2dc657b9d 100644
--- a/app/src/main/java/in/dragons/galaxy/PreferenceActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/PreferenceActivity.java
@@ -85,7 +85,7 @@ public class PreferenceActivity extends android.preference.PreferenceActivity {
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
- if (!YalpStorePermissionManager.isGranted(requestCode, permissions, grantResults)) {
+ if (!GalaxyPermissionManager.isGranted(requestCode, permissions, grantResults)) {
Log.i(getClass().getSimpleName(), "User denied the write permission");
finish();
}
diff --git a/app/src/main/java/in/dragons/galaxy/SpoofDeviceManager.java b/app/src/main/java/in/dragons/galaxy/SpoofDeviceManager.java
index db5f1fb19..5dd83825b 100644
--- a/app/src/main/java/in/dragons/galaxy/SpoofDeviceManager.java
+++ b/app/src/main/java/in/dragons/galaxy/SpoofDeviceManager.java
@@ -41,12 +41,12 @@ public class SpoofDeviceManager {
devices = getDevicesFromApk();
putDevicesToSharedPreferences(devices);
}
- devices.putAll(getDevicesFromYalpDirectory());
+ devices.putAll(getDevicesFromDownloadDirectory());
return devices;
}
public Properties getProperties(String entryName) {
- File defaultDirectoryFile = new File(Paths.getYalpPath(context), entryName);
+ File defaultDirectoryFile = new File(Paths.getDownloadPath(context), entryName);
if (defaultDirectoryFile.exists()) {
Log.i(getClass().getSimpleName(), "Loading device info from " + defaultDirectoryFile.getAbsolutePath());
return getProperties(defaultDirectoryFile);
@@ -125,7 +125,7 @@ public class SpoofDeviceManager {
return new JarFile(apk);
}
} catch (IOException e) {
- Log.e(getClass().getSimpleName(), "Could not open Yalp Store apk as a jar file: " + e.getMessage());
+ Log.e(getClass().getSimpleName(), "Could not open Galaxy Store apk as a jar file: " + e.getMessage());
}
return null;
}
@@ -142,9 +142,9 @@ public class SpoofDeviceManager {
return null;
}
- private Map getDevicesFromYalpDirectory() {
+ private Map getDevicesFromDownloadDirectory() {
Map deviceNames = new HashMap<>();
- File defaultDir = Paths.getYalpPath(context);
+ File defaultDir = Paths.getDownloadPath(context);
if (!defaultDir.exists() || null == defaultDir.listFiles()) {
return deviceNames;
}
diff --git a/app/src/main/java/in/dragons/galaxy/ThemeManager.java b/app/src/main/java/in/dragons/galaxy/ThemeManager.java
index 4e4db99b4..fd5440ef2 100644
--- a/app/src/main/java/in/dragons/galaxy/ThemeManager.java
+++ b/app/src/main/java/in/dragons/galaxy/ThemeManager.java
@@ -51,6 +51,6 @@ public class ThemeManager {
}
static private boolean isAmazonTv(Activity activity) {
- return ((YalpStoreApplication) activity.getApplication()).isTv() && Build.MANUFACTURER.toLowerCase().contains("amazon");
+ return ((GalaxyApplication) activity.getApplication()).isTv() && Build.MANUFACTURER.toLowerCase().contains("amazon");
}
}
diff --git a/app/src/main/java/in/dragons/galaxy/UpdatableAppsActivity.java b/app/src/main/java/in/dragons/galaxy/UpdatableAppsActivity.java
index 8df8e7195..98f1e3084 100644
--- a/app/src/main/java/in/dragons/galaxy/UpdatableAppsActivity.java
+++ b/app/src/main/java/in/dragons/galaxy/UpdatableAppsActivity.java
@@ -57,7 +57,7 @@ public class UpdatableAppsActivity extends AppListActivity {
@Override
public void onRequestPermissionsResult(int requestCode, String permissions[], int[] grantResults) {
- if (YalpStorePermissionManager.isGranted(requestCode, permissions, grantResults)) {
+ if (GalaxyPermissionManager.isGranted(requestCode, permissions, grantResults)) {
Log.i(getClass().getSimpleName(), "User granted the write permission");
launchUpdateAll();
}
@@ -104,7 +104,7 @@ public class UpdatableAppsActivity extends AppListActivity {
}
public void launchUpdateAll() {
- ((YalpStoreApplication) getApplicationContext()).setBackgroundUpdating(true);
+ ((GalaxyApplication) getApplicationContext()).setBackgroundUpdating(true);
new UpdateChecker().onReceive(UpdatableAppsActivity.this, getIntent());
Button button = (Button) findViewById(R.id.main_button);
button.setEnabled(false);
diff --git a/app/src/main/java/in/dragons/galaxy/UpdateAllReceiver.java b/app/src/main/java/in/dragons/galaxy/UpdateAllReceiver.java
index 0cab16c8a..6f78ecce9 100644
--- a/app/src/main/java/in/dragons/galaxy/UpdateAllReceiver.java
+++ b/app/src/main/java/in/dragons/galaxy/UpdateAllReceiver.java
@@ -26,7 +26,7 @@ public class UpdateAllReceiver extends BroadcastReceiver {
filter.addAction(ACTION_ALL_UPDATES_COMPLETE);
filter.addAction(ACTION_APP_UPDATE_COMPLETE);
activity.registerReceiver(this, filter);
- if (!((YalpStoreApplication) activity.getApplication()).isBackgroundUpdating()) {
+ if (!((GalaxyApplication) activity.getApplication()).isBackgroundUpdating()) {
enableButton();
}
}
@@ -37,7 +37,7 @@ public class UpdateAllReceiver extends BroadcastReceiver {
return;
}
if (intent.getAction().equals(ACTION_ALL_UPDATES_COMPLETE)) {
- ((YalpStoreApplication) activity.getApplication()).setBackgroundUpdating(false);
+ ((GalaxyApplication) activity.getApplication()).setBackgroundUpdating(false);
enableButton();
} else if (intent.getAction().equals(ACTION_APP_UPDATE_COMPLETE)) {
processAppUpdate(
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/FilterMenu.java b/app/src/main/java/in/dragons/galaxy/fragment/FilterMenu.java
index 0e19aebe5..b48868a82 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/FilterMenu.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/FilterMenu.java
@@ -13,7 +13,7 @@ import android.widget.ArrayAdapter;
import in.dragons.galaxy.CategoryManager;
import in.dragons.galaxy.R;
import in.dragons.galaxy.Util;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
import in.dragons.galaxy.model.Filter;
import java.util.HashMap;
@@ -33,9 +33,9 @@ public class FilterMenu {
static private final Map ratingLabels = new HashMap<>();
static private final Map downloadsLabels = new HashMap<>();
- private YalpStoreActivity activity;
+ private GalaxyActivity activity;
- public FilterMenu(YalpStoreActivity activity) {
+ public FilterMenu(GalaxyActivity activity) {
this.activity = activity;
String[] ratingValues = activity.getResources().getStringArray(R.array.filterRatingValues);
for (int i = 0; i < ratingValues.length; i++) {
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/details/Abstract.java b/app/src/main/java/in/dragons/galaxy/fragment/details/Abstract.java
index 57d2789e8..aea95e56e 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/details/Abstract.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/details/Abstract.java
@@ -5,17 +5,17 @@ import android.widget.LinearLayout;
import android.widget.TextView;
import in.dragons.galaxy.R;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
import in.dragons.galaxy.model.App;
public abstract class Abstract {
- protected YalpStoreActivity activity;
+ protected GalaxyActivity activity;
protected App app;
abstract public void draw();
- public Abstract(YalpStoreActivity activity, App app) {
+ public Abstract(GalaxyActivity activity, App app) {
this.activity = activity;
this.app = app;
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/details/Button.java b/app/src/main/java/in/dragons/galaxy/fragment/details/Button.java
index 5f82a40c8..68c687607 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/details/Button.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/details/Button.java
@@ -3,14 +3,14 @@ package in.dragons.galaxy.fragment.details;
import android.content.pm.PackageManager;
import android.view.View;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
import in.dragons.galaxy.model.App;
public abstract class Button extends Abstract {
protected View button;
- public Button(YalpStoreActivity activity, App app) {
+ public Button(GalaxyActivity activity, App app) {
super(activity, app);
this.button = getButton();
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonDownload.java b/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonDownload.java
index 13c5e48b3..a43dc6199 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonDownload.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonDownload.java
@@ -16,8 +16,8 @@ import in.dragons.galaxy.Downloader;
import in.dragons.galaxy.ManualDownloadActivity;
import in.dragons.galaxy.Paths;
import in.dragons.galaxy.R;
-import in.dragons.galaxy.YalpStoreActivity;
-import in.dragons.galaxy.YalpStorePermissionManager;
+import in.dragons.galaxy.GalaxyActivity;
+import in.dragons.galaxy.GalaxyPermissionManager;
import in.dragons.galaxy.model.App;
import in.dragons.galaxy.selfupdate.UpdaterFactory;
import in.dragons.galaxy.task.playstore.PurchaseTask;
@@ -29,7 +29,7 @@ import static in.dragons.galaxy.DownloadState.TriggeredBy.MANUAL_DOWNLOAD_BUTTON
public class ButtonDownload extends Button {
- public ButtonDownload(YalpStoreActivity activity, App app) {
+ public ButtonDownload(GalaxyActivity activity, App app) {
super(activity, app);
}
@@ -64,7 +64,7 @@ public class ButtonDownload extends Button {
public void checkAndDownload() {
button.setVisibility(View.GONE);
View buttonCancel = activity.findViewById(R.id.cancel);
- YalpStorePermissionManager permissionManager = new YalpStorePermissionManager(activity);
+ GalaxyPermissionManager permissionManager = new GalaxyPermissionManager(activity);
if (app.getVersionCode() == 0 && !(activity instanceof ManualDownloadActivity)) {
activity.startActivity(new Intent(activity, ManualDownloadActivity.class));
} else if (permissionManager.checkPermission()) {
@@ -102,12 +102,12 @@ public class ButtonDownload extends Button {
AndroidAppDeliveryData.newBuilder().setDownloadUrl(UpdaterFactory.get(activity).getUrlString(app.getVersionCode())).build()
);
} else {
- boolean writePermission = new YalpStorePermissionManager(activity).checkPermission();
+ boolean writePermission = new GalaxyPermissionManager(activity).checkPermission();
Log.i(getClass().getSimpleName(), "Write permission granted - " + writePermission);
if (writePermission && prepareDownloadsDir()) {
getPurchaseTask().execute();
} else {
- File dir = Paths.getYalpPath(activity);
+ File dir = Paths.getDownloadPath(activity);
Log.i(getClass().getSimpleName(), dir.getAbsolutePath() + " exists=" + dir.exists() + ", isDirectory=" + dir.isDirectory() + ", writable=" + dir.canWrite());
ContextUtil.toast(this.activity.getApplicationContext(), R.string.error_downloads_directory_not_writable);
}
@@ -115,7 +115,7 @@ public class ButtonDownload extends Button {
}
private boolean prepareDownloadsDir() {
- File dir = Paths.getYalpPath(activity);
+ File dir = Paths.getDownloadPath(activity);
if (!dir.exists()) {
dir.mkdirs();
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonRun.java b/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonRun.java
index 2dbed3c89..d73d92286 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonRun.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonRun.java
@@ -9,7 +9,7 @@ import android.view.View;
import in.dragons.galaxy.DetailsActivity;
import in.dragons.galaxy.R;
-import in.dragons.galaxy.YalpStoreApplication;
+import in.dragons.galaxy.GalaxyApplication;
import in.dragons.galaxy.model.App;
public class ButtonRun extends Button {
@@ -46,7 +46,7 @@ public class ButtonRun extends Button {
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
private Intent getLaunchIntent() {
Intent i = activity.getPackageManager().getLaunchIntentForPackage(app.getPackageName());
- boolean isTv = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP && ((YalpStoreApplication) activity.getApplication()).isTv();
+ boolean isTv = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP && ((GalaxyApplication) activity.getApplication()).isTv();
if (isTv) {
Intent l = activity.getPackageManager().getLeanbackLaunchIntentForPackage(app.getPackageName());
if (null != l) {
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonUninstall.java b/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonUninstall.java
index 4b8147850..cd3d1bb11 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonUninstall.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/details/ButtonUninstall.java
@@ -5,14 +5,14 @@ import android.net.Uri;
import android.view.View;
import in.dragons.galaxy.R;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
import in.dragons.galaxy.model.App;
import in.dragons.galaxy.task.CheckShellTask;
import in.dragons.galaxy.task.UninstallSystemAppTask;
public class ButtonUninstall extends Button {
- public ButtonUninstall(YalpStoreActivity activity, App app) {
+ public ButtonUninstall(GalaxyActivity activity, App app) {
super(activity, app);
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/details/DownloadOptions.java b/app/src/main/java/in/dragons/galaxy/fragment/details/DownloadOptions.java
index 32511cbd0..f0f4603ec 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/details/DownloadOptions.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/details/DownloadOptions.java
@@ -17,7 +17,7 @@ import in.dragons.galaxy.FlagDialogBuilder;
import in.dragons.galaxy.InstalledApkCopier;
import in.dragons.galaxy.ManualDownloadActivity;
import in.dragons.galaxy.R;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
import in.dragons.galaxy.model.App;
import in.dragons.galaxy.task.CheckShellTask;
import in.dragons.galaxy.task.ConvertToNormalTask;
@@ -26,7 +26,7 @@ import in.dragons.galaxy.task.SystemRemountTask;
public class DownloadOptions extends Abstract {
- public DownloadOptions(YalpStoreActivity activity, App app) {
+ public DownloadOptions(GalaxyActivity activity, App app) {
super(activity, app);
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/preference/Device.java b/app/src/main/java/in/dragons/galaxy/fragment/preference/Device.java
index f11b44019..ac9223ef0 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/preference/Device.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/preference/Device.java
@@ -19,7 +19,7 @@ import in.dragons.galaxy.PreferenceActivity;
import in.dragons.galaxy.R;
import in.dragons.galaxy.SpoofDeviceManager;
import in.dragons.galaxy.Util;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
import java.util.LinkedHashMap;
import java.util.Locale;
@@ -129,7 +129,7 @@ public class Device extends List {
private void finishAll() {
new PlayStoreApiAuthenticator(activity.getApplicationContext()).logout();
- YalpStoreActivity.cascadeFinish();
+ GalaxyActivity.cascadeFinish();
activity.finish();
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/preference/DownloadDirectory.java b/app/src/main/java/in/dragons/galaxy/fragment/preference/DownloadDirectory.java
index ab5f7e3a9..03142b7d5 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/preference/DownloadDirectory.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/preference/DownloadDirectory.java
@@ -12,7 +12,7 @@ import in.dragons.galaxy.ContextUtil;
import in.dragons.galaxy.Paths;
import in.dragons.galaxy.PreferenceActivity;
import in.dragons.galaxy.R;
-import in.dragons.galaxy.YalpStorePermissionManager;
+import in.dragons.galaxy.GalaxyPermissionManager;
import java.io.File;
import java.io.IOException;
@@ -28,11 +28,11 @@ public class DownloadDirectory extends Abstract {
@Override
public void draw() {
- preference.setSummary(Paths.getYalpPath(activity).getAbsolutePath());
+ preference.setSummary(Paths.getDownloadPath(activity).getAbsolutePath());
preference.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
@Override
public boolean onPreferenceClick(Preference preference) {
- YalpStorePermissionManager permissionManager = new YalpStorePermissionManager(activity);
+ GalaxyPermissionManager permissionManager = new GalaxyPermissionManager(activity);
if (!permissionManager.checkPermission()) {
permissionManager.requestPermission();
}
diff --git a/app/src/main/java/in/dragons/galaxy/fragment/preference/OnInstallationMethodChangeListener.java b/app/src/main/java/in/dragons/galaxy/fragment/preference/OnInstallationMethodChangeListener.java
index 5f19eb47f..92ace8867 100644
--- a/app/src/main/java/in/dragons/galaxy/fragment/preference/OnInstallationMethodChangeListener.java
+++ b/app/src/main/java/in/dragons/galaxy/fragment/preference/OnInstallationMethodChangeListener.java
@@ -88,11 +88,11 @@ class OnInstallationMethodChangeListener implements Preference.OnPreferenceChang
}
private App getSelf() {
- PackageInfo yalp = new PackageInfo();
- yalp.applicationInfo = activity.getApplicationInfo();
- yalp.packageName = BuildConfig.APPLICATION_ID;
- yalp.versionCode = BuildConfig.VERSION_CODE;
- return new App(yalp);
+ PackageInfo Galaxy = new PackageInfo();
+ Galaxy.applicationInfo = activity.getApplicationInfo();
+ Galaxy.packageName = BuildConfig.APPLICATION_ID;
+ Galaxy.versionCode = BuildConfig.VERSION_CODE;
+ return new App(Galaxy);
}
}
}
diff --git a/app/src/main/java/in/dragons/galaxy/notification/CancelDownloadService.java b/app/src/main/java/in/dragons/galaxy/notification/CancelDownloadService.java
index 72fba40d9..a93f436ee 100644
--- a/app/src/main/java/in/dragons/galaxy/notification/CancelDownloadService.java
+++ b/app/src/main/java/in/dragons/galaxy/notification/CancelDownloadService.java
@@ -8,7 +8,7 @@ import android.util.Log;
import in.dragons.galaxy.DownloadManagerFactory;
import in.dragons.galaxy.DownloadManagerInterface;
import in.dragons.galaxy.DownloadState;
-import in.dragons.galaxy.YalpStoreApplication;
+import in.dragons.galaxy.GalaxyApplication;
import java.util.ArrayList;
import java.util.List;
@@ -37,7 +37,7 @@ public class CancelDownloadService extends IntentService {
downloadIds.add(downloadId);
}
if (!TextUtils.isEmpty(packageName)) {
- ((YalpStoreApplication) getApplicationContext()).removePendingUpdate(packageName);
+ ((GalaxyApplication) getApplicationContext()).removePendingUpdate(packageName);
downloadIds.addAll(DownloadState.get(packageName).getDownloadIds());
}
for (long id: downloadIds) {
diff --git a/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundCategoryTask.java b/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundCategoryTask.java
index be41bf676..8b85ff42e 100644
--- a/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundCategoryTask.java
+++ b/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundCategoryTask.java
@@ -2,14 +2,14 @@ package in.dragons.galaxy.task.playstore;
import android.os.Build;
-import in.dragons.galaxy.YalpStoreActivity;
+import in.dragons.galaxy.GalaxyActivity;
class BackgroundCategoryTask extends CategoryTask {
@Override
protected void fill() {
- if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB && context instanceof YalpStoreActivity) {
- ((YalpStoreActivity) context).invalidateOptionsMenu();
+ if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB && context instanceof GalaxyActivity) {
+ ((GalaxyActivity) context).invalidateOptionsMenu();
}
}
}
diff --git a/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundUpdatableAppsTask.java b/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundUpdatableAppsTask.java
index 22b7f2afb..dd7e65f24 100644
--- a/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundUpdatableAppsTask.java
+++ b/app/src/main/java/in/dragons/galaxy/task/playstore/BackgroundUpdatableAppsTask.java
@@ -19,7 +19,7 @@ import in.dragons.galaxy.PreferenceActivity;
import in.dragons.galaxy.R;
import in.dragons.galaxy.UpdatableAppsActivity;
import in.dragons.galaxy.UpdateAllReceiver;
-import in.dragons.galaxy.YalpStoreApplication;
+import in.dragons.galaxy.GalaxyApplication;
import in.dragons.galaxy.model.App;
import in.dragons.galaxy.notification.NotificationManagerWrapper;
@@ -81,7 +81,7 @@ public class BackgroundUpdatableAppsTask extends UpdatableAppsTask implements Cl
private void process(Context context, List apps) {
boolean canInstallInBackground = PreferenceActivity.canInstallInBackground(context);
- YalpStoreApplication application = (YalpStoreApplication) context.getApplicationContext();
+ GalaxyApplication application = (GalaxyApplication) context.getApplicationContext();
application.clearPendingUpdates();
for (App app: apps) {
application.addPendingUpdate(app.getPackageName());
diff --git a/app/src/main/java/in/dragons/galaxy/task/playstore/ForegroundUpdatableAppsTask.java b/app/src/main/java/in/dragons/galaxy/task/playstore/ForegroundUpdatableAppsTask.java
index 32cb5310c..c60de6656 100644
--- a/app/src/main/java/in/dragons/galaxy/task/playstore/ForegroundUpdatableAppsTask.java
+++ b/app/src/main/java/in/dragons/galaxy/task/playstore/ForegroundUpdatableAppsTask.java
@@ -9,8 +9,8 @@ import in.dragons.galaxy.BlackWhiteListManager;
import in.dragons.galaxy.BuildConfig;
import in.dragons.galaxy.R;
import in.dragons.galaxy.UpdatableAppsActivity;
-import in.dragons.galaxy.YalpStoreApplication;
-import in.dragons.galaxy.YalpStorePermissionManager;
+import in.dragons.galaxy.GalaxyApplication;
+import in.dragons.galaxy.GalaxyPermissionManager;
import in.dragons.galaxy.model.App;
import in.dragons.galaxy.selfupdate.UpdaterFactory;
import in.dragons.galaxy.task.InstalledAppsTask;
@@ -43,13 +43,13 @@ public class ForegroundUpdatableAppsTask extends UpdatableAppsTask implements Cl
}
int latestVersionCode = UpdaterFactory.get(context).getLatestVersionCode();
if (latestVersionCode > BuildConfig.VERSION_CODE) {
- App yalp = InstalledAppsTask.getInstalledApp(context.getPackageManager(), BuildConfig.APPLICATION_ID);
- if (null == yalp) {
+ App Galaxy = InstalledAppsTask.getInstalledApp(context.getPackageManager(), BuildConfig.APPLICATION_ID);
+ if (null == Galaxy ) {
return updatableApps;
}
- yalp.setVersionCode(latestVersionCode);
- yalp.setVersionName("0." + latestVersionCode);
- updatableApps.add(yalp);
+ Galaxy.setVersionCode(latestVersionCode);
+ Galaxy.setVersionName("0." + latestVersionCode);
+ updatableApps.add(Galaxy);
}
return updatableApps;
}
@@ -79,14 +79,14 @@ public class ForegroundUpdatableAppsTask extends UpdatableAppsTask implements Cl
button.setVisibility(enable ? View.VISIBLE : View.GONE);
textView.setVisibility(enable ? View.VISIBLE : View.GONE);
activity.findViewById(R.id.list_card).setVisibility(View.VISIBLE);
- if (((YalpStoreApplication) activity.getApplication()).isBackgroundUpdating()) {
+ if (((GalaxyApplication) activity.getApplication()).isBackgroundUpdating()) {
button.setEnabled(false);
button.setText(R.string.list_updating);
}
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
- YalpStorePermissionManager permissionManager = new YalpStorePermissionManager(activity);
+ GalaxyPermissionManager permissionManager = new GalaxyPermissionManager(activity);
if (permissionManager.checkPermission()) {
activity.launchUpdateAll();
} else {
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 1e370196b..3a041ce9b 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -46,15 +46,15 @@
Not now
Create password
2-Step Verification
- It appears you have enabled 2-Step Verification for your account.\n\nPlease, create a dedicated app password for Yalp Store and use it to log in to the Yalp Store.\n\nTap \"Create password\" to be redirected to password creation page.
+ It appears you have enabled 2-Step Verification for your account.\n\nPlease, create a dedicated app password for Galaxy Store and use it to log in to the Galaxy Store.\n\nTap \"Create password\" to be redirected to password creation page.
Log out?
Are you sure you want to log out?
With your own Google account
- With a fake Yalp Store account
+ With a fake Galaxy Store account
How would you like to log in to Google Play Store?
Logging in
Trying to log in with the credentials you provided
- Trying to log in with credentials provided by Yalp Store
+ Trying to log in with credentials provided by Galaxy Store
Working with /system partition
"Working with /system partition. This might take some time."
Checking if busybox is available
@@ -67,10 +67,10 @@
You have selected to convert the app into system app. Most apps do not need to be system apps to work.\n\nKeep in mind that the conversion process is NOT supported by the Android OS and therefore is NOT safe and NOT guaranteed to work.\n\nDo not do it out of curiosity. It might break your device. Backup your device before trying.
You have selected to convert a system app into a normal app. Most system apps need to be system apps to work.\n\nKeep in mind that the conversion process is NOT supported by the Android OS and therefore is NOT safe and NOT guaranteed to work.\n\nDo not do it out of curiosity. It might break your device. Backup your device before trying.
Are you sure you want to remove this system app? System apps are placed into your device by device vendor and are most likely required for it to function as intended.\n\nKeep in mind that removing system apps is NOT supported by the Android OS and therefore is NOT safe and NOT guaranteed to work.\n\nDo not do it out of curiosity. It might break your device. Backup your device before trying.
- Making Yalp a system app
- Using privileged permissions to allow background installation of apps requires making Yalp Store a system app.\n\nThe process is imperfect and vendor-specific, so it might not work.\n\nDo it?
+ Making Galaxy a system app
+ Using privileged permissions to allow background installation of apps requires making Galaxy Store a system app.\n\nThe process is imperfect and vendor-specific, so it might not work.\n\nDo it?
Request
- Device spoofing is possible because users such as you submit bug reports with device information. If you want the definitions to be precise and up-to-date, please tap OK and your device information will be sent to the Yalp Store developer.
+ Device spoofing is possible because users such as you submit bug reports with device information. If you want the definitions to be precise and up-to-date, please tap OK and your device information will be sent to the Galaxy Store developer.
Incorrect email or password.
Provide google account credentials, please.
No network connection.
@@ -151,7 +151,7 @@
Change apps black list
Change apps white list
Only manually
- Only on Yalp Store launch
+ Only on Galaxy Store launch
Hourly
Daily
Weekly
@@ -174,7 +174,7 @@
Installation
Spoofing
User Interface
- Only available if Yalp is a system app
+ Only available if Galaxy is a system app
Installation method
Default installation dialog, no background installs
Using root
@@ -187,7 +187,7 @@
Only changes are downloaded during updates
Download directory
Auto whitelist
- Apps installed by Yalp Store are automatically whitelisted
+ Apps installed by Galaxy Store are automatically whitelisted
You need to whitelist apps manually
Unknown error.
Unknown file storage error.
diff --git a/app/src/main/res/xml/searchable.xml b/app/src/main/res/xml/searchable.xml
index fa9bdb5a4..fc130cfdb 100644
--- a/app/src/main/res/xml/searchable.xml
+++ b/app/src/main/res/xml/searchable.xml
@@ -1,6 +1,6 @@
\ No newline at end of file