Odife K
07/25/2025, 10:04 AMOdife K
07/25/2025, 9:49 PMcompose.resources {
packageOfResClass = "com.company.shared.resources"
generateResClass = always
}
And added this to the pos_clone script
./gradlew :shared:compileKotlinIosArm64
By the way here is my ci_post_clone.sh script
#!/bin/bash
REPO_DIR=$CI_PRIMARY_REPOSITORY_PATH
curl -s "<https://get.sdkman.io?ci=true&rcupdate=false>" | bash
source "$HOME/.sdkman/bin/sdkman-init.sh"
sdk install java 21.0.8-amzn
export JAVA_HOME=/Users/local/.sdkman/candidates/java/current
cd "$REPO_DIR"
./gradlew :shared:compileKotlinIosArm64
# store_cache_files # Store caches after build
echo "--- ci_post_clone.sh finished ---"