분류 전체보기(344)
-
Android 개발 관련 정보
# Google Play Console play.google.com/apps/publish/ Redirecting... play.google.com # Firebase firebase.google.com Firebase Firebase는 고품질 앱을 빠르게 개발하고 비즈니스를 성장시키는 데 도움이 되는 Google의 모바일 플랫폼입니다. firebase.google.com # Firebase Console console.firebase.google.com 로그인 - Google 계정 하나의 계정으로 모든 Google 서비스를 Google 계정으로 로그인 accounts.google.com -- 이미지 정보 -- # 인트로 mdpi 360 x 640px hdpi 480 x 800px xhdpi 720 x ..
2020.12.18 -
[Swift] String
# first 첫번째 문자를 반환 # last 마지막 문자를 반환 # dropFirst() 첫번째 문자를 제거 # dropLast() 마지막 문자를 제거 # String(describing:) 임의의 타입의 값으로 부터 생성. Swift의 기본 타입들은 모두 String()으로 값을 감싸서 문자열로 변환하는 것이 가능하다. 그 외에 직변환이 불가능한 타입들은 String(describing:)을 이용해서 변환해야 한다.
2020.12.16 -
Selenium
# Chrome 알림(Notification) 뜨지 않게 하기 chrome_options = Options() chrome_options.add_argument("--disable-notifications") ## or prefs = {"profile.default_content_setting_values.notifications" : 2} ## 1:allow notification, 2:block notification chrome_options.add_experimental_option("prefs",prefs) ## 첫번째(하나의) Element 반환 find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_..
2020.12.14 -
[Error] Could not find com.android.support:support-v4:23.4.0.
## 현상 A problem occurred configuring project ':SlidingMenu'. > Could not resolve all dependencies for configuration ':SlidingMenu:_debugPublishCopy'. > Could not find com.android.support:support-v4:23.4.0. Required by: project :SlidingMenu Possible solution: - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html..
2020.12.08 -
hosts 파일 수정
# hosts 파일 Open $ sudo vi /etc/hosts or $ sudo vi /private/etc/hosts # hosts 파일 내용 수정 및 추가 #DNS 갱신 $ dscacheutil -flushcache
2020.12.03 -
[WARNING] Null passed to a callee that requires a non-null argument
# 아래와 같이 선언하고 dealloc 에서 nil을 대입했을때 발생(Xcode 11) // *.h @property (nonatomic, retain) NSString *m_strArgs; // *.m - (void)dealloc{ self.m_strArgs = nil; } # nil을 대입할 수 있게 선언을 아래와 같이 변경 // *.h @property (nonatomic, retain, nullable) NSString *m_strArgs;
2020.12.03