일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- table
- tomcat
- 보조정렬
- SPC
- R
- Express
- Android
- es6
- plugin
- Java
- MSSQL
- GIT
- NPM
- Python
- JavaScript
- SSL
- vaadin
- Eclipse
- hadoop
- react
- mybatis
- 공정능력
- IntelliJ
- mapreduce
- Sqoop
- SQL
- window
- Spring
- Kotlin
- xPlatform
- Today
- Total
목록android (61)
DBILITY
다음과 같이 해주니 된다. 다크모드가 필요없는 경우에 굳이 theme을 수정하지 않아도 되겠다..좋다 override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO) ......... }
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bvGLll/btsGhl3VvSj/VeiKimL0JtNsN8qYmvN1mk/img.png)
Project Explorer에서 Project로 변경하고 app 디렉토리 아래에 디렉토리(libs)를 만든 후 jar,aar을 붙여 넣는다. Project Structure 에서 Declared Dependencies에 Plus 클릭하여 추가한다 Step 1에서 경로(libs)를 입력한다 저장하고 Module level의 build.gradle.kts를 확인해보면 추가 되어 있다.
https://square.github.io/retrofit/ RetrofitA type-safe HTTP client for Android and Javasquare.github.iolibs.versions.toml[versions]....retrofit2 = "2.11.0"kotlinx-serialization-json = "1.6.3"[libraries]....retrofit2 = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofit2" }retrofit2-converter-gson = { group = "com.squareup.retrofit2", name = "converter-gson", version.re..
https://date.nager.at/Api Public Holiday Api - Nager.Date Public Holiday Api The api provides a simple way to query the holidays of over 100 countries, also it is possible to query long weekends. For IoT devices there is an endpoint to check if today is a holiday. More information on how to use the project or int date.nager.at
https://developer.android.com/codelabs/basic-android-kotlin-compose-persisting-data-room?hl=ko#0 Room을 사용하여 데이터 유지 | Android Developers Android Kotlin 앱에서 Room을 사용하는 방법을 알아보세요. Room은 Android Jetpack의 일부인 지속성 데이터베이스 라이브러리로, SQLite 위에 있는 추상화 레이어입니다. Room은 데이터베이스를 설정하고 구 developer.android.com 안드로이드에서 제공하는 SQLite JPA로 생각하면 된다. Entity > Dao > Database(Helper라고 생각하자) 순으로 만들면 된다. Log.d("getDatabasePath..