일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IOS10
- android log dump
- JavaScript Engine
- Push
- PageControl
- Android NDK시스템
- embedd
- Status Bar
- Android
- 안드로이드
- Magnify Anim
- V8 Engine
- Objective C
- apache
- java
- sha1 convert hashkey
- SO 파일
- FlexiblePageView
- IMAGE
- ios framework
- apk 다운사이징
- 공인인증서 정보
- ios
- 공인인증서 만료일
- 인증서 정보 뽑아내기
- appbarlayout
- v8 engine xcode build
- so file
- Google V8 Engine
- apns
- Today
- Total
목록전체 글 (55)
caTea 블로그
uri 가 있어야한다 이부분은 activityresult에서 발췌 Uri selectImageUri = data.getData();String[] filePathColumn = { MediaStore.Images.Media.DATA };Cursor cursor = getContentResolver().query(selectImageUri, filePathColumn, null, null, null);cursor.moveToFirst();int columnIndex = cursor.getColumnIndex(filePathColumn[0]);String path = cursor.getString(columnIndex);cursor.close(); Utility.showProgressDialog(getApp..
private final int PHOTO_SIZE_LIMIT = (64 * 1024); private byte[] settingPhoto(String path){byte[] returnVal = null;try{ExifInterface exif;int orientation = 0;exif = new ExifInterface(path);orientation = exif.getAttributeInt(ExifInterface.TAG_ORIENTATION, ExifInterface.ORIENTATION_UNDEFINED); BitmapFactory.Options options = new BitmapFactory.Options();File f = new File(path);long f_size = f.lengt..
원문 : http://mobileappdreams.blogspot.kr/2014/06/differences-between-ios-and-android.html Tuesday, June 24, 2014Differences between iPhone and Android Push Notifications: [APNS Vs GCM] The documentation on how push works are clearly explained here on the following links:iOS, Android,Windows The above references should help you to understand how push notification works. I felt it would be repetiti..