Skip to content

Commit

Permalink
chore: minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
izaaz committed Sep 25, 2024
1 parent 614ac34 commit df4ada8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import java.io.File
/**
* Data is stored in storage in the following format
* /app_amplitude-kotlin-{api_key}
* /amplitude-identify-{api_key}.properties (this stores the user id, device id and api key)
* /amplitude-identity-{api_key}.properties (this stores the user id, device id and api key)
* /app_amplitude-disk-queue (this stores the events)
* /{instance_name}-0
* /{instance_name}-1.tmp
Expand Down Expand Up @@ -99,7 +99,7 @@ internal class AndroidStorageContextV1(
identityStorageProvider = configuration.identityStorageProvider,
storageDirectory = storageDirectory,
logger = configuration.loggerProvider.getLogger(amplitude),
fileName = "amplitude-identify-${configuration.apiKey}"
fileName = "amplitude-identity-${configuration.apiKey}"
)
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import java.io.File
/**
* Data is stored in storage in the following format
* /app_amplitude-kotlin-{instance_name}
* /amplitude-identify-{instance_name}.properties (this stores the user id, device id and api key)
* /amplitude-identity-{instance_name}.properties (this stores the user id, device id and api key)
* /app_amplitude-disk-queue (this stores the events)
* /{instance_name}-0
* /{instance_name}-1.tmp
Expand Down
2 changes: 1 addition & 1 deletion core/src/main/java/com/amplitude/core/Amplitude.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ open class Amplitude internal constructor(
identityStorageProvider = configuration.identityStorageProvider,
logger = logger,
storageDirectory = File("/tmp/amplitude-identity/${configuration.instanceName}"),
fileName = "amplitude-identify-${configuration.instanceName}",
fileName = "amplitude-identity-${configuration.instanceName}",
)
}

Expand Down

0 comments on commit df4ada8

Please sign in to comment.