Skip to content

Commit

Permalink
fixing class name references
Browse files Browse the repository at this point in the history
  • Loading branch information
leggetter committed Jul 4, 2012
1 parent e9869a8 commit 4d24dc6
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 62 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
*.DS_Store
bin
gen
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pusher.pusherexample"
package="com.pusher.phonegap"
android:versionCode="1"
android:versionName="1.0" >

Expand Down Expand Up @@ -35,7 +35,7 @@
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".PusherExample"
android:name=".PusherPhoneGap"
android:label="@string/title_activity_main"
android:configChanges="orientation|keyboardHidden|screenSize" >
<intent-filter>
Expand Down
1 change: 0 additions & 1 deletion assets/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ <h2>Device Info:</h2>
<h2>Pusher</h2>
<label>Connection status: </label><span id="connectionStatus">no loaded</span><br />
<label>Subscription status: </label><span id="subscriptionStatus">not loaded</span><br />
<button id="subscribeBtn">Subscribe</button>

<script src="js/libs/cordova-1.9.0.js"></script>
<script src="js/libs/websocket.js"></script>
Expand Down
8 changes: 0 additions & 8 deletions assets/www/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@
$('#subscriptionStatus').html('succeeded');
}

var clicks = 0;
$('#subscribeBtn').click( subscribeBtnClicked );
function subscribeBtnClicked() {
var channelName = 'channel-' + clicks;
++clicks;
pusher.subscribe(channelName);
}

}

} )( jQuery );
Expand Down
6 changes: 0 additions & 6 deletions gen/com/pusher/pusherexample/BuildConfig.java

This file was deleted.

44 changes: 0 additions & 44 deletions gen/com/pusher/pusherexample/R.java

This file was deleted.

2 changes: 1 addition & 1 deletion project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt

# Project target.
target=android-16
target=android-15

0 comments on commit 4d24dc6

Please sign in to comment.