Skip to content

Commit

Permalink
Merge branch 'refs/heads/master' into 638-ktorfit-gradle-plugin-not-c…
Browse files Browse the repository at this point in the history
…ompatible-with-android-multiplatform-library-plugin
  • Loading branch information
Foso committed Aug 30, 2024
2 parents ded5f61 + 9ee3dac commit eb9b5a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions example/MultiplatformExample/androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ android {
targetSdk = 34
versionCode = 1
versionName = "1.0"
namespace = "com.example.myapplication.android"
}
buildTypes {
getByName("release") {
Expand Down
3 changes: 2 additions & 1 deletion example/MultiplatformExample/person/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ val ktorVersion = "2.3.11"

kotlin {
jvmToolchain(8)
targetHierarchy.default()
applyDefaultHierarchyTemplate()

jvm()
androidTarget()
Expand Down Expand Up @@ -49,6 +49,7 @@ android {
defaultConfig {
minSdk = 21
targetSdk = 34
namespace = "com.example.person"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down
1 change: 1 addition & 0 deletions example/MultiplatformExample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ android {
defaultConfig {
minSdk = 21
targetSdk = 34
namespace = "com.example.ktorfittest"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit eb9b5a5

Please sign in to comment.