More dep updates
This commit is contained in:
parent
7d05e3ebcb
commit
51dfd8edba
3 changed files with 5 additions and 5 deletions
|
@ -8,12 +8,12 @@ apply plugin: 'kotlin-kapt'
|
||||||
apply plugin: 'com.google.gms.google-services'
|
apply plugin: 'com.google.gms.google-services'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 32
|
compileSdkVersion 33
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "io.heckel.ntfy"
|
applicationId "io.heckel.ntfy"
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 32
|
targetSdkVersion 33
|
||||||
|
|
||||||
versionCode 29
|
versionCode 29
|
||||||
versionName "1.15.0"
|
versionName "1.15.0"
|
||||||
|
@ -65,7 +65,7 @@ android {
|
||||||
dependencies {
|
dependencies {
|
||||||
// AndroidX, The Basics
|
// AndroidX, The Basics
|
||||||
implementation "androidx.appcompat:appcompat:1.4.2"
|
implementation "androidx.appcompat:appcompat:1.4.2"
|
||||||
implementation "androidx.core:core-ktx:1.8.0"
|
implementation "androidx.core:core-ktx:1.9.0"
|
||||||
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
|
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
|
||||||
implementation "androidx.activity:activity-ktx:1.4.0"
|
implementation "androidx.activity:activity-ktx:1.4.0"
|
||||||
implementation "androidx.fragment:fragment-ktx:1.4.1"
|
implementation "androidx.fragment:fragment-ktx:1.4.1"
|
||||||
|
|
|
@ -326,7 +326,7 @@ class ShareActivity : AppCompatActivity() {
|
||||||
contentText.text.isNotEmpty() && topicText.text.isNotEmpty()
|
contentText.text.isNotEmpty() && topicText.text.isNotEmpty()
|
||||||
}
|
}
|
||||||
sendItem.isEnabled = enabled
|
sendItem.isEnabled = enabled
|
||||||
sendItem.icon.alpha = if (enabled) 255 else 130
|
sendItem.icon?.alpha = if (enabled) 255 else 130
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getBaseUrl(): String {
|
private fun getBaseUrl(): String {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
Bug fixes + maintenance:
|
Bug fixes + maintenance:
|
||||||
* Upgrade Android dependencies to SDK 32
|
* Upgrade Android dependencies to SDK 33
|
||||||
* Remove timestamp when copying message text (#471, thanks to @wunter8)
|
* Remove timestamp when copying message text (#471, thanks to @wunter8)
|
||||||
|
|
||||||
Additional translations:
|
Additional translations:
|
||||||
|
|
Loading…
Reference in a new issue