Skip to content

Commit

Permalink
Changed package name to com.github.pockethub.android
Browse files Browse the repository at this point in the history
  • Loading branch information
Meisolsson committed Aug 22, 2016
1 parent 5e00015 commit b65bbf5
Show file tree
Hide file tree
Showing 300 changed files with 1,335 additions and 1,376 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ android {
buildToolsVersion '23.0.3'

defaultConfig {
applicationId 'com.github.pockethub'
applicationId 'com.github.pockethub.android'
minSdkVersion 15
targetSdkVersion 23
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
Expand Down
2 changes: 1 addition & 1 deletion app/src/androidTest/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.github.pockethub.tests"
package="com.github.pockethub.android.tests"
android:versionCode="100"
android:versionName="1.0" >

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests;
package com.github.pockethub.android.tests;

import android.app.Activity;
import android.test.ActivityInstrumentationTestCase2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests;
package com.github.pockethub.android.tests;

import com.github.pockethub.ui.issue.FiltersViewActivity;
import com.github.pockethub.android.ui.issue.FiltersViewActivity;

/**
* Test of {@link FiltersViewActivity}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests;
package com.github.pockethub.android.tests;

import android.content.Context;
import android.test.InstrumentationTestCase;
Expand All @@ -30,12 +30,12 @@
import com.alorma.github.sdk.bean.dto.response.User;
import com.alorma.github.sdk.bean.dto.response.events.EventType;
import com.alorma.github.sdk.bean.dto.response.events.payload.Payload;
import com.github.pockethub.R.id;
import com.github.pockethub.api.FollowEventPayload;
import com.github.pockethub.api.GistEventPayload;
import com.github.pockethub.api.MemberEventPayload;
import com.github.pockethub.ui.user.NewsListAdapter;
import com.github.pockethub.util.AvatarLoader;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.api.FollowEventPayload;
import com.github.pockethub.android.api.GistEventPayload;
import com.github.pockethub.android.api.MemberEventPayload;
import com.github.pockethub.android.ui.user.NewsListAdapter;
import com.github.pockethub.android.util.AvatarLoader;

/**
* Tests of the news text rendering
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.commit;
package com.github.pockethub.android.tests.commit;

import android.net.Uri;
import android.test.AndroidTestCase;

import com.github.pockethub.core.commit.CommitMatch;
import com.github.pockethub.core.commit.CommitUriMatcher;
import com.github.pockethub.android.core.commit.CommitMatch;
import com.github.pockethub.android.core.commit.CommitUriMatcher;

/**
* Tests of {@link CommitUriMatcher}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.commit;
package com.github.pockethub.android.tests.commit;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Commit;
import com.alorma.github.sdk.bean.dto.response.CommitFile;
import com.alorma.github.sdk.bean.dto.response.GitCommit;
import com.alorma.github.sdk.bean.dto.response.User;
import com.github.pockethub.core.commit.CommitUtils;
import com.github.pockethub.util.TimeUtils;
import com.github.pockethub.android.core.commit.CommitUtils;
import com.github.pockethub.android.util.TimeUtils;

import java.util.Date;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.commit;
package com.github.pockethub.android.tests.commit;

import android.view.View;
import android.widget.EditText;

import com.alorma.github.sdk.bean.dto.response.Repo;
import com.alorma.github.sdk.bean.dto.response.User;
import com.github.pockethub.R.id;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.commit.CreateCommentActivity;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.commit.CreateCommentActivity;

import static android.view.KeyEvent.KEYCODE_DEL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.commit;
package com.github.pockethub.android.tests.commit;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.CommitFile;
import com.github.pockethub.ui.commit.DiffStyler;
import com.github.pockethub.android.ui.commit.DiffStyler;

import java.io.BufferedReader;
import java.io.IOException;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.commit;
package com.github.pockethub.android.tests.commit;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Commit;
import com.alorma.github.sdk.bean.dto.response.CommitComment;
import com.alorma.github.sdk.bean.dto.response.CommitFile;
import com.alorma.github.sdk.bean.dto.response.GitCommitFiles;
import com.github.pockethub.core.commit.FullCommit;
import com.github.pockethub.android.core.commit.FullCommit;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.gist;
package com.github.pockethub.android.tests.gist;

import android.view.View;
import android.widget.EditText;

import com.alorma.github.sdk.bean.dto.response.Gist;
import com.alorma.github.sdk.bean.dto.response.User;
import com.github.pockethub.R.id;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.gist.CreateCommentActivity;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.gist.CreateCommentActivity;

import static android.view.KeyEvent.KEYCODE_DEL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.gist;
package com.github.pockethub.android.tests.gist;

import android.content.Intent;
import android.view.View;
import android.widget.EditText;

import com.github.pockethub.R.id;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.gist.CreateGistActivity;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.gist.CreateGistActivity;

import static android.content.Intent.EXTRA_TEXT;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.gist;
package com.github.pockethub.android.tests.gist;

import android.support.v4.view.ViewPager;

import com.alorma.github.sdk.bean.dto.response.Gist;
import com.alorma.github.sdk.bean.dto.response.GistFile;
import com.alorma.github.sdk.bean.dto.response.GistFilesMap;
import com.github.pockethub.R.id;
import com.github.pockethub.core.gist.GistStore;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.gist.GistFilesViewActivity;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.core.gist.GistStore;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.gist.GistFilesViewActivity;
import com.google.inject.Inject;

import java.util.LinkedHashMap;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.gist;
package com.github.pockethub.android.tests.gist;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Gist;
import com.github.pockethub.core.gist.GistStore;
import com.github.pockethub.android.core.gist.GistStore;

/**
* Unit tests of {@link GistStore}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.gist;
package com.github.pockethub.android.tests.gist;

import android.net.Uri;
import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Gist;
import com.github.pockethub.core.gist.GistUriMatcher;
import com.github.pockethub.android.core.gist.GistUriMatcher;

/**
* Unit tests of {@link GistUriMatcher}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.issue;
package com.github.pockethub.android.tests.issue;

import android.view.View;
import android.widget.EditText;

import com.alorma.github.sdk.bean.dto.response.User;
import com.github.pockethub.R.id;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.issue.CreateCommentActivity;
import com.github.pockethub.util.InfoUtils;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.issue.CreateCommentActivity;
import com.github.pockethub.android.util.InfoUtils;

import static android.view.KeyEvent.KEYCODE_DEL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,16 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.issue;
package com.github.pockethub.android.tests.issue;

import android.view.View;
import android.widget.EditText;

import com.alorma.github.sdk.bean.dto.response.Repo;
import com.github.pockethub.R.id;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.issue.EditIssueActivity;
import com.github.pockethub.util.InfoUtils;
import com.github.pockethub.android.R.id;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.issue.EditIssueActivity;
import com.github.pockethub.android.util.InfoUtils;

import static android.view.KeyEvent.KEYCODE_DEL;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.issue;
package com.github.pockethub.android.tests.issue;

import com.alorma.github.sdk.bean.dto.response.Repo;
import com.github.pockethub.core.issue.IssueFilter;
import com.github.pockethub.tests.ActivityTest;
import com.github.pockethub.ui.issue.EditIssuesFilterActivity;
import com.github.pockethub.util.InfoUtils;
import com.github.pockethub.android.core.issue.IssueFilter;
import com.github.pockethub.android.tests.ActivityTest;
import com.github.pockethub.android.ui.issue.EditIssuesFilterActivity;
import com.github.pockethub.android.util.InfoUtils;

/**
* Tests of {@link EditIssuesFilterActivity}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.issue;
package com.github.pockethub.android.tests.issue;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Milestone;
import com.alorma.github.sdk.bean.dto.response.Repo;
import com.alorma.github.sdk.bean.dto.response.User;
import com.github.pockethub.core.issue.IssueFilter;
import com.github.pockethub.android.core.issue.IssueFilter;

/**
* Unit tests of {@link IssueFilter}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.issue;
package com.github.pockethub.android.tests.issue;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Issue;
import com.alorma.github.sdk.bean.dto.response.Repo;
import com.github.pockethub.core.issue.IssueStore;
import com.github.pockethub.util.InfoUtils;
import com.github.pockethub.android.core.issue.IssueStore;
import com.github.pockethub.android.util.InfoUtils;

/**
* Unit tests of {@link IssueStore}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.issue;
package com.github.pockethub.android.tests.issue;

import android.net.Uri;
import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.Issue;
import com.github.pockethub.core.issue.IssueUriMatcher;
import com.github.pockethub.android.core.issue.IssueUriMatcher;

/**
* Unit tests of {@link IssueUriMatcher}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.ref;
package com.github.pockethub.android.tests.ref;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.GitReference;
import com.github.pockethub.core.ref.RefUtils;
import com.github.pockethub.android.core.ref.RefUtils;


/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.pockethub.tests.repo;
package com.github.pockethub.android.tests.repo;

import android.test.AndroidTestCase;

import com.alorma.github.sdk.bean.dto.response.User;
import com.github.pockethub.ui.repo.RecentRepositories;
import com.github.pockethub.android.ui.repo.RecentRepositories;

import static com.github.pockethub.ui.repo.RecentRepositories.MAX_SIZE;
import static com.github.pockethub.android.ui.repo.RecentRepositories.MAX_SIZE;

/**
* Unit tests of {@link RecentRepositories}
Expand Down
Loading

0 comments on commit b65bbf5

Please sign in to comment.