Skip to content

Commit

Permalink
Release 2.9.1
Browse files Browse the repository at this point in the history
(schnup89) Bugfix: Issue #20 Tastatureingaben (sollten) durch aktuelle Lib's gefixed sein
(schnup89) Bugfix: Startprozedur überarbeitet, bei falscher URL oder keiner Verbindung wird nun trotzdem die Startseite mit Einstellungsbutton angezeigt
(schnup89) Sonstiges: Updates von Gradle, Kotlin, SDK und Modulen
  • Loading branch information
Schnup89 committed Dec 23, 2023
1 parent c85aca0 commit 3f786ae
Show file tree
Hide file tree
Showing 17 changed files with 434 additions and 410 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,6 @@ app/release/app-release.apk
app/build.gradle
app/release/output-metadata.json
keystore.properties
.idea/deploymentTargetDropDown.xml
.idea/deploymentTargetDropDown.xml
.idea/deploymentTargetDropDown.xml
2 changes: 1 addition & 1 deletion .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

30 changes: 18 additions & 12 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 10 additions & 10 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ android {
keyPassword keystoreProperties['keyPassword']
}
}
compileSdk 33
compileSdk 34

defaultConfig {
applicationId "com.schnup.iobrokerw"
minSdk 26
targetSdk 30
targetSdk 34
versionCode 2
versionName "2.9"
versionName "2.9.1"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down Expand Up @@ -95,14 +95,14 @@ dependencies {
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"

// Custom
implementation 'androidx.appcompat:appcompat:1.5.1'
implementation 'com.google.android.material:material:1.7.0'
implementation "androidx.compose.material:material:$compose_version"
implementation 'androidx.wear.compose:compose-material:1.2.0-alpha01'
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.3.2'
implementation 'androidx.core:core-splashscreen:1.0.0'
implementation 'androidx.appcompat:appcompat:1.6.1'
implementation 'com.google.android.material:material:1.11.0'
implementation "androidx.compose.material:material:1.5.4"
implementation 'androidx.wear.compose:compose-material:1.2.1'
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.2'
implementation 'androidx.core:core-splashscreen:1.1.0-alpha02'
implementation 'androidx.wear:wear-input:1.1.0'

implementation "com.squareup.okhttp3:okhttp:4.10.0"
implementation 'com.squareup.okhttp3:okhttp:4.12.0'

}
20 changes: 0 additions & 20 deletions app/release/output-metadata.json

This file was deleted.

7 changes: 5 additions & 2 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<manifest xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand All @@ -23,7 +24,9 @@
android:exported="true"
android:label="@string/app_name"
android:theme="@style/Theme.MySplash"
android:launchMode="singleInstance" >
android:launchMode="singleInstance"
android:excludeFromRecents="true"
tools:ignore="WearRecents">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

Expand Down

0 comments on commit 3f786ae

Please sign in to comment.