| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- Kotlin
- VM arguments
- Compose
- Chat GPT
- Java
- data binding
- buildconfigfield
- Framework
- 3rd part
- AOS
- 3rd framework
- BindingAdapter
- DispatchQueue
- Eclipse
- EditText
- Swift
- boot
- mac
- gradle
- xcframework
- Jetpack
- arm-linux-androideabi
- retrofit
- defaultconfig
- IOS
- Andorid
- NDK
- ndkVersion
- Registering an InstanceCreator with Gson for this type may fix this problem
- Android
- Today
- Total
목록dev (49)
grape
Problems converting Java project to Kotlin Occurs while retofit is parsing the response body (Unable to invoke no-args constructor for retrofit2.Call. Registering an InstanceCreator with Gson for this type may fix this problem.) Use retrofit version val retrofit_version = "2.9.0" implementation("com.squareup.retrofit2:retrofit:$retrofit_version") implementation("com.squareup.retrofit2:converter-..
try await urlSession.data(for: request) https://developer.apple.com/videos/play/wwdc2021/10095/ https://developer.apple.com/documentation/foundation/urlsession https://developer.apple.com/documentation/swift/updating_an_app_to_use_swift_concurrency
최신 android studio를 사용해 예전 Project를 load하다 보면 gradle vesrion 및 gradle jdk 호환이 되지 않아 빌드 설정이 어려워 질 수 있다. 22년 이후 android studio 기준으로 gradle이 8.0 / jdk 17 이상을 기본 사용 되도록 되어 있지만 Gradle 설정 많으로 해결 된 경우 하기와 같이 설정 시 많은 Project가 호환 되었다. build.gradle(Project) classpath 'com.android.tools.build:gradle:7.2.0' gradle-wrapper.properties(Gradle Version) distributionUrl=https\://services.gradle.org/distributions/g..
When committing files larger than 100MB in Git, you must configure LFS. In order to use Release to distribute the repository using LFS, you must set "Include Git LFS objects in archives". If you do not "Include Git LFS objects in archives", files set to LFS in the distribution package will be created as 1kb empty files. Option - Include Git LFS objects in archives repository -> Setting -> Archive
Application components Intent interface를 통해 상호 작용이 가능 액티비티(Activity) - 사용자와 상호작용을 위한 진입점(화면) 서비스(Service) - 앱의 백그라운드 처리를 위한 진입점(interface) 방송 수신자(Broadcast Receiver) - 앱 외부인 시스템에서 전달되는 이벤트를 수신하기 위한 interface 콘텐츠 제공자(Content Provider) - 앱데이터 외부 제공을 위한 interface 액티비티 액티비티는 사용자와 상호작용하기 위한 진입점입니다. 이것은 사용자 인터페이스를 포함한 화면 하나를 나타냅니다. 예를 들어 이메일 앱이라면 새 이메일 목록을 표시하는 액티비티가 하나 있고, 이메일을 작성하는 액티비티가 또 하나, 그리고 이..
Unable to install Xcode app on iPhone, Domain: com.apple.dt.MobileDeviceErrorDomain Code: -402653049 Xcode -> Window -> Devices & Simulators -> Traget Devices -> Application List if there is an app failed to install, then delete it.
format auto generator install plug in KDoc-er - Kotlin Doc Generator MAC : android studio -> preferences -> plugins WIN : fie -> setting -> plugins android preferences generator document excute gralde task gradle dokkaHtml PATH(dokkaHtml) : ./module(app)/build/dokka project gradle plugins { ... id 'org.jetbrains.dokka' version '1.6.10' } module(app) gradle plugins { ... id 'org.jetbrains.dokka' ..
jetpack room gradle setting build error 1. Could not find method kapt add plugin id 'kotlin-kapt' // room추가 2. Could not find method ksp() add plugin id 'com.google.devtools.ksp' version '1.8.0-1.0.8' // room추가 plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'kotlin-kapt' // room추가 id 'com.google.devtools.ksp' version '1.8.0-1.0.8' // room추가 } android { ... } dependen..