Skip to content

Commit 848fbdc

Browse files
committed
rename
1 parent 2aa497f commit 848fbdc

File tree

5 files changed

+7
-11
lines changed

5 files changed

+7
-11
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</intent-filter>
4747
</activity>
4848
<activity
49-
android:name=".ExampleFeedActivity"
49+
android:name=".FeedExampleActivity"
5050
android:exported="true"
5151
android:label="FastComments Feed"
5252
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
@@ -56,7 +56,7 @@
5656
</intent-filter>
5757
</activity>
5858
<activity
59-
android:name=".ExampleLiveChatActivity"
59+
android:name=".LiveChatExampleActivity"
6060
android:exported="true"
6161
android:label="FastComments Live Chat"
6262
android:theme="@style/Theme.AppCompat.Light.NoActionBar">

app/src/main/java/com/fastcomments/ExampleFeedActivity.java renamed to app/src/main/java/com/fastcomments/FeedExampleActivity.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* Example activity showing how to use the FastCommentsFeedView
1616
*/
17-
public class ExampleFeedActivity extends AppCompatActivity {
17+
public class FeedExampleActivity extends AppCompatActivity {
1818

1919
private FastCommentsFeedView feedView;
2020
private FastCommentsFeedSDK feedSDK;
@@ -66,7 +66,7 @@ public void onPostSelected(FeedPost post) {
6666
@Override
6767
public void onCommentsRequested(FeedPost post) {
6868
// Show comments dialog for the post
69-
CommentsDialog dialog = new CommentsDialog(ExampleFeedActivity.this, post, feedSDK);
69+
CommentsDialog dialog = new CommentsDialog(FeedExampleActivity.this, post, feedSDK);
7070
dialog.show();
7171
}
7272
});

app/src/main/java/com/fastcomments/ExampleLiveChatActivity.kt renamed to app/src/main/java/com/fastcomments/LiveChatExampleActivity.kt

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
package com.fastcomments
22

33
import android.os.Bundle
4-
import android.widget.Toast
54
import androidx.appcompat.app.AppCompatActivity
65
import com.fastcomments.core.CommentWidgetConfig
76
import com.fastcomments.core.sso.FastCommentsSSO
87
import com.fastcomments.core.sso.SimpleSSOUserData
9-
import com.fastcomments.model.APIError
10-
import com.fastcomments.model.GetCommentsResponseWithPresencePublicComment
11-
import com.fastcomments.sdk.FCCallback
128
import com.fastcomments.sdk.LiveChatView
139
import com.fastcomments.sdk.FastCommentsSDK
1410

1511
/**
1612
* Example activity showing how to use the LiveChatView
1713
*/
18-
class ExampleLiveChatActivity : AppCompatActivity() {
14+
class LiveChatExampleActivity : AppCompatActivity() {
1915

2016
private lateinit var liveChatView: LiveChatView
2117
private lateinit var sdk: FastCommentsSDK

app/src/main/res/layout/activity_example_feed.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7-
tools:context=".ExampleFeedActivity">
7+
tools:context=".FeedExampleActivity">
88

99
<com.fastcomments.sdk.FastCommentsFeedView
1010
android:id="@+id/feedView"

app/src/main/res/layout/activity_example_live_chat.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
xmlns:tools="http://schemas.android.com/tools"
55
android:layout_width="match_parent"
66
android:layout_height="match_parent"
7-
tools:context=".ExampleLiveChatActivity">
7+
tools:context=".LiveChatExampleActivity">
88

99
<com.fastcomments.sdk.LiveChatView
1010
android:id="@+id/liveChatView"

0 commit comments

Comments
 (0)