import okhttp3.OkHttpClient import okhttp3.logging.HttpLoggingInterceptor import retrofit2.Retrofit import retrofit2.converter.gson.GsonConverterFactory object RetrofitBuilder { private fun getRetrofit():Retrofit { val httpLoggingInterceptor = HttpLoggingInterceptor() httpLoggingInterceptor.level = HttpLoggingInterceptor.Level.BODY val client = OkHttpClient.Builder(). addInterceptor(httpLoggingI..
private lateinit var vm: MainViewModel vm = ViewModelProvider(this).get(MainViewModel::class.java) 원래 이렇게 써야 하는데 kotlinOptions { jvmTarget = "1.8" } implementation 'androidx.activity:activity-ktx:1.1.0' implementation 'androidx.fragment:fragment-ktx:1.2.5' 이거 하면 private val vm: MainViewModel by viewModels() 이렇게 사용 가능
global account는 정상적으로 동작한다는 전제하에 새로운 계정으로 깃을 사용하고 싶을 때 원하는 계정으로 git config user.name git config user.email git config user.email 하고 git 명령어 실행 시, remote: Permission to myunggyunoh/ToyEtc.git denied to myung-gyu. fatal: unable to access 'https://github.com/myunggyunoh/ToyEtc.git/': The requested URL returned error: 403 에러 발생 원인으로는 글로벌로 적용시켜놓은 계정(회사계정)이랑 충돌나는 것 같음 git config --global --edit //난 gl..
appcenter 세팅 npm i -g appcenter-cli 해당 프로젝트에 설치 appcenter login - 웹 코드 붙여넣기 appcenter profile list - 사용자 확인 appcenter apps create -d {app-name-aos} -o android -p react-native appcenter apps create -d {app-name-ios} -o ios -p react-native - 앱센터에 앱 등록 - 난 여기서 에러가 나서 https://appcenter.ms/ 에 직접 앱을 등록했다 appcenter apps list - 등록된 앱 조회 appcenter codepush deployment add -a {username/app-name-aos} Stagin..
최상단 componentDidMouint 나 useEffect 같은곳에서... Text.defaultProps = Text.defaultProps || {}; Text.defaultProps.allowFontScaling = false; Text.defaultProps.style = { color:'#fff }; 이렇게 사용. 재정의하면 덮어씌워버려서 스타일 같은 경우엔 적용하기 어려울 듯, style={[Text.defaultProps.style,,{borderWidth:1}]}> 이렇게 하면 사용 가능하긴 한데 굳이... ?
js numbers = [n,n,n,n,n]; target = n; ex) func([1,1,1,1,1],3); function bfs(numbers, target) { let answer = 0; getAnswer(0, 0); function getAnswer(x, value) { if (x < numbers.length) { getAnswer(x + 1, value + numbers[x]); getAnswer(x + 1, value - numbers[x]); } else { if (value === target) { answer++; } } } return answer; } function bfs(numbers, target) { let answer = 0; let tmp = numbers.shift..
1번. const _addComma = (num) => { const currencies = RNLocalize.getCurrencies(); const [defaultCurrency] = currencies || 'USD'; return Number(num).toLocaleString(i18n.locale, { style: 'currency', currency: defaultCurrency }); }; 2번 1) I18n.js에서 I18n.locale = 'ko-KR'; 2) i18n.js에서 각 locale을 바라보는 리소스에서 number: { currency: { format: { unit: '원', delimiter: ',', separator: '.', precision: 0, format: ..
- Total
- Today
- Yesterday
- https://hwan-shell.tistory.com/244
- not working adb
- 구글 맵 선그리기
- 귀찮아;;
- 차번호 정규식
- spannableText
- adb 환경변수
- 안드로이드
- https://medium.com/@limgyumin/%EC%BD%94%ED%8B%80%EB%A6%B0-%EC%9D%98-apply-with-let-also-run-%EC%9D%80-%EC%96%B8%EC%A0%9C-%EC%82%AC%EC%9A%A9%ED%95%98%EB%8A%94%EA%B0%80-4a517292df29
- 자바
- 데이터베이스
- React Native
- rn
- react native state
- nosql
- ubunut android
- insert
- 함수형 코드
- Android
- 차번호 정규표현식
- not found adb
- 명령어
- mac android
- not starting .bash_profile
- 구글 맵 경로 그리기
- ubunut 설치 link
- 클래스형 코드
- mongo db
- text 부분 색 칠하기
- MongoDB
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |