본문 바로가기

카테고리326

Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent Targeting S+ (version 31 and above) requires that one of FLAG_IMMUTABLE or FLAG_MUTABLE be specified when creating a PendingIntent. Strongly consider using FLAG_IMMUTABLE, only use FLAG_MUTABLE if some functionality depends on the PendingIntent being mutable, e.g. if it needs to be used with inline replies or bubbles. 나의경우 FLAG_ONE_SHOT으로 되어있는 부분을 FLAG_MUTABLE로 변경후 완료 자세한내용 https://developer.and.. 2022. 5. 16.
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.
FCM 오랜만에 예전에만들었던 프로젝트를 다시꺼내와서 실행해보니 다 터져있다 그중 푸쉬관련기능중 예전에 쓰던것은 지우고 해당플러그인으로 변경 https://github.com/andrehtissot/cordova-plugin-fcm-with-dependecy-updated GitHub - andrehtissot/cordova-plugin-fcm-with-dependecy-updated: Google FCM Push Notifications Cordova Plugin Google FCM Push Notifications Cordova Plugin. Contribute to andrehtissot/cordova-plugin-fcm-with-dependecy-updated development by creating .. 2022. 3. 10.
윈도우 11 작업표시줄 그룹화 해제 https://github.com/valinet/ExplorerPatcher GitHub - valinet/ExplorerPatcher: This project aims to enhance the working environment on Windows This project aims to enhance the working environment on Windows - GitHub - valinet/ExplorerPatcher: This project aims to enhance the working environment on Windows github.com 해당 깃헙에서 다운후 프로그램 실행 es_setup.exe 2022. 3. 7.
버전체크 npm-check-updates https://www.npmjs.com/package/npm-check-updates npm-check-updates Find newer versions of dependencies than what your package.json allows. Latest version: 12.3.0, last published: 9 days ago. Start using npm-check-updates in your project by running `npm i npm-check-updates`. There are 392 other projects in the npm registry www.npmjs.com npm install -g npm-check-updates ncu 명령어로 가능업데이트 확인 ncu -u로 버.. 2022. 2. 17.
인공지능 머신러닝 딥러닝 https://blogs.nvidia.co.kr/2016/08/03/difference_ai_learning_machinelearning/ 인공 지능과 머신 러닝, 딥 러닝의 차이점을 알아보자 - NVIDIA Blog Korea 인공 지능과 머신 러닝, 딥 러닝의 차이점을 알아보자 세기의 바둑대전에서 구글 딥마인드의 인공지능 ‘알파고(AlphaGo)’ 프로그램이 한국의 이세돌 9단을 꺾었을 때, 알파고의 승리 배경을 blogs.nvidia.co.kr 차이는 잘설명해놨다 저기에 키워드 '텐서플로우,케라스,젠심,사이킷런,주피터노트북,넘파이,판다스,맷플롭립' 텐서플로우 이것저것 뒤져보면서 1버전과 2버전이 있다. 2버전기준으로 배우는게 좋아보인다 또한 파이썬에 대해서 익숙해져야할 필요가 있을듯하다 개발환경은 .. 2021. 11. 4.
react create-react-app xxx --template particles-typescript yarn add @material-ui/core 2021. 9. 8.
'authorizationStatus()' was deprecated in iOS 14.0 https://developer.apple.com/documentation/corelocation/cllocationmanager/1423523-authorizationstatus Apple Developer Documentation developer.apple.com https://www.python2.net/questions-1214864.htm swift - iOS 14에서 사용자 위치 권한 상태 확인 그래서 iOS14에서 사용자 위치에 액세스 할 수 있는지 확인하고 싶었습니다.이 code를 찾았지만 XCode (12)가 다음과 같이 소리칩니다. 'authorizationStatus()' was deprecated in iOS 14.0 code는 다음과 같습니다. f www.python2.net f.. 2021. 6. 7.
Your password does net satisfy the current policy requirements show variables like 'validate_password%' validate_password.check_user_nameON validate_password.dictionary_file validate_password.length8 validate_password.mixed_case_count1 validate_password.number_count1 validate_password.policyMEDIUM validate_password.special_char_count1 policy가 MEDIUM으로 되어있는것을 확인할수 있다. set global validate_password.policy=LOW; 변경후 진행 2021. 5. 7.