Morpheus Push 는 스마트폰 OS에서 지원하는 PNS(Push Notification Server)를 기반으로 한 메세지 전송 플랫폼이다.
Android Client 에서는 UPMC WAS 에서 제공하는 Push API 를 각각 버전 규격에 맞춰 연동하여 원할하게 Push Service 를 운영하기 위한 라이브러리를 제공한다.
buildscript{repositories{google()mavenCentral()}dependencies{classpath"com.android.tools.build:gradle:7.2.2"classpath'com.google.gms:google-services:4.3.14'// NOTE: Do not place your application dependencies here; they belong// in the individual module build.gradle files}}allprojects{repositories{google()mavenCentral()}}taskclean(type:Delete){deleterootProject.buildDir}
// Add the SDK for Firebase Cloud Messagingimplementation'com.google.firebase:firebase-messaging:20.2.1'implementation'com.nostra13.universalimageloader:universal-image-loader:1.9.5'implementation'com.google.code.gson:gson:2.8.5'implementation'com.firebase:firebase-jobdispatcher:0.8.5'
3번 : google-services plugin 적용
applyplugin:'com.google.gms.google-services'
Sample
applyplugin:'com.android.application'android{compileSdkVersion31//buildToolsVersion "29.0.3"defaultConfig{applicationId"com.push.cloud"minSdkVersion19targetSdkVersion31versionCode1versionName"1.0"testInstrumentationRunner"androidx.test.runner.AndroidJUnitRunner"}buildTypes{release{minifyEnabledfalseproguardFilesgetDefaultProguardFile('proguard-android-optimize.txt'),'proguard-rules.pro'}}}dependencies{implementationfileTree(dir:"libs",include:["*.jar"])implementation'androidx.appcompat:appcompat:1.1.0'implementation'com.google.android.material:material:1.0.0'implementation'androidx.constraintlayout:constraintlayout:1.1.3'implementation'androidx.navigation:navigation-fragment:2.1.0'implementation'androidx.navigation:navigation-ui:2.1.0'// Add the SDK for Firebase Cloud Messagingimplementation'com.google.firebase:firebase-messaging:23.1.0'implementation'androidx.work:work-runtime:2.7.1'//샘플 프로젝트를 위한 image loader librayimplementation'com.nostra13.universalimageloader:universal-image-loader:1.9.5'implementation'com.google.code.gson:gson:2.8.5'testImplementation'junit:junit:4.12'androidTestImplementation'androidx.test.ext:junit:1.1.1'androidTestImplementation'androidx.test.espresso:espresso-core:3.2.0'}applyplugin:'com.google.gms.google-services'
가.CloudConsole에서발급받은projectid를<project-id></project-id>에 입력나.접속할서버정보를<server></server> 에 입력다.FirebaseConsole에서획득한발신자id(senderid)를<fcm-sender-id></fcm-sender-id> 에 입력한다.라.log와filelog는필요시수정한다.
Manifest.xml 예시
<?xml version="1.0" encoding="UTF-8"?><settings><push><receiver><project-id>123456589</project-id><log>y</log><file-loy>y</file-loy><!-- UPMC 서버 버전 5.0--><version>5.0</version><!--UPMC 서버 URL : 아래 도메인 정보 fixed --><server>https://umpc.message-ai.net</server><!-- 타임아웃 시간 --><timeout>20000</timeout><!-- firebase console 에서 획득한 발신자 id --><fcm-sender-id>123456789101</fcm-sender-id><!-- fixed --><android-push-type>FCM</android-push-type><!-- 브로드캐스트 리시버에서 퍼미션 사용 여부를 설정 (Y) : fixed --><use-permission>Y</use-permission></receiver></push></settings>
참고
project-id 는
서비스그룹 생성 시 발급되는 서비스그룹아이디 PROJECT ID 를 통해, 확인 할 수 있다.
참고
file log를 활성화 하는 경우 파일 위치 : 메인저장소 > Android > data > [page name] > log > pushlog.log
MessageArrivedReceiver 는 BroadcastReceiver 를 상속받아 생성한다.
MessageArrivedReceiver 예시
importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.Intent;importcom.uracle.push.test.helper.PushNotifyHelper;importorg.json.JSONObject;importm.client.push.library.common.Logger;importm.client.push.library.common.PushConstants;publicclassMessageArrivedReceiverextendsBroadcastReceiver{@OverridepublicvoidonReceive(Contextcontext,Intentintent){if(intent.getAction().equals(context.getPackageName()+PushConstants.ACTION_GCM_MESSAGE_ARRIVED)){try{// 수신된 payload data 는 아래 3가지 방식으로 획득 할 수 있다.Stringdata=intent.getExtras().getString(PushConstants.KEY_JSON);StringrawData=intent.getExtras().getString(PushConstants.KEY_ORIGINAL_PAYLOAD_STRING);byte[]rawDataBytes=intent.getExtras().getByteArray(PushConstants.KEY_ORIGINAL_PAYLOAD_BYTES);Logger.i(newJSONObject(data).toString(2));Logger.i("received raw data : "+rawData);Logger.i("received bytes data : "+newString(rawDataBytes,"utf-8"));// 노티피케이션 생성PushNotifyHelper.showNotification(context,newJSONObject(data));}catch(Exceptione){e.printStackTrace();}}}}
<?xml version="1.0" encoding="utf-8"?><manifestxmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"package="com.push.cloud"><applicationandroid:requestLegacyExternalStorage="true"android:allowBackup="false"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:roundIcon="@mipmap/ic_launcher_round"android:supportsRtl="true"android:theme="@style/AppTheme"android:usesCleartextTraffic="true"><activityandroid:name=".MainActivity"android:label="@string/app_name"android:theme="@style/AppTheme.NoActionBar"><intent-filter><actionandroid:name="android.intent.action.MAIN"/><categoryandroid:name="android.intent.category.LAUNCHER"/></intent-filter></activity><!-- =================== PUSH SERVICE SETTINGS START============= --><!-- FirebaseMessagingService 를 상속받아 구현 됨 --><serviceandroid:name="m.client.push.library.service.FCMIntentService"android:exported="false"tools:ignore="Instantiatable"><intent-filter><actionandroid:name="com.google.firebase.MESSAGING_EVENT"/></intent-filter></service><!-- 푸시 payload data 수신 class --><receiverandroid:name=".receiver.MessageArrivedReceiver"><intent-filter><actionandroid:name="${applicationId}.GCM_MESSAGE_ARRIVED"/></intent-filter></receiver><!-- UPMC 서비스 등록 / 해제 등을 위한 class --><receiverandroid:name="m.client.push.library.receiver.FcmActionReceiver"><intent-filter><actionandroid:name="${applicationId}.ACTION_GCM"/></intent-filter></receiver></application><!-- 푸시 BroadCast 수신 권한 용 Permission --><permissionandroid:name="${applicationId}.permission.MPUSH_PERMISSION"android:protectionLevel="signature"/><uses-permissionandroid:name="${applicationId}.permission.MPUSH_PERMISSION"/><!-- 푸시 수신 후, screen on 을 위한 permission--><uses-permissionandroid:name="android.permission.WAKE_LOCK"/><uses-permissionandroid:name="android.permission.INTERNET"/><uses-permissionandroid:name="android.permission.VIBRATE"/><uses-permissionandroid:name="android.permission.WRITE_EXTERNAL_STORAGE"/><!-- =================== PUSH SERVICE SETTINGS END ============= --></manifest>