[anr] Changed package name.
This commit is contained in:
parent
dde0efcee4
commit
9fd85c3717
10 changed files with 11 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.susanin.travelguide"
|
||||
package="com.guidewithme.uk"
|
||||
android:versionCode="1"
|
||||
android:versionName="1.0" >
|
||||
|
||||
|
|
|
@ -5,7 +5,7 @@ import android.os.Bundle;
|
|||
import android.support.v4.app.FragmentActivity;
|
||||
import android.support.v4.app.NavUtils;
|
||||
import android.view.MenuItem;
|
||||
import com.susanin.travelguide.R;
|
||||
import com.guidewithme.uk.R;
|
||||
|
||||
/**
|
||||
* An activity representing a single ArticleInfo detail screen. This activity is
|
||||
|
|
|
@ -25,7 +25,7 @@ import com.guidewithme.cpp.Storage;
|
|||
import com.guidewithme.util.Utils;
|
||||
import com.mapswithme.maps.api.MWMPoint;
|
||||
import com.mapswithme.maps.api.MapsWithMeApi;
|
||||
import com.susanin.travelguide.R;
|
||||
import com.guidewithme.uk.R;
|
||||
|
||||
/**
|
||||
* A fragment representing a single ArticleInfo detail screen. This fragment is
|
||||
|
|
|
@ -11,7 +11,7 @@ import com.guidewithme.article.ArticleInfo;
|
|||
import com.guidewithme.cpp.Storage;
|
||||
import com.mapswithme.maps.api.MWMPoint;
|
||||
import com.mapswithme.maps.api.MWMResponse;
|
||||
import com.susanin.travelguide.R;
|
||||
import com.guidewithme.uk.R;
|
||||
|
||||
/**
|
||||
* An activity representing a list of ArticleInfos. This activity has different
|
||||
|
|
|
@ -33,7 +33,7 @@ import com.guidewithme.util.Utils;
|
|||
import com.guidewithme.widget.StorageArticleInfoAdapter;
|
||||
import com.mapswithme.maps.api.MWMPoint;
|
||||
import com.mapswithme.maps.api.MapsWithMeApi;
|
||||
import com.susanin.travelguide.R;
|
||||
import com.guidewithme.uk.R;
|
||||
|
||||
/**
|
||||
* A list fragment representing a list of ArticleInfos. This fragment also
|
||||
|
|
|
@ -22,7 +22,7 @@ import com.google.android.vending.expansion.downloader.IStub;
|
|||
import com.guidewithme.expansion.ExpansionService;
|
||||
import com.guidewithme.util.Expansion;
|
||||
import com.guidewithme.util.Utils;
|
||||
import com.susanin.travelguide.R;
|
||||
import com.guidewithme.uk.R;
|
||||
|
||||
public class ExpansionActivity extends Activity
|
||||
implements IDownloaderClient, OnClickListener
|
||||
|
|
|
@ -19,7 +19,7 @@ public class ObbPathFinder extends OnObbStateChangeListener
|
|||
{
|
||||
mContext = context;
|
||||
mSm = (StorageManager) mContext.getSystemService(Context.STORAGE_SERVICE);
|
||||
mSm.mountObb(Expansion.getPath(mContext.getPackageName()), null, this);
|
||||
mSm.mountObb(Expansion.getPath(mContext.getPackageName()), Expansion.KEY, this);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -35,7 +35,7 @@ public class ObbThumbnailProvider extends OnObbStateChangeListener implements Th
|
|||
{
|
||||
mContext = context;
|
||||
mSm = (StorageManager) mContext.getSystemService(Context.STORAGE_SERVICE);
|
||||
mSm.mountObb(Expansion.getPath(mContext.getPackageName()), null, this);
|
||||
mSm.mountObb(Expansion.getPath(mContext.getPackageName()), Expansion.KEY, this);
|
||||
}
|
||||
|
||||
public ObbThumbnailProvider(Context context, MountStateChangedListener listener)
|
||||
|
|
|
@ -6,6 +6,8 @@ import android.os.Environment;
|
|||
|
||||
public class Expansion
|
||||
{
|
||||
public static final String KEY = null;
|
||||
|
||||
public static String getPath(String packageName)
|
||||
{
|
||||
return findFirstObbFile(packageName);
|
||||
|
|
|
@ -12,7 +12,7 @@ import com.guidewithme.article.ArticleInfo;
|
|||
import com.guidewithme.cpp.Storage;
|
||||
import com.guidewithme.thumb.ObbThumbnailProvider;
|
||||
import com.guidewithme.thumb.ThumbnailsProvider;
|
||||
import com.susanin.travelguide.R;
|
||||
import com.guidewithme.uk.R;
|
||||
|
||||
public class StorageArticleInfoAdapter extends BaseAdapter
|
||||
implements ObbThumbnailProvider.MountStateChangedListener
|
||||
|
|
Reference in a new issue