mirror of
https://github.com/whyorean/AuroraStore.git
synced 2026-06-19 13:08:59 -04:00
Refactor package name to 'in.dragons.galaxy'
- My builds have different app signatures so same packagename will cause ambiguity issues. - Yalpstore is available on FDroid and I have no plans to push Galaxy on FDroid, so package name wont matter much.
This commit is contained in:
@@ -5,7 +5,7 @@ android {
|
||||
buildToolsVersion '27.0.1'
|
||||
|
||||
defaultConfig {
|
||||
applicationId "com.github.yeriomin.yalpstore"
|
||||
applicationId "in.dragons.galaxy"
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 27
|
||||
versionCode 1
|
||||
@@ -35,4 +35,4 @@ dependencies {
|
||||
implementation 'com.android.support:appcompat-v7:25.4.0'
|
||||
implementation 'com.android.support:recyclerview-v7:25.4.0'
|
||||
implementation 'com.squareup.picasso:picasso:2.5.2'
|
||||
}
|
||||
}
|
||||
2
app/proguard-rules.pro
vendored
2
app/proguard-rules.pro
vendored
@@ -18,7 +18,7 @@
|
||||
-dontobfuscate
|
||||
-keep public interface android.content.pm.IPackageInstallObserver { *; }
|
||||
-keep class android.content.pm.IPackageInstallObserver$Stub { *; }
|
||||
-keep public class com.github.yeriomin.yalpstore.InstallerPrivileged$* { *; }
|
||||
-keep public class in.dragons.galaxy.InstallerPrivileged$* { *; }
|
||||
-optimizations !code/simplification/arithmetic,!field/*,!class/merging/*,!code/allocation/variable
|
||||
-dontwarn sun.misc.Unsafe
|
||||
-optimizationpasses 5
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="com.github.yeriomin.yalpstore"
|
||||
package="in.dragons.galaxy"
|
||||
android:installLocation="internalOnly" >
|
||||
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
@@ -23,17 +23,17 @@
|
||||
android:theme="@style/AppTheme"
|
||||
android:supportsRtl="true">
|
||||
<provider
|
||||
android:name="com.github.yeriomin.yalpstore.FileProvider"
|
||||
android:authorities="com.github.yeriomin.yalpstore.fileprovider"
|
||||
android:name="in.dragons.galaxy.FileProvider"
|
||||
android:authorities="in.dragons.galaxy.fileprovider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true" >
|
||||
<meta-data
|
||||
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||
android:resource="@xml/paths" />
|
||||
</provider>
|
||||
<receiver android:name="com.github.yeriomin.yalpstore.UpdateChecker" />
|
||||
<receiver android:name="in.dragons.galaxy.UpdateChecker" />
|
||||
<receiver
|
||||
android:name="com.github.yeriomin.yalpstore.BootReceiver"
|
||||
android:name="in.dragons.galaxy.BootReceiver"
|
||||
android:enabled="true"
|
||||
android:exported="true" >
|
||||
<intent-filter>
|
||||
@@ -43,7 +43,7 @@
|
||||
<provider
|
||||
android:exported="false"
|
||||
android:name=".YalpSuggestionProvider"
|
||||
android:authorities="com.github.yeriomin.yalpstore.YalpSuggestionProvider"
|
||||
android:authorities="in.dragons.galaxy.YalpSuggestionProvider"
|
||||
android:enabled="true" />
|
||||
<activity android:name=".DetailsActivity" android:configChanges="keyboardHidden|orientation|screenSize">
|
||||
<meta-data android:name="android.app.default_searchable" android:value=".SearchActivity" />
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
@@ -1,11 +1,11 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.app.Dialog;
|
||||
import android.content.Context;
|
||||
import android.content.DialogInterface;
|
||||
|
||||
import com.github.yeriomin.yalpstore.task.playstore.PlayStoreTask;
|
||||
import in.dragons.galaxy.task.playstore.PlayStoreTask;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
* MA 02110-1301, USA.
|
||||
*/
|
||||
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.content.Context;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.util.Log;
|
||||
@@ -8,12 +8,12 @@ import android.view.View;
|
||||
import android.widget.AdapterView;
|
||||
import android.widget.ListView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.details.ButtonDownload;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.ButtonUninstall;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.DownloadOptions;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.view.AppBadge;
|
||||
import com.github.yeriomin.yalpstore.view.ListItem;
|
||||
import in.dragons.galaxy.fragment.details.ButtonDownload;
|
||||
import in.dragons.galaxy.fragment.details.ButtonUninstall;
|
||||
import in.dragons.galaxy.fragment.details.DownloadOptions;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.view.AppBadge;
|
||||
import in.dragons.galaxy.view.ListItem;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.view.LayoutInflater;
|
||||
@@ -6,7 +6,7 @@ import android.view.View;
|
||||
import android.view.ViewGroup;
|
||||
import android.widget.ArrayAdapter;
|
||||
|
||||
import com.github.yeriomin.yalpstore.view.ListItem;
|
||||
import in.dragons.galaxy.view.ListItem;
|
||||
|
||||
|
||||
public class AppListAdapter extends ArrayAdapter<ListItem> {
|
||||
@@ -1,12 +1,12 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.DocV2;
|
||||
import com.github.yeriomin.playstoreapi.GooglePlayAPI;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.model.AppBuilder;
|
||||
import com.github.yeriomin.yalpstore.model.Filter;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.model.AppBuilder;
|
||||
import in.dragons.galaxy.model.Filter;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Iterator;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore.fragment.details;
|
||||
package in.dragons.galaxy.fragment.details;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.content.pm.PackageManager;
|
||||
@@ -7,10 +7,10 @@ import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.DetailsActivity;
|
||||
import com.github.yeriomin.yalpstore.R;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.PurchaseTask;
|
||||
import in.dragons.galaxy.DetailsActivity;
|
||||
import in.dragons.galaxy.R;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.playstore.PurchaseTask;
|
||||
|
||||
public class BackToPlayStore extends Abstract {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Bitmap;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
@@ -1,12 +1,12 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.FilterMenu;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.CategoryAppsTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.EndlessScrollTask;
|
||||
import in.dragons.galaxy.fragment.FilterMenu;
|
||||
import in.dragons.galaxy.task.playstore.CategoryAppsTask;
|
||||
import in.dragons.galaxy.task.playstore.EndlessScrollTask;
|
||||
|
||||
public class CategoryAppsActivity extends EndlessScrollActivity {
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.task.playstore.CategoryListTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.CategoryTask;
|
||||
import in.dragons.galaxy.task.playstore.CategoryListTask;
|
||||
import in.dragons.galaxy.task.playstore.CategoryTask;
|
||||
|
||||
|
||||
public class CategoryListActivity extends YalpStoreActivity {
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.preference.PreferenceManager;
|
||||
@@ -1,12 +1,12 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.FilterMenu;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.ClusterTask;
|
||||
import in.dragons.galaxy.fragment.FilterMenu;
|
||||
import in.dragons.galaxy.task.playstore.ClusterTask;
|
||||
|
||||
public class ClusterActivity extends EndlessScrollActivity {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Context;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.app.Dialog;
|
||||
@@ -13,8 +13,8 @@ import android.util.Log;
|
||||
import com.github.yeriomin.playstoreapi.AuthException;
|
||||
import com.github.yeriomin.playstoreapi.GooglePlayException;
|
||||
import com.github.yeriomin.playstoreapi.TokenDispenserException;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.CloneableTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.PlayStoreTask;
|
||||
import in.dragons.galaxy.task.playstore.CloneableTask;
|
||||
import in.dragons.galaxy.task.playstore.PlayStoreTask;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AuthException;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.os.Build;
|
||||
import android.os.Environment;
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
@@ -9,20 +9,20 @@ import android.view.ContextMenu;
|
||||
import android.view.MenuItem;
|
||||
import android.view.View;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.details.AppLists;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.BackToPlayStore;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.Beta;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.DownloadOptions;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.DownloadOrInstall;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.GeneralDetails;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.Review;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.Screenshot;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.Share;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.SystemAppPage;
|
||||
import com.github.yeriomin.yalpstore.fragment.details.Video;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.CloneableTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.DetailsTask;
|
||||
import in.dragons.galaxy.fragment.details.AppLists;
|
||||
import in.dragons.galaxy.fragment.details.BackToPlayStore;
|
||||
import in.dragons.galaxy.fragment.details.Beta;
|
||||
import in.dragons.galaxy.fragment.details.DownloadOptions;
|
||||
import in.dragons.galaxy.fragment.details.DownloadOrInstall;
|
||||
import in.dragons.galaxy.fragment.details.GeneralDetails;
|
||||
import in.dragons.galaxy.fragment.details.Review;
|
||||
import in.dragons.galaxy.fragment.details.Screenshot;
|
||||
import in.dragons.galaxy.fragment.details.Share;
|
||||
import in.dragons.galaxy.fragment.details.SystemAppPage;
|
||||
import in.dragons.galaxy.fragment.details.Video;
|
||||
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 {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.content.BroadcastReceiver;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.net.Uri;
|
||||
@@ -6,9 +6,9 @@ import android.os.Bundle;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.DetailsTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.PurchaseTask;
|
||||
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 {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.app.DownloadManager;
|
||||
@@ -9,7 +9,7 @@ import android.util.Log;
|
||||
import android.util.Pair;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
@TargetApi(Build.VERSION_CODES.GINGERBREAD)
|
||||
public class DownloadManagerAdapter extends DownloadManagerAbstract {
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.pm.PackageManager;
|
||||
@@ -1,12 +1,12 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.playstoreapi.HttpCookie;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.HttpURLConnectionDownloadTask;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.HttpURLConnectionDownloadTask;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.HashMap;
|
||||
@@ -1,7 +1,7 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
public interface DownloadManagerInterface {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.util.Pair;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.util.Pair;
|
||||
import android.view.View;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
@@ -6,7 +6,7 @@ import android.content.Intent;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
abstract public class DownloadReceiver extends BroadcastReceiver {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.app.DownloadManager;
|
||||
@@ -8,7 +8,7 @@ import android.os.Build;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.playstoreapi.HttpCookie;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.util.Pair;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.StatFs;
|
||||
@@ -6,7 +6,7 @@ import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.AndroidAppDeliveryData;
|
||||
import com.github.yeriomin.playstoreapi.AppFileMetadata;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.opengl.GLES10;
|
||||
import android.text.TextUtils;
|
||||
@@ -1,14 +1,14 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.os.Bundle;
|
||||
import android.view.Menu;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.EndlessScrollTask;
|
||||
import com.github.yeriomin.yalpstore.view.ListItem;
|
||||
import com.github.yeriomin.yalpstore.view.ProgressIndicator;
|
||||
import com.github.yeriomin.yalpstore.view.SearchResultAppBadge;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.playstore.EndlessScrollTask;
|
||||
import in.dragons.galaxy.view.ListItem;
|
||||
import in.dragons.galaxy.view.ProgressIndicator;
|
||||
import in.dragons.galaxy.view.SearchResultAppBadge;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
/*
|
||||
* Copyright (C) 2013 The Android Open Source Project
|
||||
*
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.content.Context;
|
||||
@@ -7,8 +7,8 @@ import android.widget.ArrayAdapter;
|
||||
import android.widget.EditText;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.GooglePlayAPI;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.FlagTask;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.playstore.FlagTask;
|
||||
|
||||
public class FlagDialogBuilder {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
@@ -1,10 +1,10 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.widget.Gallery;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.task.LoadImageTask;
|
||||
import in.dragons.galaxy.task.LoadImageTask;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.notification.NotificationManagerWrapper;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.notification.NotificationManagerWrapper;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.content.BroadcastReceiver;
|
||||
@@ -9,7 +9,7 @@ import android.os.Build;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.graphics.Bitmap;
|
||||
@@ -10,8 +10,8 @@ import android.widget.BaseAdapter;
|
||||
import android.widget.Gallery;
|
||||
import android.widget.ImageView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.ImageSource;
|
||||
import com.github.yeriomin.yalpstore.task.LoadImageTask;
|
||||
import in.dragons.galaxy.model.ImageSource;
|
||||
import in.dragons.galaxy.task.LoadImageTask;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.Map;
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.FileInputStream;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
@@ -9,12 +9,12 @@ import android.view.View;
|
||||
import android.widget.Button;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.FilterMenu;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.AppListValidityCheckTask;
|
||||
import com.github.yeriomin.yalpstore.task.ForegroundInstalledAppsTask;
|
||||
import com.github.yeriomin.yalpstore.view.InstalledAppBadge;
|
||||
import com.github.yeriomin.yalpstore.view.ListItem;
|
||||
import in.dragons.galaxy.fragment.FilterMenu;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.AppListValidityCheckTask;
|
||||
import in.dragons.galaxy.task.ForegroundInstalledAppsTask;
|
||||
import in.dragons.galaxy.view.InstalledAppBadge;
|
||||
import in.dragons.galaxy.view.ListItem;
|
||||
|
||||
public class InstalledAppsActivity extends AppListActivity {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.AlertDialog;
|
||||
@@ -10,10 +10,10 @@ import android.net.Uri;
|
||||
import android.os.Build;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.notification.IgnoreUpdatesService;
|
||||
import com.github.yeriomin.yalpstore.notification.NotificationBuilder;
|
||||
import com.github.yeriomin.yalpstore.notification.NotificationManagerWrapper;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.notification.IgnoreUpdatesService;
|
||||
import in.dragons.galaxy.notification.NotificationBuilder;
|
||||
import in.dragons.galaxy.notification.NotificationManagerWrapper;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.notification.NotificationManagerWrapper;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.notification.NotificationManagerWrapper;
|
||||
|
||||
abstract public class InstallerBackground extends InstallerAbstract {
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
public class InstallerDefault extends InstallerAbstract {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.Manifest;
|
||||
import android.content.Context;
|
||||
@@ -9,7 +9,7 @@ import android.os.Looper;
|
||||
import android.os.RemoteException;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.io.File;
|
||||
import java.lang.reflect.InvocationTargetException;
|
||||
@@ -1,9 +1,9 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.InstallTask;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.InstallTask;
|
||||
|
||||
public class InstallerRoot extends InstallerBackground {
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import java.util.LinkedHashMap;
|
||||
import java.util.Locale;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.text.Editable;
|
||||
@@ -9,9 +9,9 @@ import android.widget.Button;
|
||||
import android.widget.EditText;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.details.DownloadOrInstall;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.PurchaseCheckTask;
|
||||
import in.dragons.galaxy.fragment.details.DownloadOrInstall;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.playstore.PurchaseCheckTask;
|
||||
|
||||
import java.util.Timer;
|
||||
import java.util.TimerTask;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.AlertDialog.Builder;
|
||||
import android.content.Context;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.ActivityManager;
|
||||
import android.content.Context;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.pm.PackageInfo;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.net.Uri;
|
||||
import android.os.Build;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.content.Context;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import java.security.cert.CertificateException;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.preference.Preference;
|
||||
import android.text.TextUtils;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.Build;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.pm.PackageInfo;
|
||||
@@ -6,7 +6,7 @@ import android.content.pm.PackageManager;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.HashSet;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
@@ -12,8 +12,8 @@ import com.github.yeriomin.playstoreapi.DeviceInfoProvider;
|
||||
import com.github.yeriomin.playstoreapi.GooglePlayAPI;
|
||||
import com.github.yeriomin.playstoreapi.PropertiesDeviceInfoProvider;
|
||||
import com.github.yeriomin.playstoreapi.TokenDispenserException;
|
||||
import com.github.yeriomin.yalpstore.model.LoginInfo;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.PlayStoreTask;
|
||||
import in.dragons.galaxy.model.LoginInfo;
|
||||
import in.dragons.galaxy.task.playstore.PlayStoreTask;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Locale;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.os.Bundle;
|
||||
@@ -8,12 +8,12 @@ import android.preference.ListPreference;
|
||||
import android.preference.PreferenceManager;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.preference.Blacklist;
|
||||
import com.github.yeriomin.yalpstore.fragment.preference.CheckUpdates;
|
||||
import com.github.yeriomin.yalpstore.fragment.preference.Device;
|
||||
import com.github.yeriomin.yalpstore.fragment.preference.DownloadDirectory;
|
||||
import com.github.yeriomin.yalpstore.fragment.preference.InstallationMethod;
|
||||
import com.github.yeriomin.yalpstore.fragment.preference.Language;
|
||||
import in.dragons.galaxy.fragment.preference.Blacklist;
|
||||
import in.dragons.galaxy.fragment.preference.CheckUpdates;
|
||||
import in.dragons.galaxy.fragment.preference.Device;
|
||||
import in.dragons.galaxy.fragment.preference.DownloadDirectory;
|
||||
import in.dragons.galaxy.fragment.preference.InstallationMethod;
|
||||
import in.dragons.galaxy.fragment.preference.Language;
|
||||
|
||||
public class PreferenceActivity extends android.preference.PreferenceActivity {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.os.Handler;
|
||||
import android.os.Looper;
|
||||
@@ -1,8 +1,8 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.Review;
|
||||
import in.dragons.galaxy.model.Review;
|
||||
|
||||
import java.util.Iterator;
|
||||
import java.util.List;
|
||||
@@ -1,10 +1,10 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.playstoreapi.GooglePlayAPI;
|
||||
import com.github.yeriomin.yalpstore.model.Review;
|
||||
import com.github.yeriomin.yalpstore.model.ReviewBuilder;
|
||||
import in.dragons.galaxy.model.Review;
|
||||
import in.dragons.galaxy.model.ReviewBuilder;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
@@ -1,7 +1,7 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.Review;
|
||||
import in.dragons.galaxy.model.Review;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.widget.AbsListView;
|
||||
import android.widget.ListView;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.app.SearchManager;
|
||||
@@ -8,10 +8,10 @@ import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.view.Menu;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.FilterMenu;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.DetailsTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.SearchTask;
|
||||
import in.dragons.galaxy.fragment.FilterMenu;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.playstore.DetailsTask;
|
||||
import in.dragons.galaxy.task.playstore.SearchTask;
|
||||
|
||||
import java.util.regex.Pattern;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.SharedPreferences;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.content.SharedPreferences;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore.fragment.details;
|
||||
package in.dragons.galaxy.fragment.details;
|
||||
|
||||
import android.content.ActivityNotFoundException;
|
||||
import android.content.Intent;
|
||||
@@ -9,9 +9,9 @@ import android.view.View;
|
||||
import android.widget.ImageView;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.DetailsActivity;
|
||||
import com.github.yeriomin.yalpstore.R;
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import in.dragons.galaxy.DetailsActivity;
|
||||
import in.dragons.galaxy.R;
|
||||
import in.dragons.galaxy.model.App;
|
||||
|
||||
public class SystemAppPage extends Abstract {
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.content.Context;
|
||||
import android.content.DialogInterface;
|
||||
|
||||
import com.github.yeriomin.yalpstore.task.ConvertToNormalTask;
|
||||
import com.github.yeriomin.yalpstore.task.SystemRemountTask;
|
||||
import com.github.yeriomin.yalpstore.task.UninstallSystemAppTask;
|
||||
import in.dragons.galaxy.task.ConvertToNormalTask;
|
||||
import in.dragons.galaxy.task.SystemRemountTask;
|
||||
import in.dragons.galaxy.task.UninstallSystemAppTask;
|
||||
|
||||
public class SystemRemountDialogBuilder extends AlertDialog.Builder {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.SharedPreferences;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
public class TokenDispenserMirrors {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
@@ -9,11 +9,11 @@ import android.widget.AdapterView;
|
||||
import android.widget.Button;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.model.App;
|
||||
import com.github.yeriomin.yalpstore.task.AppListValidityCheckTask;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.ForegroundUpdatableAppsTask;
|
||||
import com.github.yeriomin.yalpstore.view.ListItem;
|
||||
import com.github.yeriomin.yalpstore.view.UpdatableAppBadge;
|
||||
import in.dragons.galaxy.model.App;
|
||||
import in.dragons.galaxy.task.AppListValidityCheckTask;
|
||||
import in.dragons.galaxy.task.playstore.ForegroundUpdatableAppsTask;
|
||||
import in.dragons.galaxy.view.ListItem;
|
||||
import in.dragons.galaxy.view.UpdatableAppBadge;
|
||||
|
||||
public class UpdatableAppsActivity extends AppListActivity {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.BroadcastReceiver;
|
||||
import android.content.Context;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.AlarmManager;
|
||||
@@ -8,7 +8,7 @@ import android.content.Context;
|
||||
import android.content.Intent;
|
||||
import android.util.Log;
|
||||
|
||||
import com.github.yeriomin.yalpstore.task.playstore.BackgroundUpdatableAppsTask;
|
||||
import in.dragons.galaxy.task.playstore.BackgroundUpdatableAppsTask;
|
||||
|
||||
public class UpdateChecker extends BroadcastReceiver {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Dialog;
|
||||
import android.content.Context;
|
||||
@@ -1,12 +1,12 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.Dialog;
|
||||
import android.content.Context;
|
||||
import android.view.View;
|
||||
import android.widget.EditText;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.details.Review;
|
||||
import com.github.yeriomin.yalpstore.task.playstore.ReviewAddTask;
|
||||
import in.dragons.galaxy.fragment.details.Review;
|
||||
import in.dragons.galaxy.task.playstore.ReviewAddTask;
|
||||
|
||||
public class UserReviewDialogBuilder {
|
||||
|
||||
@@ -22,7 +22,7 @@ public class UserReviewDialogBuilder {
|
||||
this.packageName = packageName;
|
||||
}
|
||||
|
||||
public Dialog show(final com.github.yeriomin.yalpstore.model.Review review) {
|
||||
public Dialog show(final in.dragons.galaxy.model.Review review) {
|
||||
dialog = new Dialog(context);
|
||||
dialog.setContentView(R.layout.review_dialog_layout);
|
||||
|
||||
@@ -53,9 +53,9 @@ public class UserReviewDialogBuilder {
|
||||
|
||||
private class DoneOnClickListener implements View.OnClickListener {
|
||||
|
||||
private final com.github.yeriomin.yalpstore.model.Review review;
|
||||
private final in.dragons.galaxy.model.Review review;
|
||||
|
||||
public DoneOnClickListener(com.github.yeriomin.yalpstore.model.Review review) {
|
||||
public DoneOnClickListener(in.dragons.galaxy.model.Review review) {
|
||||
this.review = review;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.content.Context;
|
||||
import android.preference.PreferenceManager;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.app.Activity;
|
||||
@@ -18,9 +18,9 @@ import android.view.Window;
|
||||
import android.widget.EditText;
|
||||
import android.widget.SearchView;
|
||||
|
||||
import com.github.yeriomin.yalpstore.fragment.FilterMenu;
|
||||
import in.dragons.galaxy.fragment.FilterMenu;
|
||||
|
||||
import static com.github.yeriomin.yalpstore.PlayStoreApiAuthenticator.PREFERENCE_EMAIL;
|
||||
import static in.dragons.galaxy.PlayStoreApiAuthenticator.PREFERENCE_EMAIL;
|
||||
|
||||
public abstract class YalpStoreActivity extends Activity {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.annotation.TargetApi;
|
||||
import android.app.Application;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.Manifest;
|
||||
import android.app.Activity;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore;
|
||||
package in.dragons.galaxy;
|
||||
|
||||
import android.app.SearchManager;
|
||||
import android.content.ContentProvider;
|
||||
@@ -1,4 +1,4 @@
|
||||
package com.github.yeriomin.yalpstore.fragment;
|
||||
package in.dragons.galaxy.fragment;
|
||||
|
||||
import android.app.AlertDialog;
|
||||
import android.content.DialogInterface;
|
||||
@@ -10,11 +10,11 @@ import android.view.Menu;
|
||||
import android.view.MenuItem;
|
||||
import android.widget.ArrayAdapter;
|
||||
|
||||
import com.github.yeriomin.yalpstore.CategoryManager;
|
||||
import com.github.yeriomin.yalpstore.R;
|
||||
import com.github.yeriomin.yalpstore.Util;
|
||||
import com.github.yeriomin.yalpstore.YalpStoreActivity;
|
||||
import com.github.yeriomin.yalpstore.model.Filter;
|
||||
import in.dragons.galaxy.CategoryManager;
|
||||
import in.dragons.galaxy.R;
|
||||
import in.dragons.galaxy.Util;
|
||||
import in.dragons.galaxy.YalpStoreActivity;
|
||||
import in.dragons.galaxy.model.Filter;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.LinkedHashMap;
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user