본문 바로가기

모바일/Android30

WEBVIEW에서 WEBRTC 권한관련 https://developer.android.com/reference/android/webkit/PermissionRequest PermissionRequest | Android Developers developer.android.com 들어가자 마자 보이는 저부분 저렇게 해서 안되는거였다. permissionRequest.grant(permissionRequest.getResources()) // This is wrong!!! 변경부분 @Override public void onPermissionRequest(PermissionRequest request) { final String[] requestedResources = request.getResources(); for (String r : req.. 2022. 4. 4.
videojs fullscreen landscape 안드로이드 웹뷰에서 videojs로 실행시킨 동영상이 풀스크린으로 작동되지 않았다. kutar37.tistory.com/entry/Android-webview%EC%97%90%EC%84%9C-HTML-video-%EC%A0%84%EC%B2%B4%ED%99%94%EB%A9%B4-%EC%9E%AC%EC%83%9D Android : webview에서 HTML video 전체화면 재생 Android : webview에서 HTML video 전체화면 재생 안드로이드에서 webview로 해당 url에 접속할 때 기본적으로 setWebChromeClient() 와 setWebViewClient()를 설정해주는데, 보통과 같이 진행하면 HTML video 태.. kutar37.tistory.com 해당 내용을 기본으로.. 2021. 3. 22.
The emulator process for AVD [] was killed. 에뮬레이터 추가시 에러발생 The emulator process for AVD [] was killed. stackoverflow.com/questions/41274830/panic-cannot-find-avd-system-path-please-define-android-sdk-root PANIC: Cannot find AVD system path. Please define ANDROID_SDK_ROOT I'm trying to run my first Ionic app but i'm getting this error where it does not find my phone and does not find the emulator to run either. C:\Users\MART\Dropbox\Ionic\.. 2020. 12. 15.
키해시 뽑기 keytool 사용으로 뽑을수있긴한데 이걸로 뽑았을때 openssl버전에 따라서 인증이 되지 않는경우가 있었다. @SuppressLint("PackageManagerGetSignatures") private void getHashKey(){ PackageInfo packageInfo = null; try { packageInfo = getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_SIGNATURES); } catch (PackageManager.NameNotFoundException e) { e.printStackTrace(); } if (packageInfo == null) Log.e("KeyHash", "KeyHash:n.. 2020. 8. 31.
안드로이드 사진 돌아감 exif https://stackoverflow.com/questions/20478765/how-to-get-the-correct-orientation-of-the-image-selected-from-the-default-image How to get the Correct orientation of the image selected from the Default Image gallery I have gone through some of the links to get the correct image orientation of the image selected from the default image gallery to be worked standard in all devices the exif tag always .. 2020. 5. 8.
Issue: Missing or inaccurate target audience information 앱정보-> 앱 콘텐츠 타겟설정이 되지 않아서 생긴일 해당 내용설정후 해결 2020. 2. 7.
2019년 타겟 API 레벨 요구사항 확대 안내 https://developers-kr.googleblog.com/2019/04/expanding-target-api-level-requirements.html 2019년 타겟 API 레벨 요구사항 확대 안내 게시자: Edward Cunningham, 안드로이드보안 및 개인정보 보호 팀 작년 1월 소개한 이전 블로그 에서 ... developers-kr.googleblog.com API레벨을 28이상을 대상으로 해야된다. https://developer.android.com/distribute/best-practices/develop/target-sdk?hl=ko Google Play의 대상 API 레벨 요구사항 충족하기 | Android Developers APK를 업로드하는 경우 Google Play.. 2019. 9. 10.
문제: 기기 및 네트워크 악용 정책 위반 문제: 기기 및 네트워크 악용 정책 위반 사용자의 기기, 기타 기기 또는 컴퓨터, 서버, 네트워크, 애플리케이션 프로그래밍 인터페이스(API), 서비스(기기에 설치된 기타 앱, Google 서비스, 승인된 이동통신사 네트워크를 포함하나 이에 국한되지 않음)를 방해하거나, 작동에 지장을 주거나, 손상시키거나, 무단으로 액세스하는 앱은 허용되지 않습니다. 앱이 서비스 약관을 위반하는 방식으로 서비스 또는 API에 액세스하거나 이를 사용해서는 안 됩니다. 예를 들어 앱에서 YouTube 서비스 약관을 위반하는 방법으로 YouTube 동영상을 다운로드, 수익화 또는 액세스하지 않아야 합니다. 웹뷰에서 youtube가 실행되면 해당내용이 오는것같다. 결론은 유튜브가 백그라운드로 작동하면 안된다는것 http://b.. 2019. 7. 16.
GPS 관련 https://developer.android.com/reference/android/Manifest.permissionStringACCESS_COARSE_LOCATIONAllows an app to access approximate location.StringACCESS_FINE_LOCATIONAllows an app to access precise location.StringACCESS_LOCATION_EXTRA_COMMANDSAllows an application to access extra location provider commands. GPS의 경우NETWORK_PROVIDER : 네트워크를 통한 사용자위치결정ACCESS_COARSE_LOCATION, ACCESS_FINE_LOCATION GP.. 2019. 3. 13.