Skip to content

Commit

Permalink
Test (v1)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheArchitect123 committed Jan 28, 2025
1 parent 03c7cbf commit 63e5ecc
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ jobs:
# Step 3: Build Artifacts
- name: Build Artifacts And Publish
run: |
export GRADLE_OPTS="-Dorg.gradle.internal.http.debug=true"
./gradlew buildAllPlatformsAndPublish --info --stacktrace --scan
./gradlew buildAllPlatformsAndPublish --info --stacktrace --scan -Dorg.gradle.internal.http.debug=true
- name: Upload Problems Report
if: failure() # Only upload if the build fails
Expand Down
17 changes: 17 additions & 0 deletions shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,21 @@ tasks.register("buildAllPlatformsAndPublish") {
":shared:linkReleaseFrameworkIosArm64",
":shared:publishToMavenCentral"
)
}


ksp {
arg("moduleName", project.name)
}

android {
namespace = "com.architect.kmpappinsights"
compileSdk = 34
defaultConfig {
minSdk = 21
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
}

0 comments on commit 63e5ecc

Please sign in to comment.