Skip to content

Commit

Permalink
Prepare for F-Droid submission
Browse files Browse the repository at this point in the history
  • Loading branch information
toasterofbread committed Oct 3, 2023
1 parent 34538c6 commit 0546e9b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion androidApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ android {

splits {
abi {
isEnable = true
isEnable = project.hasProperty("enableApkSplit")
reset()

isUniversalApk = true
Expand Down
3 changes: 3 additions & 0 deletions androidApp/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@
-dontwarn org.bouncycastle.**
-dontwarn org.openjsse.**

# F-Droid
-dontwarn org.slf4j.impl.StaticLoggerBinder

# ???
-dontwarn java.awt.AWTEvent
-dontwarn java.awt.Component
Expand Down
3 changes: 0 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ pluginManagement {
gradlePluginPortal()
mavenCentral()
google()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}

plugins {
Expand All @@ -33,9 +32,7 @@ dependencyResolutionManagement {
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven("https://jitpack.io")
maven("https://gitlab.com/api/v4/projects/26729549/packages/maven")
}
}

Expand Down
3 changes: 2 additions & 1 deletion shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ val DEBUG_KEY_NAMES = mapOf(

val buildConfigDir: Provider<Directory> get() = project.layout.buildDirectory.dir("generated/buildconfig")


fun GenerateBuildConfig.buildConfig(debug: Boolean) {
val keys = Properties()

Expand Down Expand Up @@ -176,7 +177,7 @@ kotlin {
val desktopMain by getting {
dependencies {
implementation(compose.desktop.common)
implementation("com.github.bluemods:kxml2:4dae70b2a995e72f842eca0c778792ce90d6cfc7")
// implementation("com.github.bluemods:kxml2:4dae70b2a995e72f842eca0c778792ce90d6cfc7")
implementation("org.zeromq:jeromq:0.5.3")
implementation("com.github.ltttttttttttt:load-the-image:1.0.5")
}
Expand Down

0 comments on commit 0546e9b

Please sign in to comment.