Skip to content

Commit ff4860a

Browse files
committed
chore: update settings
1 parent bb08c93 commit ff4860a

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
*.iml
1111
.idea/androidTestResultsUserPreferences.xml
1212
.idea/compiler.xml
13+
.idea/deploymentTargetSelector.xml
1314
.idea/.name
1415
.idea/git_toolbox_prj.xml
1516
.idea/gradle.xml

glyph-compose/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,5 @@ android.namespace = "io.github.ryunen344.glyph.compose"
1212

1313
dependencies {
1414
api files("../Glyph-Developer-Kit/sdk/KetchumSDK_Community_20240307.jar")
15+
implementation projects.glyphKtx
1516
}

gradle/android.gradle

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
android {
22
compileSdk = 34
33
defaultConfig {
4-
minSdk = 19
4+
minSdk = 34
55
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
6-
multiDexEnabled = true
76
consumerProguardFile "consumer-rules.pro"
87
}
98
buildTypes {
@@ -16,10 +15,10 @@ android {
1615
}
1716
compileOptions {
1817
coreLibraryDesugaringEnabled true
19-
sourceCompatibility = JavaVersion.VERSION_1_8
20-
targetCompatibility = JavaVersion.VERSION_1_8
18+
sourceCompatibility = JavaVersion.VERSION_11
19+
targetCompatibility = JavaVersion.VERSION_11
2120
}
22-
kotlinOptions.jvmTarget = "1.8"
21+
kotlinOptions.jvmTarget = "11"
2322
publishing {
2423
singleVariant("release") {
2524
withSourcesJar()

sample-compose/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
plugins {
2-
alias libs.plugins.com.android.library
2+
alias libs.plugins.com.android.application
33
alias libs.plugins.org.jetbrains.kotlin.android
4-
alias libs.plugins.org.jetbrains.kotlinx.compatibility
54
}
65

76
apply from: rootProject.layout.projectDirectory.file("gradle/android.gradle")

sample-ktx/build.gradle

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
plugins {
2-
alias libs.plugins.com.android.library
2+
alias libs.plugins.com.android.application
33
alias libs.plugins.org.jetbrains.kotlin.android
4-
alias libs.plugins.org.jetbrains.kotlinx.compatibility
54
}
65

76
apply from: rootProject.layout.projectDirectory.file("gradle/android.gradle")

0 commit comments

Comments
 (0)