2024-07-01から1ヶ月間の記事一覧

Usage of Retrofit

This is my note for Udemy lesson: Advanced Android Bootcamp 2024. 1. Set up Gradle Check this note. 2. Set up Internet Permissions Check this note. 3. Create Class RetrofitInstance class RetrofitInstance { companion object { val BASE_URL =…

Create Kotlin Data Class from Json

This is my note for Udemy lesson: Advanced Android Bootcamp 2024. 1. Go to Settings of Android Studio, add the plugin "JSON To Kotlin Class). 2. Right click a folder, now under "New" option we have an option "Kotlin data class File from JS…

Enable Using Internet

This is my note for Udemy lesson: Advanced Android Bootcamp 2024. In AndroidManifest.xml: <manifest ...> <uses-permission android:name="android.permission.INTERNET"/> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/> </uses-permission></uses-permission></manifest>

Room Auto Migration with Column Name Change

This is my note for Udemy lesson: Advanced Android Bootcamp 2024. For example, in table "student_info", we want to change column "student_course" to "student_subject". @Database(entities = [Student::class], version = 2, autoMigrations = [ …