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: 4 additions & 0 deletions sdk/runanywhere-kotlin/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,7 @@ build/jniLibs/

# Local environment
local.properties

# Secrets (NEVER commit real credentials)
secrets.properties
*.secrets.properties
8 changes: 8 additions & 0 deletions sdk/runanywhere-kotlin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,14 @@ kotlin {

// Android target
androidTarget {
// Enable publishing Android AAR to Maven
publishLibraryVariants("release")

// Set correct artifact ID for Android publication
mavenPublication {
artifactId = "runanywhere-sdk-android"
}

compilations.all {
compilerOptions.configure {
jvmTarget.set(org.jetbrains.kotlin.gradle.dsl.JvmTarget.JVM_17)
Expand Down
Loading
Loading