Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

- Compose Version Bump v1.7.3 #79

Merged
merged 10 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Do you wanna Convert your thoughts into Physicall & Successfull Project Then I'm
- **Compose**: `1.7.1`
- `androidx-appcompat`: `1.7.0`
- `androidx-activityCompose`: `1.9.3`
- `compose-uitooling`: `1.7.4`
- `compose-uitooling`: `1.7.6`
- `composeImageLoader`: `1.7.1`
- **Core Libraries**: `12.1.0`
- **Kotlinx Libraries**:
Expand Down Expand Up @@ -103,7 +103,7 @@ Do you wanna Convert your thoughts into Physicall & Successfull Project Then I'm
- **Size Measurement**:
- `size`: `0.5.0`
- **Firebase Bom**
- `firebase-bom`:`33.5.1`
- `firebase-bom`:`33.7.0`
- **Voyager Navigation**: `1.1.0-beta03`
- **Other Utilities**:
- `official-viewmodel`: `2.8.0-alpha10`
Expand Down
1 change: 0 additions & 1 deletion composeApp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ kotlin {
implementation(libs.androidx.media3.exoplayer.dash)
implementation(libs.androidx.media3.ui)
implementation(libs.core)
implementation(libs.core)
implementation(libs.custom.ui)
implementation(libs.sqlDelight.driver.android)
implementation(libs.koin.android)
Expand Down
1 change: 1 addition & 0 deletions composeApp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>

<application
android:name=".AndroidApp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -789,8 +789,8 @@ fun DetailContent(

if (notificationMessage.value.isNotBlank() && subscribedMenu.not()) {
//Notify(notificationMessage.value)
val notification = createNotification(type = NotificationType.TOAST)
notification.show(message = notificationMessage.value, title = "Subscription", duration = NotificationDuration.LONG)
val notification = createNotification(type = NotificationType.TOP)
notification.show(message = notificationMessage.value, title = "Subscription", duration = NotificationDuration.SHORT)
}

HorizontalDivider(
Expand Down Expand Up @@ -885,6 +885,7 @@ fun DetailContent(
) {
Column(
modifier = Modifier.fillMaxWidth()
.height(500.dp)
.verticalScroll(state = rememberScrollState())
) {
Row(
Expand Down
15 changes: 7 additions & 8 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,16 @@ core = "12.1.0"
kotestProperty = "5.9.1"
kotlin = "2.0.21"
agp = "8.2.2"
compose = "1.7.1"
compose = "1.7.3"
kotlinxCoroutinesSwing = "1.9.0"
libres = "1.2.2"
androidx-appcompat = "1.7.0"
androidx-activityCompose = "1.9.3"
compose-uitooling = "1.7.5"
compose-uitooling = "1.7.6"
lifecycleViewmodelCompose = "2.8.4"
media3Ui = "1.5.0"
media3ExoplayerDash = "1.5.0"
media3Exoplayer = "1.5.0"
media3Ui = "1.5.1"
media3ExoplayerDash = "1.5.1"
media3Exoplayer = "1.5.1"
mediaplayerKmp = "2.0.4"
navigationCompose = "2.8.0-alpha10"
voyager = "1.1.0-beta03"
Expand All @@ -32,9 +32,9 @@ kamelImage = "1.0.1"
size = "0.5.0"
sqlDelight = "2.0.2"
glace-effect = "1.1.1"
alertKmp = "1.0.8"
alertKmp = "2.0.0"
junitJupiter = "5.8.1"
firebase-bom = "33.6.0"
firebase-bom = "33.7.0"
gitlive = "2.1.0"


Expand Down Expand Up @@ -85,7 +85,6 @@ sqlDelight-extension = { module = "app.cash.sqldelight:coroutines-extensions", v
koin-android = { module = "io.insert-koin:koin-android", version.ref = "koin" }
koin-androidx-compose = { module = "io.insert-koin:koin-androidx-compose", version.ref = "koin" }
koin-core = { module = "io.insert-koin:koin-core", version.ref = "koin" }
koin-compose = { module = "io.insert-koin:koin-compose", version.ref = "koinComposeMultiplatform" }
koin-compose-viewmodel = { module = "io.insert-koin:koin-compose-viewmodel", version.ref = "koinComposeMultiplatform" }
alert-kmp = { module = "io.github.khubaibkhan4:alert-kmp", version.ref = "alertKmp" }
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junitJupiter" }
Expand Down
4 changes: 2 additions & 2 deletions iosApp/iosApp/iosApp.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ import Firebase
@main
struct iosApp: App {
init() {
FirebaseApp.configure()
FirebaseApp.configure()
}
var body: some Scene {
WindowGroup {
ContentView()
ContentView()
}
}
}
Expand Down
Loading