This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <service android:name=".MyFirebaseMessagingService" | |
| android:exported="false"> | |
| <intent-filter> | |
| <action android:name="com.google.firebase.MESSAGING_EVENT" /> | |
| </intent-filter> | |
| </service> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.spreys.pushnotifications | |
| import android.app.NotificationChannel | |
| import android.app.NotificationManager | |
| import android.app.PendingIntent | |
| import android.content.Context | |
| import android.content.Intent | |
| import android.media.RingtoneManager | |
| import android.os.Build | |
| import androidx.core.app.NotificationCompat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FirebaseInstanceId.getInstance().instanceId | |
| .addOnCompleteListener(OnCompleteListener { task -> | |
| if (!task.isSuccessful) { | |
| return@OnCompleteListener | |
| } | |
| val token = task.result?.token | |
| Toast.makeText(baseContext, token, Toast.LENGTH_SHORT).show() | |
| }) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| implementation 'com.google.firebase:firebase-messaging:20.2.3' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| apply plugin: 'com.google.gms.google-services' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| classpath "com.google.gms:google-services:4.3.3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <script src="d3.v4.min.js"></script> | |
| <svg width="960" height="900"></svg> | |
| <script> | |
| d3.csv("categories.csv", function(error, data) { | |
| if (error) throw error; | |
| var svg = d3.select("svg"), | |
| width = +svg.attr("width"), | |
| height = +svg.attr("height"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # libraries | |
| import numpy as np | |
| import matplotlib as mpl | |
| mpl.use('TkAgg') | |
| import matplotlib.pyplot as plt | |
| import pandas as pd | |
| import codecs | |
| import csv | |
| # Fill up the data |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| holder.parentView.setOnClickListener(new View.OnClickListener() { | |
| @Override | |
| public void onClick(View view) { | |
| Intent intent = new Intent(context, DetailsActivity.class); | |
| intent.putExtra(DetailsActivity.EXTRA_CONTACT, contact); | |
| context.startActivity(intent); | |
| } | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| recyclerView.setLayoutManager(new LinearLayoutManager(this)); |
NewerOlder