Skip to content
This repository has been archived by the owner on Jun 20, 2023. It is now read-only.

Fixed asset appconfig resolution for v2 config (EXPOSUREAPP-3456) #1654

Merged
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ class DefaultAppConfigSource @Inject constructor(
) {

fun getRawDefaultConfig(): ByteArray {
return context.assets.open("default_app_config.bin").readBytes()
return context.assets.open("default_app_config_android.bin").readBytes()
}
}