Skip to content

Commit

Permalink
Fix typo in project name (spincter -> sphincter).
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Wendland committed Aug 12, 2015
1 parent b03ae59 commit 91f4548
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 14 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.michiwend.spincterremote;
package com.michiwend.sphincterremote;

import android.app.Application;
import android.test.ApplicationTestCase;
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/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.michiwend.spincterremote" >
package="com.michiwend.sphincterremote" >

<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
Expand All @@ -13,7 +13,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:name="com.michiwend.sphincterremote.MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
Expand All @@ -23,7 +23,7 @@
</intent-filter>
</activity>
<activity
android:name=".SettingsActivity"
android:name="com.michiwend.sphincterremote.SettingsActivity"
android:label="@string/action_settings"
android:screenOrientation="portrait" >
</activity>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.michiwend.spincterremote;
package com.michiwend.sphincterremote;

import android.app.Activity;
import android.content.BroadcastReceiver;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.michiwend.spincterremote;
package com.michiwend.sphincterremote;


public interface OnTaskCompleted {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.michiwend.spincterremote;
package com.michiwend.sphincterremote;

import android.os.Bundle;
import android.preference.PreferenceActivity;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.michiwend.spincterremote;
package com.michiwend.sphincterremote;


import android.content.SharedPreferences;
Expand All @@ -12,11 +12,6 @@
import java.net.HttpURLConnection;
import java.net.URL;

import javax.net.ssl.HttpsURLConnection;
import javax.net.ssl.SSLContext;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;

enum Action {
open_door,
close_door,
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>

<string name="app_name">Spincter Remote</string>
<string name="app_name">Sphincter Remote</string>
<string name="action_settings">Settings</string>
<string name="action_reload">Reload state</string>

Expand Down

0 comments on commit 91f4548

Please sign in to comment.