File tree Expand file tree Collapse file tree 4 files changed +411
-4
lines changed
schemas/com.simplemobiletools.musicplayer.databases.SongsDatabase Expand file tree Collapse file tree 4 files changed +411
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,11 @@ plugins {
66 alias(libs.plugins.android)
77 alias(libs.plugins.kotlinAndroid)
88 alias(libs.plugins.ksp)
9+ base
10+ }
11+
12+ base {
13+ archivesName.set(" music-player" )
914}
1015
1116val keystorePropertiesFile: File = rootProject.file(" keystore.properties" )
@@ -23,8 +28,10 @@ android {
2328 targetSdk = project.libs.versions.app.build.targetSDK.get().toInt()
2429 versionName = project.libs.versions.app.version.versionName.get()
2530 versionCode = project.libs.versions.app.version.versionCode.get().toInt()
26- setProperty(" archivesBaseName" , " music-player" )
2731 vectorDrawables.useSupportLibrary = true
32+ ksp {
33+ arg(" room.schemaLocation" , " $projectDir /schemas" )
34+ }
2835 }
2936
3037 signingConfigs {
@@ -51,7 +58,7 @@ android {
5158 isMinifyEnabled = true
5259 proguardFiles(
5360 getDefaultProguardFile(" proguard-android-optimize.txt" ),
54- " proguard-rules.pro"
61+ " proguard-rules.pro" ,
5562 )
5663 if (keystorePropertiesFile.exists()) {
5764 signingConfig = signingConfigs.getByName(" release" )
You can’t perform that action at this time.
0 commit comments