출처: http://cofs.tistory.com/178?category=627173
************************** GCM 강좌 ****************************************
android GCM 클라이언트, 서버 완벽 구현 1 [ 사전 준비 ]
android GCM 클라이언트, 서버 완벽 구현 2 [ 클라이언트 셋팅, GCM 설정 ]
android GCM 클라이언트, 서버 완벽 구현 3 [ 클라이언트 셋팅, GCM 설정 ]
android GCM 클라이언트, 서버 완벽 구현 4 [ 서버 셋팅, GCM 설정 ]
******************************************************************************
이번에는 서버에서 보낸 PUSH 를 클라이언트 ( andrio project ) 에서 받는 부분과 PUSH 받은 내용을 상태바에 표시 및 AndroidManifest.xml 을 설정해 보겠습니다.
서버에서 보낸 PUSH 를 어플이 받는 순서의 설명은 아래와 같습니다.
서버에서 PUSH 를 google로 요청
google 에서 앱으로 push 전송
앱에서 push 수신 후 상태바에 표시
대략적인 설명이니 이렇게 흘러가는구나 하고 지나갑니다.
순서 요약입니다.
1. GcmBroadcastReceiver.java 생성
2. GCMIntentService.java 생성
3. AndroidManifest.xml 셋팅
1. GcmBroadcastReceiver.java 생성
GcmBroadcastReceiver 역할은 단순히 PUSH 가 왔을 때 앱에게 알려주느 ? 앱이 받아보는 ? 역할을 합니다.
broadcastReceiver 에 대해 검색해 보시면 많은 정보가 있으니 참고 바랍니다.
receive 후 GCMIntentService 를 호출하는 역할 만 합니다.
GCMIntentService 가 없으니 애러가 나는 것이 당연하니 그냥 넘어갑니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 |
import android.app.Activity;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.support.v4.content.WakefulBroadcastReceiver;
/**
* Created by on 2016-04-04.
*/
public class GcmBroadcastReceiver extends WakefulBroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// Explicitly specify that GcmIntentService will handle the intent.
ComponentName comp = new ComponentName(context.getPackageName(), GCMIntentService.class.getName());
// Start the service, keeping the device awake while it is launching.
startWakefulService(context, (intent.setComponent(comp)));
setResultCode(Activity.RESULT_OK);
System.out.println("************************************************* Receiver 실행");
}
} |
cs |
2. GCMIntentService.java 생성
broadcastReceiver 에서 receive 후 호출됩니다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96 |
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.NotificationCompat;
import com.google.android.gms.gcm.GoogleCloudMessaging;
import java.io.UnsupportedEncodingException;
import java.net.URLDecoder;
public class GCMIntentService extends IntentService {
public static final int NOTIFICATION_ID = 1;
private NotificationManager mNotificationManager;
// web server 에서 받을 extra key (web server 와 동일해야 함)
static final String TITLE_EXTRA_KEY = "TITLE";
static final String MSG_EXTRA_KEY = "MSG";
static final String TYPE_EXTRA_CODE = "TYPE_CODE";
// web server 에서 받을 extras key
public GCMIntentService() {
super("");
}
/**
* Creates an IntentService. Invoked by your subclass's constructor.
*
* @param name Used to name the worker thread, important only for debugging.
*/
public GCMIntentService(String name) {
super(name);
System.out.println("************************************************* GCMIntentService");
}
@Override
protected void onHandleIntent(Intent intent) {
Bundle extras = intent.getExtras();
GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(this);
// The getMessageType() intent parameter must be the intent you received
// in your BroadcastReceiver.
String messageType = gcm.getMessageType(intent);
System.out.println("************************************************* messageType : " + messageType);
if (!extras.isEmpty()) {
if (GoogleCloudMessaging.MESSAGE_TYPE_MESSAGE.equals(messageType)) {
// This loop represents the service doing some work.
// 메시지를 받은 후 작업 시작
System.out.println("************************************************* Working........................... ");
// Post notification of received message.
System.out.println("************************************************* 상태바 알림 호출");
sendNotification(extras);
System.out.println("************************************************* Received toString : " + extras.toString());
}
}
// Release the wake lock provided by the WakefulBroadcastReceiver.
GcmBroadcastReceiver.completeWakefulIntent(intent);
}
// 상태바에 공지
private void sendNotification(Bundle extras) {
// 혹시 모를 사용가능한 코드
String typeCode = extras.getString(TYPE_EXTRA_CODE);
mNotificationManager = (NotificationManager)
this.getSystemService(Context.NOTIFICATION_SERVICE);
PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
new Intent(this, MainActivity.class), 0);
NotificationCompat.Builder mBuilder =
null;
try {
mBuilder = (NotificationCompat.Builder) new NotificationCompat.Builder(this)
.setSmallIcon(R.mipmap.ic_launcher)
.setContentTitle(URLDecoder.decode(extras.getString(TITLE_EXTRA_KEY), "UTF-8"))
.setStyle(new NotificationCompat.BigTextStyle()
.bigText(URLDecoder.decode(extras.getString(MSG_EXTRA_KEY), "UTF-8")))
.setContentText(URLDecoder.decode(extras.getString(MSG_EXTRA_KEY), "UTF-8"));
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
mBuilder.setVibrate(new long[]{0,3000}); // 진동 효과 (퍼미션 필요)
mBuilder.setAutoCancel(true); // 클릭하면 삭제
mBuilder.setContentIntent(contentIntent);
mNotificationManager.notify(NOTIFICATION_ID, mBuilder.build());
}
} |
cs |
19# ~ 21# : 서버에서 사용할 KEY 값입니다. 서버에서는 push보낼 때 data의 KEY 값으로 사용되고 클라이언트에서는 data를 꺼낼 때 사용되는 KEY 값입니다.
66# : 상태바에 표시될 정보입니다. Notification에 대해서 다른 설정을 원하시면 검색해 보시면 무수히 많은 정보가 나오니 참고 바랍니다. 필자는 기본 아이콘에 제목, 내용 으로 구성하였습니다.
89# : 상태바에 내용이 등록 될 때 사용자에게 알려주기 위해서 진동효과를 줍니다. 진동 효과는 퍼미션이 필요하며 아래 Manifest에서 설정합니다.
3. AndroidManifest.xml 셋팅
GCM 을 사용하기 위해서는 몇가지 퍼미션이 필요합니다.
다음과 같이 작성합니다.
1
2
3
4
5
6
7
8
9
10
11
12 |
<!-- GCM 퍼미션 -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
<permission android:name="패키지명.permission.C2D_MESSAGE"
android:protectionLevel="signature" />
<uses-permission android:name="패키지명.permission.C2D_MESSAGE" />
<!-- 진동 퍼미션 -->
<uses-permission android:name="android.permission.VIBRATE" /> |
cs |
7#, 8# : 패키지명은 Manaiest 상단에 보면 package 가 있다. 그 정보를 넣으면 됩니다.
12# : PUSH 가 왔을 때 진동을 주기위해 퍼미션을 주어야 합니다.
application 내부에 리시버를 등록해 주어야 한다.
1
2
3
4
5
6
7
8
9
10
11 |
<!-- GCM 리시버 -->
<receiver
android:name=".GcmBroadcastReceiver"
android:permission="com.google.android.c2dm.permission.SEND" >
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="패키지명" />
</intent-filter>
</receiver>
<!-- GCM 서비스 -->
<service android:name=".GCMIntentService" /> |
cs |
7# : 패키지명은 Manaiest 상단에 보면 package 가 있다. 그 정보를 넣으면 됩니다.
이상으로 클라이언트 ( 어플리케이션 ) 의 설정은 끝났습니다.
여기서 앱을 실행하면 정확히 10초 후 앱이 오류를 내며 종료합니다.
이유는 로그를 보면 알겠지만 서버가 없는데 서버로 요청을 하도록 만들어 놓았기 때문입니다.
이 오류를 없애기 위해서는 MainActivity.java 에서 sendRegistrationIdToBackend 함수 내부 소스를 주석처리 하시기 바랍니다.
바로 서버를 만드실 계획이라면 무시하셔도 좋습니다.
추후에 서버를 만들게 되면 꼭 주석을 해제하세요 !!
지금까지 만든 내용을 요약하자면 GCM 을 사용하기위한 설정, 어플리케이션에서 GCM PUSH 를 받기, regId 를 서버로 전송하는 셋팅이 모두 끝났습니다.
다음 강좌에서는 서버를 만들어서 직접 PUSH 를 날려보도록 하겠습니다.
'mobile > android' 카테고리의 다른 글
android 뒤로가기 두번 눌러서 종료 / 어플 종료 방법 / 두번 눌러서 닫기 (2) | 2016.05.12 |
---|---|
android 현재 WebView에서 외부 페이지 불러오기 / WebView 새창 띄우지 않기 / WebViewClient (0) | 2016.04.20 |
android webview 에서 카메라 호출 및 사진첩(갤러리) 호출하여 이미지 파일 업로드 하기 (21) | 2016.04.14 |
android html5 스마트폰 카메라와 연결하기, 사진(갤러리) 및 동영상 찍기 예제 ( URL.createObjectURL ) (0) | 2016.04.08 |
android GCM 클라이언트, 서버 완벽 구현 예제 4 [ 서버 셋팅, GCM 설정 ] (121) | 2016.04.07 |
android GCM 클라이언트, 서버 완벽 구현 예제 3 [ 클라이언트 셋팅, GCM 설정 ] (5) | 2016.04.07 |
android GCM 클라이언트, 서버 완벽 구현 예제 2 [ 클라이언트 셋팅, GCM 설정 ] (5) | 2016.04.07 |
android GCM 클라이언트, 서버 완벽 구현 예제 1 [ 사전 준비 ] (1) | 2016.04.07 |
Android OCR 한글 및 영문 인식 Tesseract 샘플 프로젝트 테스트 (110) | 2016.04.06 |
android | 꺼진 화면에서 앱 실행하기 / 잠든 화면 깨우기 / 잠금 화면 위로 실행/ (6) | 2016.03.30 |
android | 디바이스 부팅시 앱 실행하는 방법 / 재부팅 시 어플 실행하는 방법 (0) | 2016.03.30 |
'개발 > APP' 카테고리의 다른 글
android GCM 클라이언트, 서버 완벽 구현 4 [ 서버 셋팅, GCM 설정 ] (0) | 2018.12.18 |
---|---|
android GCM 클라이언트, 서버 완벽 구현 2 [ 클라이언트 셋팅, GCM 설정 ] (0) | 2018.12.18 |
android GCM 클라이언트, 서버 완벽 구현 1 [ 사전 준비 ] (0) | 2018.12.18 |
안드로이드 회전 막기 (0) | 2018.12.10 |
간단한 웹뷰 컴포넌트의 이해와 최적화 (0) | 2018.12.10 |