Penyesuaian
This commit is contained in:
parent
b6a6b86411
commit
bf50a794af
@ -302,5 +302,3 @@
|
|||||||
## **Features for Sprint 5 v1.1.0**
|
## **Features for Sprint 5 v1.1.0**
|
||||||
* Fungsi AI (Upload File) (ok)
|
* Fungsi AI (Upload File) (ok)
|
||||||
* Fitur Sematkan Category, otomatis paling atas (ok)
|
* Fitur Sematkan Category, otomatis paling atas (ok)
|
||||||
|
|
||||||
## **Unit Testing is Coming**
|
|
||||||
@ -101,9 +101,6 @@ dependencies {
|
|||||||
// PDF Parser
|
// PDF Parser
|
||||||
implementation("com.tom-roush:pdfbox-android:2.0.27.0")
|
implementation("com.tom-roush:pdfbox-android:2.0.27.0")
|
||||||
|
|
||||||
// FIREBASE SUDAH DIHAPUS - baris ini yang menyebabkan error
|
|
||||||
// implementation(libs.firebase.firestore.ktx)
|
|
||||||
|
|
||||||
// Testing
|
// Testing
|
||||||
testImplementation("junit:junit:4.13.2")
|
testImplementation("junit:junit:4.13.2")
|
||||||
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
||||||
|
|||||||
@ -1,8 +1,9 @@
|
|||||||
// File: data/model/ChatMessage.kt
|
|
||||||
package com.example.notesai.data.model
|
package com.example.notesai.data.model
|
||||||
|
|
||||||
|
import kotlinx.serialization.Serializable
|
||||||
import java.util.UUID
|
import java.util.UUID
|
||||||
|
|
||||||
|
@Serializable
|
||||||
data class ChatMessage(
|
data class ChatMessage(
|
||||||
val id: String = UUID.randomUUID().toString(),
|
val id: String = UUID.randomUUID().toString(),
|
||||||
val message: String,
|
val message: String,
|
||||||
|
|||||||
@ -11,7 +11,7 @@ data class SerializableCategory(
|
|||||||
val gradientEnd: Long,
|
val gradientEnd: Long,
|
||||||
val timestamp: Long,
|
val timestamp: Long,
|
||||||
val isDeleted: Boolean = false,
|
val isDeleted: Boolean = false,
|
||||||
val isPinned: Boolean = false // NEW: Tambahkan ini
|
val isPinned: Boolean = false
|
||||||
)
|
)
|
||||||
|
|
||||||
@SuppressLint("UnsafeOptInUsageError")
|
@SuppressLint("UnsafeOptInUsageError")
|
||||||
|
|||||||
@ -1,3 +0,0 @@
|
|||||||
import com.example.notesai.util.AppColors
|
|
||||||
|
|
||||||
annotation class AppColors
|
|
||||||
Loading…
x
Reference in New Issue
Block a user