Skip to content
This repository has been archived by the owner on May 20, 2020. It is now read-only.

Commit

Permalink
Package name change back to showtimeremote
Browse files Browse the repository at this point in the history
  • Loading branch information
claha committed Mar 1, 2015
1 parent d1b6875 commit 6ae1dc7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ android {
buildToolsVersion "21.1.2"

defaultConfig {
applicationId "com.claha.movianremote"
applicationId "com.claha.showtimeremote"
minSdkVersion 11
targetSdkVersion 21
versionCode 2
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity
android:name=".MovianRemote"
android:name="com.claha.movianremote.MovianRemote"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
Expand All @@ -23,7 +23,7 @@
android:label="@string/settings">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".MovianRemote" />
android:value="com.claha.movianremote.MovianRemote" />
</activity>
</application>

Expand Down
3 changes: 1 addition & 2 deletions app/src/main/java/com/claha/movianremote/SettingsScreen.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public boolean onOptionsItemSelected(MenuItem item) {

public static class SettingsFragment extends PreferenceFragment implements Preference.OnPreferenceChangeListener, Preference.OnPreferenceClickListener {

private final static String PACKAGE_NAME = "com.claha.movianremote";
private final static String PACKAGE_NAME = "com.claha.showtimeremote";

private final static int PROFILES = 0;
private final static int PROFILES_CHOOSE = 0;
Expand Down Expand Up @@ -94,7 +94,6 @@ public void onCreate(final Bundle savedInstanceState) {
//aboutVersion = about.getPreference(ABOUT_VERSION);
aboutRate = about.getPreference(ABOUT_RATE);
aboutRate.setOnPreferenceClickListener(this);

}

@Override
Expand Down

0 comments on commit 6ae1dc7

Please sign in to comment.