-
-
Notifications
You must be signed in to change notification settings - Fork 394
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
467 lines (417 loc) · 14.4 KB
/
build.gradle.kts
File metadata and controls
467 lines (417 loc) · 14.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
@file:OptIn(ExperimentalKotlinGradlePluginApi::class)
import com.codingfeline.buildkonfig.compiler.FieldSpec.Type.INT
import com.codingfeline.buildkonfig.compiler.FieldSpec.Type.STRING
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
import org.jetbrains.kotlin.gradle.ExperimentalKotlinGradlePluginApi
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
import java.util.Properties
val isFullBuild: Boolean =
try {
extra["isFullBuild"] == "true"
} catch (e: Exception) {
false
}
plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.android.application)
alias(libs.plugins.sentry.gradle)
alias(libs.plugins.compose.multiplatform)
alias(libs.plugins.compose.compiler)
// alias(libs.plugins.compose.hotReload)
alias(libs.plugins.aboutlibraries.multiplatform)
alias(libs.plugins.kotlin.serialization)
alias(libs.plugins.build.config)
alias(libs.plugins.osdetector)
}
dependencies {
coreLibraryDesugaring(libs.desugaring)
val debugImplementation = "debugImplementation"
debugImplementation(compose.uiTooling)
}
kotlin {
compilerOptions {
freeCompilerArgs.add("-Xwhen-guards")
freeCompilerArgs.add("-Xcontext-parameters")
freeCompilerArgs.add("-Xmulti-dollar-interpolation")
freeCompilerArgs.add("-Xexpect-actual-classes")
}
androidTarget {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
}
}
// listOf(
// iosArm64(),
// iosSimulatorArm64()
// ).forEach { iosTarget ->
// iosTarget.binaries.framework {
// baseName = "ComposeApp"
// isStatic = true
// }
// }
jvm()
sourceSets {
dependencies {
val composeBom = project.dependencies.platform(libs.compose.bom)
val koinBom = project.dependencies.platform(libs.koin.bom)
implementation(composeBom)
implementation(koinBom)
}
androidMain.dependencies {
implementation(libs.koin.android)
implementation(libs.koin.androidx.compose)
implementation(compose.preview)
implementation(libs.activity.compose)
implementation(libs.constraintlayout.compose)
implementation(libs.work.runtime.ktx)
// Runtime
implementation(libs.startup.runtime)
// Glance
implementation(libs.glance)
implementation(libs.glance.appwidget)
implementation(libs.glance.material3)
// Liquid glass
implementation(libs.liquid.glass)
// Custom Activity On Crash
implementation(libs.customactivityoncrash)
// Easy Permissions
implementation(libs.easypermissions)
// Legacy Support
implementation(libs.legacy.support.v4)
// Coroutines
implementation(libs.coroutines.android)
implementation(projects.media3)
implementation(projects.media3Ui)
if (isFullBuild) {
implementation(projects.crashlytics)
} else {
implementation(projects.crashlyticsEmpty)
}
}
commonMain.dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.material3)
implementation(compose.ui)
implementation(compose.components.resources)
implementation(compose.preview)
implementation(libs.androidx.lifecycle.viewmodelCompose)
implementation(libs.androidx.lifecycle.runtimeCompose)
// Compose
implementation(libs.compose.material3.adaptive)
implementation(libs.compose.material.ripple)
implementation(libs.compose.material.icons.core)
implementation(libs.compose.material.icons.extended)
implementation(libs.ui.tooling.preview)
// Other module
implementation(projects.common)
implementation(projects.domain)
implementation(projects.data)
// Navigation Compose
implementation(libs.navigation.compose)
// Kotlin Serialization
implementation(libs.kotlinx.serialization.json)
// Coil
implementation(libs.coil.compose)
implementation(libs.coil.network.okhttp)
implementation(libs.kmpalette.core)
// DataStore
implementation(libs.datastore.preferences)
// Lottie
implementation(libs.compottie)
implementation(libs.compottie.dot)
implementation(libs.compottie.network)
implementation(libs.compottie.resources)
// Paging 3
implementation(libs.androidx.paging.common)
implementation(libs.paging.compose)
implementation(libs.aboutlibraries)
implementation(libs.aboutlibraries.compose.m3)
// Koin
implementation(libs.koin.core)
implementation(libs.koin.compose)
implementation(libs.koin.compose.viewmodel)
// Jetbrains Markdown
api(libs.markdown)
// Blur Haze
implementation(libs.haze)
implementation(libs.haze.material)
implementation(libs.cmptoast)
implementation(libs.file.picker)
}
commonTest.dependencies {
implementation(libs.kotlin.test)
}
jvmMain.dependencies {
implementation(compose.desktop.currentOs)
implementation(libs.kotlinx.coroutinesSwing)
implementation(libs.sentry.jvm)
implementation(projects.mediaJvmUi)
}
}
}
android {
val abis = arrayOf("armeabi-v7a", "arm64-v8a", "x86_64")
namespace = "com.maxrave.simpmusic"
compileSdk = 36
defaultConfig {
applicationId = "com.maxrave.simpmusic"
minSdk = 26
targetSdk = 36
versionCode =
libs.versions.version.code
.get()
.toInt()
versionName =
libs.versions.version.name
.get()
vectorDrawables.useSupportLibrary = true
multiDexEnabled = true
@Suppress("UnstableApiUsage")
androidResources {
localeFilters +=
listOf(
"en",
"vi",
"it",
"de",
"ru",
"tr",
"fi",
"pl",
"pt",
"fr",
"es",
"zh",
"in",
"ar",
"ja",
"b+zh+Hant+TW",
"uk",
"iw",
"az",
"hi",
"th",
"nl",
"ko",
"ca",
"fa",
"bg",
)
}
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
ndk {
abiFilters.add("x86_64")
abiFilters.add("armeabi-v7a")
abiFilters.add("arm64-v8a")
}
}
bundle {
language {
enableSplit = false
}
}
buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
proguardFiles(
getDefaultProguardFile("proguard-android-optimize.txt"),
"consumer-rules.pro",
"proguard-rules.pro",
)
splits {
abi {
isEnable = true
reset()
isUniversalApk = true
include(*abis)
}
}
}
debug {
isMinifyEnabled = false
applicationIdSuffix = ".dev"
versionNameSuffix = "-dev"
}
}
compileOptions {
isCoreLibraryDesugaringEnabled = true
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
// enable view binding
buildFeatures {
viewBinding = true
compose = true
buildConfig = true
}
packaging {
jniLibs.useLegacyPackaging = true
jniLibs.excludes +=
listOf(
"META-INF/META-INF/DEPENDENCIES",
"META-INF/LICENSE",
"META-INF/LICENSE.txt",
"META-INF/license.txt",
"META-INF/NOTICE",
"META-INF/NOTICE.txt",
"META-INF/notice.txt",
"META-INF/ASL2.0",
"META-INF/asm-license.txt",
"META-INF/notice",
"META-INF/*.kotlin_module",
)
resources {
excludes += "META-INF/versions/9/OSGI-INF/MANIFEST.MF"
}
}
}
compose.desktop {
application {
mainClass = "com.maxrave.simpmusic.MainKt"
nativeDistributions {
targetFormats(TargetFormat.Dmg, TargetFormat.Msi, TargetFormat.Deb)
modules("jdk.unsupported")
packageName = "SimpMusic"
macOS {
includeAllModules = true
packageVersion = "2025.11.16"
iconFile.set(project.file("icon/circle_app_icon.icns"))
val macExtraPlistKeys =
"""
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>UIBackgroundModes</key>
<array>
<string>audio</string>
<string>fetch</string>
<string>processing</string>
</array>
""".trimIndent()
infoPlist {
extraKeysRawXml = macExtraPlistKeys
}
}
windows {
includeAllModules = true
packageVersion =
libs.versions.version.name
.get()
iconFile.set(project.file("icon/circle_app_icon.ico"))
}
linux {
includeAllModules = true
packageVersion =
libs.versions.version.name
.get()
iconFile.set(project.file("icon/circle_app_icon.png"))
}
}
buildTypes.release.proguard {
optimize.set(true)
obfuscate.set(false)
configurationFiles.from("proguard-rules.pro")
}
}
}
buildkonfig {
packageName = "com.maxrave.simpmusic"
defaultConfigs {
val versionName =
libs.versions.version.name
.get()
val versionCode =
libs.versions.version.code
.get()
.toInt()
buildConfigField(STRING, "versionName", versionName)
buildConfigField(INT, "versionCode", "$versionCode")
if (isFullBuild) {
try {
println("Full build detected, enabling Sentry DSN")
val properties = Properties()
properties.load(rootProject.file("local.properties").inputStream())
buildConfigField(
STRING,
"sentryDsn",
properties.getProperty("SENTRY_DSN") ?: "",
)
} catch (e: Exception) {
println("Failed to load SENTRY_DSN from local.properties: ${e.message}")
buildConfigField(STRING, "sentryDsn", "")
}
} else {
buildConfigField(STRING, "sentryDsn", "")
}
}
}
aboutLibraries {
collect.configPath = file("../config")
export {
outputFile = file("src/commonMain/composeResources/files/aboutlibraries.json")
prettyPrint = true
excludeFields = listOf("generated")
}
library {
// Enable the duplication mode, allows to merge, or link dependencies which relate
duplicationMode = com.mikepenz.aboutlibraries.plugin.DuplicateMode.MERGE
// Configure the duplication rule, to match "duplicates" with
duplicationRule = com.mikepenz.aboutlibraries.plugin.DuplicateRule.SIMPLE
}
}
sentry {
org.set("simpmusic")
projectName.set("android")
ignoredFlavors.set(setOf("foss"))
ignoredBuildTypes.set(setOf("debug"))
autoInstallation.enabled = false
if (isFullBuild) {
val token =
try {
println("Full build detected, enabling Sentry Auth Token")
val properties = Properties()
properties.load(rootProject.file("local.properties").inputStream())
properties.getProperty("SENTRY_AUTH_TOKEN")
} catch (e: Exception) {
println("Failed to load SENTRY_AUTH_TOKEN from local.properties: ${e.message}")
null
}
authToken.set(token ?: "")
includeProguardMapping.set(true)
autoUploadProguardMapping.set(true)
} else {
includeProguardMapping.set(false)
autoUploadProguardMapping.set(false)
uploadNativeSymbols.set(false)
includeDependenciesReport.set(false)
includeSourceContext.set(false)
includeNativeSources.set(false)
}
telemetry.set(false)
}
if (!isFullBuild) {
tasks.whenTaskAdded {
if (name.contains("injectSentryDebugMetaPropertiesIntoAssetsRelease")) {
enabled = false
}
}
}
afterEvaluate {
tasks.withType<JavaExec> {
jvmArgs("--add-opens", "java.desktop/sun.awt=ALL-UNNAMED")
jvmArgs("--add-opens", "java.desktop/java.awt.peer=ALL-UNNAMED")
if (System.getProperty("os.name").contains("Mac")) {
jvmArgs("--add-opens", "java.desktop/sun.awt=ALL-UNNAMED")
jvmArgs("--add-opens", "java.desktop/sun.lwawt=ALL-UNNAMED")
jvmArgs("--add-opens", "java.desktop/sun.lwawt.macosx=ALL-UNNAMED")
}
// Set GStreamer path for Windows
if (System.getProperty("os.name").contains("Windows")) {
val gstreamerRoot = "C:\\Program Files\\gstreamer\\1.0\\msvc_x86_64"
val gstreamerBin = "$gstreamerRoot\\bin"
environment("GSTREAMER_1_0_ROOT_MSVC_X86_64", gstreamerRoot)
systemProperty("gstreamer.path", gstreamerBin)
}
}
}