Browse Source

message body

master
Gregor Wüst 3 years ago
parent
commit
f0ee27f089

+ 6
- 0
fcm/.idea/vcs.xml 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>

+ 0
- 3
fcm/app/src/main/AndroidManifest.xml 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>

+ 1
- 1
fcm/app/src/main/java/com/example/fcm/MainActivity.java 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();

+ 0
- 1
fcm/app/src/main/res/values-night/styles.xml View File

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

</resources>

Loading…
Cancel
Save