본문 바로가기

app8

Flutter에서 Android 빌드시 multidex 설정법 Flutter로 개발한 앱을 Android에서 빌드 할 경우 메쏘드가 64k를 초과했다며 multidex 사용 설정을 하라는 아래와 같은 메시지를 만날때가 있다. 앱 빌드시 다음과 같은 에러메시지가 나타난다 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:mergeExtDexDebug'. > A failure occurred while executing com.android.build.gradle.internal.tasks.DexMergingTaskDelegate > There was a failure while executing work items > A failure occurred w.. 2023. 3. 14.
한꺼번에 모든 모달 닫기 iOS 에서 스토리보드를 사용하여 App 개발중 아래와 같은 상황이 발생하였다. 1. SettingViewController를 Present Modally로 띄움 2. SettingViewController에서 로그아웃 버튼을 누름 3. 로그아웃 절차 진행 후 LoginViewController가 나타남 4. 다시 로그인을 할 경우 모든 모달이 닫히고(이 경우 SettingViewController) RootViewController가 나타남 위와같은 케이스의 해결을 위해 [self performSegueWithIdentifier:@"LoginSegue" sender:self];가 호출된 직후 [self dismissViewControllerAnimated:true completion:nil];를 호출하.. 2015. 1. 22.
네비게이션 바에 환경설정 버튼 올리기 iOS 개발을 하다보면 네비게이션 바에 환경설정 버튼을 넣고 싶은 경우가 있다.네비게이션 바에 올라가는 아이콘의 경우 UIBarButtonItem인데 환경설정 아이콘은 별도로 존재하질 않는다.이미지로 올려도 되겠지만, 톱니바퀴 모양의 폰트가 있으니 이걸 활용하여 올려보도록 하자.아이콘은 위와 같이 생겼다. 네비게이션 바에 올리는 코드는 다음과 같이 간단하다. - (void)viewDidLoad { [super viewDidLoad]; UIBarButtonItem *settingsButton = [[UIBarButtonItem alloc] initWithTitle:@"\u2699" style:UIBarButtonItemStylePlain target:self action:@selector(showSetti.. 2015. 1. 22.
원격제어툴 - Remote Administrator 3 기존 2.0과 달리 Remote Administrator 3.0(이하 radmin)에서부턴 한/영 변환도 착하게 지원되어 소개할까 한다. 상용이라 아쉽긴하지만 원격지가 더 큰 해상도일 경우 마우스 포인터가 귀퉁이로 가면 알아서 스크롤이 되는기능은 정말 최고 :) 그래도 다행인건 뷰어는 공짜 :) 홈페이지 : http://www.radmin.co.kr 다운로드 : http://www.radmin.co.kr/download/index.php 2014. 5. 23.