일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- html
- Bootstrap
- decompiler
- varags
- TextBox
- STS
- Redirect
- WebView
- asp.net
- scrollView
- C#
- MANTIS
- 안드로이드
- jsp
- 웹뷰
- MSsql
- 웹 서비스
- javascript
- SpringSource Tool Suite
- MS-SQL
- 자바스크립트
- Web Service
- Java
- 이클립스
- Eclipse
- Maven
- 자바
- 컬럼명
- Android
- Apache Lucene
- Today
- 53
- Total
- 553,739
목록전체 글 (284)
bboks.net™

* 본 설명은 안드로이드 기준으로 설명 1. 1024 * 1024 크기의 이미지 준비 2. android studio에서 res 디렉토리 선택 3. 우클릭 > New > Image Asset 선택 4. Source Asset 에서 준비한 이미지 선택 그대로 사용할 경우 icon이 이쁘지 않음. 녹색 부분을 준비한 이미지의 배경과 비슷한 색깔로 변경 5. Background Layer 선택 > Color 또는 이미지를 선택해서 변경
방법1: angular.json에 추가 angular.json의 serve 항목에 proxy config 파일 설정 "serve":{ "builder":"@angular-devkit/build-angular:dev-server", "options":{ "browserTarget":"app:build", "proxyConfig":"./proxy.conf.json" }, "configurations":{ "production":{ "browserTarget":"app:build:production" }, "ci":{ "progress":false } } } 방법2: 실행 시 proxy config 지정 ionic serve -- --proxy-config proxy.conf.json
{ ... "projects": { "SkipTestsFromStart": { "projectType": "application", "schematics": { "@schematics/angular:component": { "style": "scss", "skipTests": true }, "@schematics/angular:class": { "skipTests": true }, "@schematics/angular:directive": { "skipTests": true }, "@schematics/angular:guard": { "skipTests": true }, "@schematics/angular:module": { "skipTests": true }, "@schematics/angular:p..
* 플랫폼 생성 후 적용은 splash에만 적용되는 것으로 확인 * 좀 더 정확한 확인을 위해 프로젝트 생성 후 처음부터 다시 해보는 방법을 써봐야 할 듯 1. 1024×1024px(icon)과 2732×2732px(splash) 이미지를 준비 2. 이미지를 ionic 프로젝트 root의 resources 폴더에 이동 3. capacitor-resource 설치 npm install capacitor-resources -g 4. cordova-res 설치 npm install -g cordova-res 3과 4 둘중 하나만 설치해도 될듯 5. 안드로이드 이미지 생성 ionic cordova resources android 6. 이미지를 복사 (resources 상위 디렉토리에서) cordova-res a..