Skip to content

Commit c3ac6fd

Browse files
committed
fixed app build for all devices
1 parent 2476867 commit c3ac6fd

File tree

59 files changed

+1582
-97
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1582
-97
lines changed

.github/workflows/android.yml

100644100755
File mode changed.

.github/workflows/desktop.yml

100644100755
File mode changed.

.github/workflows/ios.yml

100644100755
File mode changed.

.idea/.gitignore

100644100755
File mode changed.

.idea/deploymentTargetSelector.xml

100644100755
File mode changed.

.idea/migrations.xml

100644100755
File mode changed.

.idea/runConfigurations.xml

100644100755
File mode changed.

.idea/vcs.xml

100644100755
File mode changed.

composeApp/bruceapp.keystore

2.68 KB
Binary file not shown.

composeApp/build.gradle.kts

100644100755
Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ plugins {
99
alias(libs.plugins.compose.compiler)
1010
}
1111

12+
repositories {
13+
google()
14+
mavenCentral()
15+
}
16+
1217
kotlin {
1318
androidTarget {
1419
@OptIn(ExperimentalKotlinGradlePluginApi::class)
@@ -25,11 +30,15 @@ kotlin {
2530
androidMain.dependencies {
2631
implementation(compose.preview)
2732
implementation(libs.androidx.activity.compose)
33+
implementation("androidx.compose.material:material-icons-extended:1.5.4")
34+
implementation("androidx.compose.material3:material3:1.1.2")
2835
}
2936
commonMain.dependencies {
3037
implementation(compose.runtime)
3138
implementation(compose.foundation)
3239
implementation(compose.material)
40+
implementation(compose.material3)
41+
implementation(compose.materialIconsExtended)
3342
implementation(compose.ui)
3443
implementation(compose.components.resources)
3544
implementation(compose.components.uiToolingPreview)
@@ -61,16 +70,27 @@ android {
6170
versionCode = 1
6271
versionName = "1.0"
6372
}
64-
packaging {
65-
resources {
66-
excludes += "/META-INF/{AL2.0,LGPL2.1}"
73+
74+
signingConfigs {
75+
create("release") {
76+
storeFile = file("bruceapp.keystore")
77+
storePassword = "bruceapp"
78+
keyAlias = "bruceapp"
79+
keyPassword = "bruceapp"
6780
}
6881
}
82+
6983
buildTypes {
7084
getByName("release") {
7185
isMinifyEnabled = false
86+
signingConfig = signingConfigs.getByName("release")
87+
}
88+
getByName("debug") {
89+
isDebuggable = true
90+
applicationIdSuffix = ".debug"
7291
}
7392
}
93+
7494
compileOptions {
7595
sourceCompatibility = JavaVersion.VERSION_11
7696
targetCompatibility = JavaVersion.VERSION_11

0 commit comments

Comments
 (0)