자까 아이디에서 오류가 나는데 잘모르겠습니다. ㅠㅠ
아직학생인데
gcm 연동해오라해서
인터넷소스보고 이것저것햇는데....
매니페스트 변경후에
java코드에서 setContentView(R.layout.main);
mDisplay = (TextView) this.findViewById(R.id.display);
이해가안됩니다. ㅠ
혹시 카톡으로 파일받아보실분은 dh308이나 메일
anger010@naver.com로 남겨주세요 ㅠㅠ
@TargetApi(Build.VERSION_CODES.GINGERBREAD)
public class Main extends ActionBarActivity {
public static final String EXTRA_MESSAGE = "message";
public static final String PROPERTY_REG_ID = "registration_id";
private static final String PROPERTY_APP_VERSION = "appVersion";
private static final int PLAY_SERVICES_RESOLUTION_REQUEST = 9000;
/**
* Substitute you own sender ID here. This is the project number you got
* from the API Console, as described in "Getting Started."
*/
String SENDER_ID = "542406813237";
/**
* Tag used on log messages.
*/
static final String TAG = "GCM Demo";
TextView mDisplay;
GoogleCloudMessaging gcm;
AtomicInteger msgId = new AtomicInteger();
Context context;
String regid;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
mDisplay = (TextView) this.findViewById(R.id.display);
context = getApplicationContext();