Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,9 @@
- 禁用图片编辑器 AI 水印
- 绕过 Samsung Health Monitor 国家检查
- S Pen 使用谷歌翻译
- 解锁 Bixby 离线处理
- 支持 Bixby 自定义唤醒词
- 绕过 Bixby 唤醒词限制
- 隐藏应用屏幕搜索栏
- 移除快捷方式图标右下角小角标
- 手表连接模式(WearOS CN / WearOS Global)
Expand Down Expand Up @@ -239,6 +242,9 @@
- Disable Photo Editor AI watermark
- Bypass Samsung Health Monitor country check
- Use Google Translate for S Pen
- Unlock Bixby offline processing
- Support Bixby custom wake words
- Bypass Bixby wake word restrictions
- Hide search bar on app screen
- Remove bottom-right shortcut badge
- Watch connection mode (WearOS CN / WearOS Global)
Expand Down
2 changes: 2 additions & 0 deletions app/src/main/java/io/github/soclear/oneuix/data/Package.kt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ package io.github.soclear.oneuix.data
object Package {
const val ANDROID = "android"
const val BROWSER = "com.sec.android.app.sbrowser"
const val BIXBY_AGENT = "com.samsung.android.bixby.agent"
const val BIXBY_WAKEUP = "com.samsung.android.bixby.wakeup"
const val CALENDAR = "com.samsung.android.calendar"
const val CAMERA = "com.sec.android.app.camera"
const val DIALER = "com.samsung.android.dialer"
Expand Down
3 changes: 3 additions & 0 deletions app/src/main/java/io/github/soclear/oneuix/data/Preference.kt
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,9 @@ data class Preference(
val noAIWatermark: Boolean = true,
val bypassHealthMonitorCountryCheck: Boolean = false,
val useSPenGoogleTranslate: Boolean = false,
val unlockBixbyOfflineProcessing: Boolean = false,
val supportBixbyCustomWakeup: Boolean = false,
val bypassBixbyWakeWordRestrictions: Boolean = false,
val hideAppsSearchBar: Boolean = false,
val removeShortcutBadge: Boolean = false,
val bypassWatchPairingRegionCheck: Boolean = false,
Expand Down
Loading