Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -893,9 +893,9 @@ jobs:
- android/save_build_cache
- android/save_gradle_cache
- store_artifacts:
path: purchases/src/main/baseline-prof.txt
path: purchases/src/main/generated/baselineProfiles/baseline-prof.txt
- store_artifacts:
path: ui/revenuecatui/src/main/baseline-prof.txt
path: ui/revenuecatui/src/main/generated/baselineProfiles/baseline-prof.txt

update-paywall-preview-resources-submodule:
docker:
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -875,8 +875,8 @@ DESC
lane :generate_baseline_profiles do
branch_name = "actions/baseline-profiles"
profile_files = [
"purchases/src/main/baseline-prof.txt",
"ui/revenuecatui/src/main/baseline-prof.txt",
"purchases/src/main/generated/baselineProfiles/baseline-prof.txt",
"ui/revenuecatui/src/main/generated/baselineProfiles/baseline-prof.txt",
]

Dir.chdir("..") do
Expand Down
1 change: 0 additions & 1 deletion purchases/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,6 @@ dokka {

baselineProfile {
mergeIntoMain = true
baselineProfileOutputDir = "."
filter {
include("com.revenuecat.purchases.**")
exclude("com.revenuecat.purchases.ui.revenuecatui.**")
Expand Down
1 change: 0 additions & 1 deletion ui/revenuecatui/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,6 @@ tasks.withType<KotlinCompilationTask<*>>().configureEach {

baselineProfile {
mergeIntoMain = true
baselineProfileOutputDir = "."
filter {
include("com.revenuecat.purchases.ui.revenuecatui.**")
}
Expand Down