chore: bump to 0.2.0 and prepare release
Signed-off-by: Infi <wingit@geist.ga>
This commit is contained in:
parent
f8e7c507b4
commit
18867495d9
|
|
@ -50,8 +50,8 @@ android {
|
||||||
applicationId "chat.revolt"
|
applicationId "chat.revolt"
|
||||||
minSdk 24
|
minSdk 24
|
||||||
targetSdk 33
|
targetSdk 33
|
||||||
versionCode Integer.parseInt("000_001_000".replaceAll("_", ""), 10)
|
versionCode Integer.parseInt("000_002_000".replaceAll("_", ""), 10)
|
||||||
versionName "0.1.0"
|
versionName "0.2.0"
|
||||||
|
|
||||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||||
vectorDrawables {
|
vectorDrawables {
|
||||||
|
|
@ -132,10 +132,10 @@ dependencies {
|
||||||
|
|
||||||
// KTOR - HTTP+WebSocket Library
|
// KTOR - HTTP+WebSocket Library
|
||||||
implementation "io.ktor:ktor-client-core:$ktor_version"
|
implementation "io.ktor:ktor-client-core:$ktor_version"
|
||||||
implementation "io.ktor:ktor-client-okhttp:$ktor_version"
|
|
||||||
implementation "io.ktor:ktor-client-logging:$ktor_version"
|
implementation "io.ktor:ktor-client-logging:$ktor_version"
|
||||||
implementation "io.ktor:ktor-client-content-negotiation:$ktor_version"
|
implementation "io.ktor:ktor-client-content-negotiation:$ktor_version"
|
||||||
implementation "io.ktor:ktor-serialization-kotlinx-json:$ktor_version"
|
implementation "io.ktor:ktor-serialization-kotlinx-json:$ktor_version"
|
||||||
|
implementation "io.ktor:ktor-client-okhttp:$ktor_version"
|
||||||
|
|
||||||
// Screen Navigation
|
// Screen Navigation
|
||||||
implementation "androidx.navigation:navigation-compose:$nav_version"
|
implementation "androidx.navigation:navigation-compose:$nav_version"
|
||||||
|
|
|
||||||
|
|
@ -57,4 +57,14 @@
|
||||||
#}
|
#}
|
||||||
#-keepnames class <1>$$serializer { # -keepnames suffices; class is kept when serializer() is kept.
|
#-keepnames class <1>$$serializer { # -keepnames suffices; class is kept when serializer() is kept.
|
||||||
# static <1>$$serializer INSTANCE;
|
# static <1>$$serializer INSTANCE;
|
||||||
#}
|
#}
|
||||||
|
|
||||||
|
# Excerpt of https://raw.githubusercontent.com/square/okhttp/f408411/okhttp/src/jvmMain/resources/META-INF/proguard/okhttp3.pro
|
||||||
|
# (Licensed under Apache 2.0. No modifications.)
|
||||||
|
# OkHttp platform used only on JVM and when Conscrypt and other security providers are available.
|
||||||
|
-dontwarn okhttp3.internal.platform.**
|
||||||
|
-dontwarn org.conscrypt.**
|
||||||
|
-dontwarn org.bouncycastle.**
|
||||||
|
-dontwarn org.openjsse.**
|
||||||
|
# End of excerpt.
|
||||||
|
-dontwarn org.slf4j.impl.**
|
||||||
|
|
@ -8,7 +8,7 @@ buildscript {
|
||||||
hilt_version = '2.44'
|
hilt_version = '2.44'
|
||||||
coil_version = '2.2.2'
|
coil_version = '2.2.2'
|
||||||
glide_version = '4.14.2'
|
glide_version = '4.14.2'
|
||||||
ktor_version = '2.1.3'
|
ktor_version = '2.3.0'
|
||||||
aboutlibraries_version = '10.5.2'
|
aboutlibraries_version = '10.5.2'
|
||||||
media3_version = '1.0.1'
|
media3_version = '1.0.1'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue