You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am getting this error, Checked on Stackoverflow but didn't get any solution for it.
My files
NewsResponse.kt
package com.androiddevs.mvvmnewsapp.ui.pojo
data class NewsResponse(
val articles: List<Article>,
val status: String,
val totalResults: Int
)
Article.kt
package com.androiddevs.mvvmnewsapp.ui.pojo
import androidx.room.Entity
import androidx.room.PrimaryKey
@Entity(
tableName = "articles"
)
data class Article(
@PrimaryKey(autoGenerate = true)
var id: Int? = null,
val author: String,
val content: String,
val description: String,
val publishedAt: String,
val source: Source,
val title: String,
val url: String,
val urlToImage: String
)
The text was updated successfully, but these errors were encountered:
I am getting this error, Checked on Stackoverflow but didn't get any solution for it.
My files
NewsResponse.kt
Article.kt
The text was updated successfully, but these errors were encountered: