fix: 설정 화면 진입 시 크래시 수정

- AppDatabase.kt 누락된 닫는 괄호 추가
- PermissionHelper.canInstallUnknownApps() SecurityException 처리

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode)
Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
sanjeok77
2026-03-05 07:05:38 +09:00
parent da9b69220a
commit 4060be7395
2 changed files with 14 additions and 8 deletions
@@ -60,5 +60,6 @@ abstract class AppDatabase : RoomDatabase() {
override fun migrate(db: SupportSQLiteDatabase) {
db.execSQL("ALTER TABLE hot_deals ADD COLUMN isFavorite INTEGER NOT NULL DEFAULT 0")
}
}
}
}
}