我正在创建一个像超级克隆应用程序的应用程序,但在iber克隆应用程序type C = { a: string, b: number }
function f({ a, b }: C = {a:"", b:0}): void {
// ...
}
中的一个应用程序中,他有2个应用程序驱动程序和客户,并且在他的班级MyFirebaseMessaging
中,他为司机和顾客都这样
对于司机app:
MyfirebaseMessaging
对于客户应用程序:
public class MyFirebaseMessaging extends FirebaseMessagingService {
@Override
public void onMessageReceived(final RemoteMessage remoteMessage) {
LatLng customer_location = new Gson().fromJson(remoteMessage.getNotification().getBody(), LatLng.class);
Intent intent = new Intent(getBaseContext(), AppelPassager.class);
intent.putExtra("lat", customer_location.latitude);
intent.putExtra("lng", customer_location.longitude);
intent.putExtra("passager", remoteMessage.getNotification().getTitle());
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
}
}
我有一个应用程序。我如何将它们发布在一个班级?请帮帮我。