묻고 답해요
164만명의 커뮤니티!! 함께 토론해봐요.
인프런 TOP Writers
-
미해결
Are you looking best mobile app development companies in India
Devstringx Technologies successfully delivered the best mobile app development companies in Noida, India, and United States. We provide the best IT services like Software testing service, software development, product development, mobile app development, agile testing service, web application testing service, etc. Ours headquarter is located in Noida, UP & another branch is situated in Lewes, DE, USA. We started in 2014 and now our routes are in the world. we started working with clients across the globe with the rate of 100% concluded projects. We serve many organizations in the field of IT and uphold them in speeding up their development in a more creative manner with the assistance of innovation. We always focus to deliver top-quality services. To know more about us so kindly visit Our website.app development companies in Noida
-
미해결홍정모의 따라하며 배우는 C++
영상 마지막 부분에 내주신 과제물 풀어보았습니다. 코드리뷰 해주시면 정말로 감사드리겠습니다!
무엇을 잘했는지 그리고 어떤 부분을 잘 못했는지 따끔하게 지적 부탁드리겠습니다! [조금 더 나아가 홀수와 짝수를 분리시켜 출력하는 구구단 코드를 작성했습니다.] 1.구구단(홀,짝 구분 / while문 사용) #include <iostream> using namespace std; int main(){ cout << "Multiplication Table" << endl; int N; cin >> N; int num1=1, num2=1; while (num2<=9) { num1 = 1; while (num1 <= N) { //even num => print if (num1 % 2 == 0) { cout << num1 << '*' << num2 << '=' << num1 * num2 <<'\t'; } num1++; }cout << endl; num2++; } cout <<'\n'<< endl; num2 = 1; num1 = 2; while (num2 <= 9) { num1 = 2; while (num1 <= N) { //odd num => print if (num1 % 2 == 1) { cout << num1 << '*' << num2 << '=' << num1 * num2 << '\t'; } num1++; }cout << endl; num2++; } return 0;} 2. (1)번 문제를 goto문으로 변경해보았습니다.(main함수만 첨부) int main() { cout << "Multiplication Table" << endl; int N; cin >> N; int num1=1, num2=1; /*Even Number*/ goto tryAgain_2;tryAgain_1: // label 1 { tryAgain_2: // label 2 { if (num1 % 2 == 0) {cout << num1 << '*' << num2 << '=' << num1 * num2 << '\t';} num1++; if (num1 <= N) {goto tryAgain_2;} } cout << endl; num1 = 1; num2++; if (num2 <= 9) {goto tryAgain_1;} } cout << endl; num1 = 2; num2 = 1; /*Odd Number*/ goto tryAgain_4;tryAgain_3: // label 3 { tryAgain_4: // label 4 { //Even num_print if (num1 % 2 == 1) { cout << num1 << '*' << num2 << '=' << num1 * num2 << '\t'; } num1++; if (num1 <= N) { goto tryAgain_4; } } cout << endl; num1 = 2; num2++; if (num2 <= 9) { goto tryAgain_3; } } /*------------------------------------------숫자 직각 삼각형----------------*/3.작은 수 부터 출력하는 직각삼각형 int main(){ using namespace std; int N; cout <<"Number of Line: "; cin >> N; cout << endl; int count_outer = 1; while (count_outer <= N) { int count_inner = 1; while (count_inner <= count_outer) { cout << count_inner++ << " "; }cout << endl; count_outer++; } return 0;} 4.(3)을 역으로 하여 큰 수 부터 출력하는 직각삼각형 int main(){ using namespace std; int N; cout <<"Number of Line: "; cin >> N; cout << endl; int count_outer = 1; while (count_outer<=N) { int count_inner = N; while (count_inner >= count_outer) { cout << count_inner-- << " "; }cout << endl; ++count_outer; } return 0;}
-
미해결[개정판] 파이썬 머신러닝 완벽 가이드
One class classification (anomalies detection)
안녕하세요 선생님!코딩 입문자인 제가 어쩌다가 회사에서 머신러닝 프로젝트를 맡게 되어 여기저기서 도움을 구하다가 선생님 강의를 찾게 되어 열심히 따라가는 중입니다. 어렵지만 쉽게 설명해주셔서 정말 도움이 많이 됩니다.수업 내용 참고해 가면서 드디어 ML 모델을 제 프로젝트에도 적용해보려고 시도했는데요. 데이터를 가만히 들여다보니 제가 가진 데이터는 one class classification, 그러니까 anomalies detection 을 하는 모델을 만들어야 하는 것으로 생각되었습니다. (imbalanced data, 아주작은 비정상 샘플 (혹은 없음) vs 많은 정상 샘플).질문: 수업 내용 중에서는 신용카드 사기예측 분석 부분이 가장 잘 맞을 것 같아 맞춰서 적용해보는 중인데요. 만약 정상 샘플만 존재해도 one class classification 이 가능한지 궁금하구요. 또한, 제가 가진 데이터와 같은 One class classification (anomalies detection) 시 제가 집중해야 할 수업 부분과 해당 분석을 위한 데이터 준비할 때 주의사항, 추천모델, 평가 방법에 대한 조언을 부탁드리겠습니다.
-
미해결반응형 웹사이트 포트폴리오(Architecture Agency)
page scroll effects 질문입니다.
안녕하세요. 다름이 아니라 플러그인으로 사용하신 사이트가 유료인가요 무료인가요? 상업적으로 이용하려면 결제를 해야하는지 궁금해서 문의 남깁니다. 감사합니다.
-
미해결파이썬 알고리즘 문제풀이 입문(코딩테스트 대비)
이 코드는 맞을까요?!
이렇게 풀어도 채점에서는 다 맞는데 이렇게 풀어도 괜찮을까요?```py if __name__=="__main__" : n = int(input()) arr = [list(map(int,input().split())) for _ in range(n)] # 넓이는 신경 안써도 된다. arr.sort(key = lambda x : x[0],reverse= True) dp =[0]*n dp[0] = arr[0][1] for i in range(1,n) : for j in range(i) : # 무게가 더 무겁고 if arr[i][2]<arr[j][2] and dp[i] < dp[j]+arr[i][1] : dp[i] = dp[j]+arr[i][1] else : if dp[i] == 0 : dp[i] = arr[i][1] print(max(dp)) ```
-
미해결한 입 크기로 잘라 먹는 리액트(React.js) : 기초부터 실전까지
질문드립니다
안녕하세요!강의 잘 듣고 있습니다!프로젝트 진행하고 있는데 만족스러워서 이 일기장 프로젝트를 조금 변형하거나 발전시켜서 개인 포폴로 사용하거나 또는 깃헙에 올리는 것 가능할까요?app컴포넌트에 data말고도 다른 컴포넌트에서 reducer로 바꿔볼만한 state가 있을까요? setState를 쓰는 것과 reducer로 쓰는 것중에 어떤 것이 적합한지 아직 판단을 잘 못하겠어서요.. useContext 사용할 때 onCreate, onRemove,onEdit을 useMemo로 기억했는데 usecallback으로 써도 동일한가요?
-
해결됨10주완성 C++ 코딩테스트 | 알고리즘 코딩테스트
업데이트된 교안인지 어떻게 확인하나요?
제가 딱 오늘인가 어제쯤 받고 아직 강의는 안보고 있는 상태인데공지를 이제야 봤네요 ㅠ 프린트를 다해놔서 확인하려면 어떻게 해야 되나요 ?
-
미해결Vue.js 시작하기 - Age of Vue.js
기존 backend(express) 설계에 vue-cli(혹은 nuxt)를 붙이는 경우에는 디렉토리를 어떤식으로 설계하는지 궁금합니다.
안녕하세요? 퀄리티 높은 강의 덕분에 많은 도움을 받고 있습니다. 정말 감사합니다 강사님!제가 궁금한 점은, 저는 기존에 백엔드만 학습했었습니다. 그래서 제가 작성했던 코드들도 백엔드만 고려하여 디렉토리를 설계했었습니다. 예시로 제가 이전에 진행했던 API 로직 관련 프로젝트의 디렉토리 구조는 다음과 같습니다.. ├── config │ ├── config.ts ├── controllers │ ├── post.ctrl.ts │ └── user.ctrl.ts ├── models │ ├── index.ts │ ├── sequelize.ts │ ├── hashtag.ts │ ├── like.ts │ ├── post.ts │ ├── user.ts │ └── refreshToken.ts ├── node_modules ├── routes │ ├── index.ts │ ├── post.router.ts │ └── user.router.ts ├── types │ └── express.d.ts ├── utils │ ├── generateToken.ts │ └── authenticateToken.ts ├── index.ts ├── tsconfig.json ├── package-lock.json └── package.json이 프로젝트는 SNS와 관련된 api 로직들을 작성하는 것이었습니다. 강사님 강의를 보면서 이 프로젝트에 vue(nuxt)를 이용하여 프론트엔드단의 코드도 작성하려고 하는데, 이럴 경우 디렉토리를 어떻게 설계하면 되는지 궁금해서 질문드렸습니다.추가로, vue나 nuxt + express 같은 경우 먼저 vue-cli나 nuxt init을 통해 생성되는 짜여진 디렉토리 위에서 backend를 나중에 추가하는 방식이 일반적인 것 같은데, 이런 식으로 구성되는 이유도 궁금합니다.
-
미해결SwiftUI - iOS14 퍼펙트 가이드
강의 파일 다운로드
좋은 강의 감사합니다. 강의 자료를 내려받기 할 수 있는 곳을 알려주시면 감사하겠습니다.
-
미해결[전자책 100PAGE]아직도 구매대행만 하니?! 구매대행과 병행수입을 한번에! 무재고.무배송. 스마트 스토어로 월 200벌기! 부업 투잡
강사분 이메일 어디서 알수있나요?
제목 그대로 입니다.
-
미해결스프링 MVC 1편 - 백엔드 웹 개발 핵심 기술
sync에러
open해서 build.gradle해서 하면사진과 같이 에러가 뜹니다.뿐만 아니라 서버도 뜨지 않아서 run을 하지 못합니다.
-
미해결[코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!
Futuer<String> 부분에서 잠시 이해가 안되었습니다. 제가 어떤걸 좀더 공부하면 될까요
리턴값을 정의 해주기 위해 Futuer<String> 을 넣어준다~ 라고 하신 부분이 조금 이해가 안갑니다.기존강의중 제가 어느부분을 좀 더 다시 보면 해당 부분을 이해하기 좋을지 조언을 부탁드립니다.
-
미해결[개정판] 파이썬 머신러닝 완벽 가이드
LightGBM의 boosting 파라미터 관련
언제나 좋은 강의 감사드립니다. 강의와 교재에 LightGBM 의 boosting 파라미터는 주로 Default 값인 gbdt만 사용하였는데요, 교제(개정2판 기준 248Page) 및 docs에 보면 Random Forest도 가능하다는 내용이 있습니다. 여태까지 Random Forest는 대표적인 bagging기법이라고 생가했는데 Boosting 파라미터에서 선택하게 될 수 있어 이럴 경우 어떻게 동작이 되는지 궁금합니다. (이럴경우 경사하강법을 사용을 하지 않는건가요? 그럼..LightGBM을 써야 하는이유가 없어 보이기도 하고... 뭔가 혼란이 와서 문의 드립니다^^;;다시 한번 좋은 강의에 언제나 감사드립니다.
-
미해결따라하며 배우는 리액트 A-Z[19버전 반영]
특정 영화의 더 상세한 정보가져오기
const {data:moviedetail} = await axios.get(`movie/${movieId}`,{params:{append_to_reponse:'videos'}}) setmovie(moviedetail)`movie/${movieId}`,{<---------- 이부분이요 params:{append_to_reponse:'videos'}});선생님 저 윗 부분은1. 중괄호로 params를 묶으신건 어떤걸 의미하는건가요?2.append_to_response:'videos' 이부분은 문법인가요?감사합니다
-
해결됨실전! 코틀린과 스프링 부트로 도서관리 애플리케이션 개발하기 (Java 프로젝트 리팩토링)
멀티 모듈에 대한 질문이 있습니다!!
안녕하세요 !! 자바 개발자가 되기 위해 학습하다가 코틀린을 새로 배우는 과정에서 이 강의를 듣게 된 학생입니다!!먼저 좋은 강의 제공해주셔서 정말 감사합니다!!멀티 모듈에서 Repository를 각각 api 모듈에 맞게 구현하고, Spring Data JPA Repository를 코어 모듈에 둔다고 하셨는데. 이런 경우에는 api 모듈에서 core와 관련된 그래들 설정(Querydsl or db 등)이 들어가겠구나 라는 생각이 들었습니다. 멀티 모듈의 장점 중 하나가 모듈의 역할에 맞게 의존성을 관리하는 것도 있다고 생각하는데, 이런 경우 이 장점을 잃지는 않을까 우려됩니다.그래서 저는 멀티모듈을 사용할 때, core 모듈에 Repository와 관련한 코드를 놓고, 사용하는 모듈에서 인터페이스, 혹은 Repository를 참조하는 구현체를 만들어 해당 클래스만 사용하게끔 유지하는 게 좋지 않을까 생각하는 편인데요. 혹시 강사님의 의견은 어떠신지 궁금합니다!!(적고 보니 강의 내용과는 조금 다른 질문인 것 같아 조금 죄송스럽네요 ㅠㅠ)
-
미해결모두의 깃 & 깃허브
다중 github 계정이 있는 경우 sourcetree의 계정관리
안녕하세요.다중 github 계정이 있는 경우 sourcetree의 계정관리를 어떻게 하면 좋은 지 팁등이 있을까요?예를들면 github 계정이 개인계정이 있고, 회사계정 이 있는 경우 두 계정 스위칭을 문제없이 잘 관리할 수 있는 방법이 있을까요감사합니다.
-
미해결[리뉴얼] React로 NodeBird SNS 만들기
post 요청이 가지 않습니다.
코드를 아래와 같이 제대로 작성하였고, 백엔드 서버도 잘 돌아가는거 확인했습니다. 그런데 서브밋 버튼을 누르고 데브툴 네트워크 탭을 보면 post 리퀘스트가 전혀 뜨지 않습니다. 의심되는 이유는 에러메세지'4. WrappedApp created new store with withRedux(App) {initialState: undefined, initialStateFromGSPorGSSR: undefined}'가 뜨는데, 리덕스의 이니셜 스테이트가 undefined이라니 왜 이렇게 된걸까요? 리듀서에 스테이트들 다 잘 적혀있는데 혹시 이 에러 때문에 디스패치 자체가 안되고 있는 걸까요? 리듀서 문제라기엔 백엔드 서버 없이 더미데이터로 돌리면 잘 됐었기 때문에 왜인지 도통 모르겠습니다.<회원가입 관련 리듀서>import produce from "../util/produce"; export const initialState = { signUpLoading: false, signUpDone: false, signUpError: null, me: null, signUpData: {}, loginData: {}, userList: {}, }; export const SIGN_UP_REQUEST = "SIGN_UP_REQUEST"; export const SIGN_UP_SUCCESS = "SIGN_UP_SUCCESS"; export const SIGN_UP_FAILURE = "SIGN_UP_FAILURE"; const dummyUser = (data) => ({ id: data.id, nickname: "Jin Choi", Posts: [{ id: 1 }], Followings: [ { nickname: "Elle" }, { nickname: "Mazzie" }, { nickname: "Lori" }, ], Followers: [ { nickname: "Coco" }, { nickname: "Mephis" }, { nickname: "WillB" }, ], password: data.password, }); const reducer = (state = initialState, action) => produce(state, (draft) => { switch (action.type) { case SIGN_UP_REQUEST: draft.signUpLoading = true; draft.signUpError = null; draft.signUpDone = false; break; case SIGN_UP_SUCCESS: draft.signUpLoading = false; draft.signUpDone = true; break; case SIGN_UP_FAILURE: draft.signUpLoading = false; draft.signUpError = action.error; break; default: break; } }); export default reducer; <회원가입 관련 사가>import { all, delay, fork, put, takeLatest, call } from "redux-saga/effects"; import axios from "axios"; import { SIGN_UP_FAILURE, SIGN_UP_REQUEST, SIGN_UP_SUCCESS, } from "../reducers/user"; function signUpAPI(data) { return axios.post("https://localhost:3065/user", data); //only post, put, patch can pass data } function* signUp(action) { try { const result = yield call(signUpAPI, action.data); console.log(result); yield put({ type: SIGN_UP_SUCCESS, data: action.data, }); } catch (err) { console.error(err); yield put({ type: SIGN_UP_FAILURE, error: err.response.data, }); } } function* watchSignUp() { yield takeLatest(SIGN_UP_REQUEST, signUp); } export default function* userSaga() { yield all([ fork(watchSignUp), ]); } <백엔드 라우트>const express = require("express"); const router = express.Router(); const bcrypt = require("bcrypt"); const { User } = require("../models"); router.post("/", async (req, res, next) => { try { //email existence check const exUser = await User.findOne({ where: { email: req.body.email, }, }); if (exUser) { return res.status(403).send("The email is in use"); } const hashedPassword = await bcrypt.hash(req.body.password, 10); await User.create({ //inserting data to table asynchronously email: req.body.email, nickname: req.body.nickname, password: hashedPassword, }); res.status(200).send("ok"); } catch (error) { console.error(error); next(error); } }); module.exports = router; 조언부탁드립니다. 감사합니다.
-
해결됨[초급편] 안드로이드 커뮤니티 앱 만들기(Android Kotlin)
댓글 수정 및 삭제 구현 관련해 질문드립니다
안녕하세요 선생님, [초급편] 안드로이드 커뮤니티 앱 만들기를 완강한 수강생입니다. 게시글 수정/삭제 파트와 아래 두 질문을 참고해가며 현재 댓글 수정/삭제를 구현하기 위해 애쓰는 중인데, 잘 되지 않아 질문드립니다.https://www.inflearn.com/questions/411607https://www.inflearn.com/questions/619233게시글 설정과 마찬가지로 내가 쓴 댓글에만 보이는 설정 버튼을 클릭하면다이얼로그를 통해 수정/삭제로 진입하게끔 만드는 데 까지는 성공했습니다.첫 번째 질문입니다.우선 수정 기능의 경우 아래 ????? 부분에 어떤 값을 넣어야 할지 감이 안 옵니다. BoardReadActivity.kt // 댓글 클릭하면 -> 대화상자 뜸 // 파이어베이스의 댓글 키를 기반으로 댓글 데이터(=본문+uid+시간) 받아옴 cLV.setOnItemClickListener { parent, view, position, id -> // 명시적 인텐트 -> 다른 액티비티 호출 val intent = Intent(baseContext, CommentEditActivity::class.java) // 댓글수정 액티비티로 댓글의 키 값 전달 intent.putExtra("?????", ?????) // 댓글수정 액티비티 시작 startActivity(intent) }"key", key를 넣으면 댓글이 아닌 게시글의 키 값이 되어 댓글이 수정되지 않고,"commentKey", commentKey를 넣으면 앱이 죽습니다. 게시판 프래그먼트에서 리스트뷰 아이템을 클릭하면 게시글로 이동하듯댓글 리스트뷰 아이템을 클릭하면 수정 액티비티로 넘어가는 것도 시도해봤는데요, 빨간색이 게시글의 키, 파란색이 댓글의 키일 때 다행히 댓글의 키는 잘 받아오는데 댓글의 키'만' 알다보니 파이어베이스로부터 기존 댓글 내용을 받아올 수도, 수정한 내용을 업데이트 할 수도 없습니다.BoardReadActivity.kt // 댓글 클릭하면 -> 대화상자 뜸 // 파이어베이스의 댓글 키를 기반으로 댓글 데이터(=본문+uid+시간) 받아옴 cLV.setOnItemClickListener { parent, view, position, id -> // 명시적 인텐트 -> 다른 액티비티 호출 val intent = Intent(baseContext, CommentEditActivity::class.java) // 댓글수정 액티비티로 댓글의 키 값 전달 intent.putExtra("commentKey", commentKeyList[position]) // 댓글수정 액티비티 시작 startActivity(intent) }다이얼로그에서 댓글수정 액티비티로 넘길 때와 마찬가지로 ????? 부분에 어떤 값을 넣어야 할지 모르겠습니다.CommentEditActivity.kt // 댓글을 수정 private fun editCommentData(commentKey: String) { // 수정한 값으로 업데이트 FBRef.commentRef.?????.child(commentKey).setValue(CommentModel( // 제목 및 본문은 직접 수정한 내용으로, binding.commentMainArea.text.toString(), // uid와 시간은 자동 설정됨 FBAuth.getUid(), FBAuth.getTime() )) // 수정 확인 메시지 Toast.makeText(this, "댓글이 수정되었습니다", Toast.LENGTH_SHORT).show() // 댓글수정 액티비티 종료 finish() }혼자 해결하려니 너무 맨 땅에 헤딩이라ㅠㅠ 질문 올립니다.
-
미해결따라하며 배우는 도커와 CI환경 [2023.11 업데이트]
배포가 안되고 상태가 심각으로 나옵니다...
강의를 보고 따라서 진행을 했더니 빨간색으로 심각이 나오네요...그래서 로그에 들어가서 최근 100개의 로그를 보니까오류 원인으로 추정되는 부분이 있었습니다.2022/08/28 17:41:22.790598 [INFO] save docker tag command: docker tag 0370c9c70821 current_backend:latest 2022/08/28 17:41:22.790604 [INFO] save docker tag command: docker tag d942a3872fb6 current_nginx:latest 2022/08/28 17:41:22.790609 [INFO] save docker tag command: docker tag 75708d3d8c71 current_frontend:latest 2022/08/28 17:41:22.790614 [INFO] save docker tag command: docker tag 2b7d6430f78d nginx:latest 2022/08/28 17:41:22.790618 [INFO] save docker tag command: docker tag 5dcd1f6157bd node:16-alpine 2022/08/28 17:41:22.790631 [INFO] Running command /bin/sh -c docker rm `docker ps -aq` 2022/08/28 17:41:22.942159 [INFO] Error response from daemon: You cannot remove a running container 6a0c86ea39e968de428d3d30608a610c32c9250c12390b835b82e2367f1e5329. Stop the container before attempting removal or force remove Error response from daemon: You cannot remove a running container 9c2ffeccce2f1e0b49d4f50e7c5de38e7084d077faf3f19123151adc30de6dcb. Stop the container before attempting removal or force remove Error response from daemon: You cannot remove a running container d4507eceb5d8d6384be032723cbcae38f1a427f9b261cef64c78199ed24595a2. Stop the container before attempting removal or force remove 2022/08/28 17:41:22.942188 [INFO] Running command /bin/sh -c docker rmi `docker images -aq` 2022/08/28 17:41:23.115076 [INFO] Error response from daemon: conflict: unable to delete 968794bfee27 (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete 60a98349297b (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete 0370c9c70821 (cannot be forced) - image is being used by running container d4507eceb5d8 Error response from daemon: conflict: unable to delete 8ad18f4e6824 (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete d942a3872fb6 (cannot be forced) - image is being used by running container 6a0c86ea39e9 Error response from daemon: conflict: unable to delete 69041b2058c4 (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete 75708d3d8c71 (cannot be forced) - image is being used by running container 9c2ffeccce2f Error response from daemon: conflict: unable to delete f9fde158cd3b (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete b91481250af7 (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete a5f559502b12 (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete 2b7d6430f78d (cannot be forced) - image has dependent child images Error response from daemon: conflict: unable to delete 5dcd1f6157bd (cannot be forced) - image has dependent child images이렇게 나오더라구요...뭐가 원인인지 뭘 해결해야 하는건지 혹시 알려주실 수 있으신가요??ㅠㅠ
-
미해결[코드팩토리] [초급] Flutter 3.0 앱 개발 - 10개의 프로젝트로 오늘 초보 탈출!
IOS 시뮬레이터 에서만 에러가 납니다.
안드로이드에서는 잘 되는데 아이오에스 시뮬레이터버젼 ios 15.5에서 에러가 나면서 안됩니다.구글맵과 충돌인거 같은데..ㅠㅠ맥북 에어 m2 사용중입니다.Error (Xcode): Building for iOS Simulator, but linking in object file built for iOS, file '/Users/ddur/Documents/flutterDev/mapgogo/ios/Pods/GoogleMaps/Maps/Frameworks/GoogleMaps.framework/GoogleMaps' for architecture arm64Could not build the application for the simulator.Error launching application on iPhone SE (3rd generation).