-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
73 lines (58 loc) · 2.13 KB
/
build.gradle.kts
File metadata and controls
73 lines (58 loc) · 2.13 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
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.plugin.compose")
}
android {
compileSdk = 36
defaultConfig {
applicationId = "ru.hepolise.volumekeymusicmanagermodule"
minSdk = 27
targetSdk = 36
versionCode = rootProject.ext["appVersionCode"].toString().toInt()
versionName = rootProject.ext["appVersionName"].toString()
}
buildTypes {
getByName("release") {
isMinifyEnabled = true
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlin {
compilerOptions {
jvmTarget.set(JvmTarget.JVM_17)
}
}
namespace = "ru.hepolise.volumekeytrackcontrolmodule"
buildFeatures {
buildConfig = true
}
}
dependencies {
implementation(platform("org.jetbrains.kotlin:kotlin-bom:2.3.10"))
implementation("androidx.core:core-ktx:1.18.0")
// Compose BOM (Bill of Materials)
implementation(platform("androidx.compose:compose-bom:2026.02.01"))
// Compose dependencies
implementation("androidx.activity:activity-compose:1.12.4")
implementation("androidx.compose.ui:ui")
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.compose.material3:material3:1.4.0")
implementation("androidx.compose.material:material-icons-core:1.7.8")
implementation("androidx.compose.material:material-icons-extended:1.7.8")
implementation("androidx.core:core-splashscreen:1.2.0")
// Compose navigation
implementation("androidx.navigation:navigation-compose:2.9.7")
// Coil
implementation("io.coil-kt:coil-compose:2.7.0")
// Required for preview support
debugImplementation("androidx.compose.ui:ui-tooling")
// Xposed Framework API dependencies
compileOnly("de.robv.android.xposed:api:82")
// RemotePreferences
implementation("com.crossbowffs.remotepreferences:remotepreferences:0.8")
}