This commit is contained in:
Caner Karaca
2024-04-13 11:43:45 +03:00
committed by GitHub
parent f0b18a1e18
commit 1e029eddee
9 changed files with 297 additions and 276 deletions

View File

@@ -36,7 +36,7 @@ android {
}
kotlinOptions {
jvmTarget = "17"
jvmTarget = "21"
}
composeOptions {
@@ -116,4 +116,4 @@ dependencies {
implementation(libs.markdown)
implementation(libs.androidx.webkit)
}
}

View File

@@ -15,7 +15,7 @@
android:supportsRtl="true"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@style/Theme.KernelSU"
tools:targetApi="33">
tools:targetApi="34">
<activity
android:name=".ui.MainActivity"
android:exported="true"
@@ -48,4 +48,4 @@
</provider>
</application>
</manifest>
</manifest>

View File

@@ -33,12 +33,12 @@ cmaker {
}
val androidMinSdkVersion = 26
val androidTargetSdkVersion = 33
val androidTargetSdkVersion = 34
val androidCompileSdkVersion = 34
val androidBuildToolsVersion = "34.0.0"
val androidCompileNdkVersion = "26.2.11394342"
val androidSourceCompatibility = JavaVersion.VERSION_17
val androidTargetCompatibility = JavaVersion.VERSION_17
val androidCompileNdkVersion = "26.3.11579264"
val androidSourceCompatibility = JavaVersion.VERSION_21
val androidTargetCompatibility = JavaVersion.VERSION_21
val managerVersionCode by extra(getVersionCode())
val managerVersionName by extra(getVersionName())
@@ -101,4 +101,4 @@ subprojects {
}
}
}
}
}