Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

Commit

Permalink
Library upgrades
Browse files Browse the repository at this point in the history
  • Loading branch information
Wavesonics committed Jun 23, 2023
1 parent da7d830 commit 1d11210
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions android/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// TODO remove this when Gradle is updated 8.1 https://github.com/gradle/gradle/issues/22797
@file:Suppress("DSL_SCOPE_VIOLATION")


plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.compose)
Expand All @@ -18,11 +17,11 @@ dependencies {
}

android {
compileSdk = 33
compileSdk = 34
defaultConfig {
applicationId = "com.darkrockstudios.libraries.mpfilepicker.android"
minSdk = 24
targetSdk = 33
targetSdk = 34
versionCode = 1
versionName = "1.0-SNAPSHOT"
}
Expand All @@ -35,4 +34,5 @@ android {
isMinifyEnabled = false
}
}
namespace = "com.darkrockstudios.libraries.mpfilepicker.android"
}
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.darkrockstudios.libraries.mpfilepicker.android">
>

<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

Expand Down
10 changes: 5 additions & 5 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[versions]
library = "1.1.0"
kotlin = "1.8.0"
library = "1.2.0"
kotlin = "1.8.20"

[libraries]
compose-activity = "androidx.activity:activity-compose:1.6.1"
Expand All @@ -12,6 +12,6 @@ kotlinx-html = "org.jetbrains.kotlinx:kotlinx-html:0.8.1"
junit = "junit:junit:4.13.2"

[plugins]
kotlin-compose = "org.jetbrains.compose:1.3.0"
android-application = "com.android.application:7.3.0"
android-library = "com.android.library:7.3.0"
kotlin-compose = "org.jetbrains.compose:1.4.0"
android-application = "com.android.application:7.4.1"
android-library = "com.android.library:7.4.1"
4 changes: 2 additions & 2 deletions mpfilepicker/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -174,11 +174,11 @@ signing {

android {
namespace = "com.darkrockstudios.libraries.mpfilepicker"
compileSdk = 33
compileSdk = 34
sourceSets["main"].manifest.srcFile("src/androidMain/AndroidManifest.xml")
defaultConfig {
minSdk = 24
targetSdk = 33
targetSdk = 34
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
Expand Down

0 comments on commit 1d11210

Please sign in to comment.