Migrated from Deprecated plugin 'kotlin-android-extensions'

This commit is contained in:
Stefan 2020-12-16 13:20:11 +01:00
parent 6506c84eeb
commit 553a7fa8c9
5 changed files with 24 additions and 22 deletions

View File

@ -1,12 +1,12 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-kapt'
apply plugin: "androidx.navigation.safeargs.kotlin" apply plugin: "androidx.navigation.safeargs.kotlin"
apply plugin: "kotlin-parcelize"
android { android {
compileSdkVersion 30 compileSdkVersion 30
buildToolsVersion "30.0.0" buildToolsVersion "30.0.2"
defaultConfig { defaultConfig {
applicationId "com.example.todoapp" applicationId "com.example.todoapp"
@ -27,6 +27,7 @@ android {
buildFeatures{ buildFeatures{
dataBinding = true dataBinding = true
viewBinding = true
} }
compileOptions { compileOptions {
@ -41,7 +42,7 @@ android {
dependencies { dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"]) implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.20" implementation "org.jetbrains.kotlin:kotlin-stdlib:1.4.21"
implementation 'androidx.core:core-ktx:1.3.2' implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.appcompat:appcompat:1.2.0' implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
@ -51,8 +52,8 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0' androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
// Navigation Component // Navigation Component
implementation 'androidx.navigation:navigation-fragment-ktx:2.3.1' implementation 'androidx.navigation:navigation-fragment-ktx:2.3.2'
implementation 'androidx.navigation:navigation-ui-ktx:2.3.1' implementation 'androidx.navigation:navigation-ui-ktx:2.3.2'
// Room components // Room components
implementation "androidx.room:room-runtime:2.2.5" implementation "androidx.room:room-runtime:2.2.5"
@ -66,7 +67,7 @@ dependencies {
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0" implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.2.0"
// Kotlin components // Kotlin components
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.3.72" implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.4.21"
api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7" api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7"
api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9" api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.9"

View File

@ -3,7 +3,7 @@ package com.example.todoapp.data.models
import android.os.Parcelable import android.os.Parcelable
import androidx.room.Entity import androidx.room.Entity
import androidx.room.PrimaryKey import androidx.room.PrimaryKey
import kotlinx.android.parcel.Parcelize import kotlinx.parcelize.Parcelize
@Entity(tableName = "todo_table") @Entity(tableName = "todo_table")
@Parcelize @Parcelize

View File

@ -9,29 +9,31 @@ import androidx.navigation.fragment.findNavController
import com.example.todoapp.R import com.example.todoapp.R
import com.example.todoapp.data.models.ToDoData import com.example.todoapp.data.models.ToDoData
import com.example.todoapp.data.viewmodel.ToDoViewModel import com.example.todoapp.data.viewmodel.ToDoViewModel
import com.example.todoapp.databinding.FragmentAddBinding
import com.example.todoapp.fragments.SharedViewModel import com.example.todoapp.fragments.SharedViewModel
import kotlinx.android.synthetic.main.fragment_add.*
import kotlinx.android.synthetic.main.fragment_add.view.*
class AddFragment : Fragment() { class AddFragment : Fragment() {
private val mToDoViewModel: ToDoViewModel by viewModels() private val mToDoViewModel: ToDoViewModel by viewModels()
private val mSharedViewModel: SharedViewModel by viewModels() private val mSharedViewModel: SharedViewModel by viewModels()
private var _binding: FragmentAddBinding? = null
private val binding get() = _binding!!
override fun onCreateView( override fun onCreateView(
inflater: LayoutInflater, container: ViewGroup?, inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle? savedInstanceState: Bundle?
): View? { ): View {
// Inflate the layout for this fragment // Inflate the layout for this fragment
val view = inflater.inflate(R.layout.fragment_add, container, false) _binding = FragmentAddBinding.inflate(layoutInflater, container, false)
// Set Menu // Set Menu
setHasOptionsMenu(true) setHasOptionsMenu(true)
// Spinner Item Selected Listener // Spinner Item Selected Listener
view.priorities_spinner.onItemSelectedListener = mSharedViewModel.listener binding.prioritiesSpinner.onItemSelectedListener = mSharedViewModel.listener
return view return binding.root
} }
override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) { override fun onCreateOptionsMenu(menu: Menu, inflater: MenuInflater) {
@ -46,9 +48,9 @@ class AddFragment : Fragment() {
} }
private fun insertDataToDb() { private fun insertDataToDb() {
val mTitle = title_et.text.toString() val mTitle = binding.titleEt.text.toString()
val mPriority = priorities_spinner.selectedItem.toString() val mPriority = binding.prioritiesSpinner.selectedItem.toString()
val mDescription = description_et.text.toString() val mDescription = binding.descriptionEt.text.toString()
val validation = mSharedViewModel.verifyDataFromUser(mTitle, mDescription) val validation = mSharedViewModel.verifyDataFromUser(mTitle, mDescription)
if(validation){ if(validation){

View File

@ -13,7 +13,6 @@ import com.example.todoapp.data.models.ToDoData
import com.example.todoapp.data.viewmodel.ToDoViewModel import com.example.todoapp.data.viewmodel.ToDoViewModel
import com.example.todoapp.databinding.FragmentUpdateBinding import com.example.todoapp.databinding.FragmentUpdateBinding
import com.example.todoapp.fragments.SharedViewModel import com.example.todoapp.fragments.SharedViewModel
import kotlinx.android.synthetic.main.fragment_update.*
class UpdateFragment : Fragment() { class UpdateFragment : Fragment() {
@ -55,9 +54,9 @@ class UpdateFragment : Fragment() {
} }
private fun updateItem() { private fun updateItem() {
val title = current_title_et.text.toString() val title = binding.currentTitleEt.text.toString()
val description = current_description_et.text.toString() val description = binding.currentDescriptionEt.text.toString()
val getPriority = current_priorities_spinner.selectedItem.toString() val getPriority = binding.currentPrioritiesSpinner.selectedItem.toString()
val validation = mSharedViewModel.verifyDataFromUser(title, description) val validation = mSharedViewModel.verifyDataFromUser(title, description)
if (validation) { if (validation) {

View File

@ -8,8 +8,8 @@ buildscript {
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:4.1.1' classpath 'com.android.tools.build:gradle:4.1.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.20" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.21"
classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.1" classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.2"
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files // in the individual module build.gradle files
} }