message body

This commit is contained in:
Gregor Wüst 2020-05-26 18:26:43 +02:00
parent 921ea4db20
commit f0ee27f089
4 changed files with 7 additions and 5 deletions

6
fcm/.idea/vcs.xml generated Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
</component>
</project>

View File

@ -10,8 +10,6 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.App">
<service android:name=".MyFirebaseMessagingService"
android:exported="false">
<intent-filter>
@ -26,5 +24,4 @@
</intent-filter>
</activity>
</application>
</manifest>

View File

@ -108,7 +108,7 @@ public class MainActivity extends AppCompatActivity {
buttonSend.setOnClickListener(v -> {
TOPIC = "/topics/testForMDT"; //topic must match with what the receiver subscribed to
NOTIFICATION_TITLE = "Test";
NOTIFICATION_MESSAGE = "Hello World";
NOTIFICATION_MESSAGE = "Gregor";
JSONObject notification = new JSONObject();
JSONObject notifcationBody = new JSONObject();

View File

@ -6,5 +6,4 @@
<item name="colorPrimaryDark">@color/purple700</item>
<item name="colorAccent">@color/teal200</item>
</style>
</resources>