Skip to content

Commit

Permalink
Fix connection to server not working (#390)
Browse files Browse the repository at this point in the history
* Update build.gradle.kts

* Bump dependencies

* Bump version
  • Loading branch information
Jean-BaptisteC authored Feb 4, 2024
1 parent baf0ff4 commit e07852c
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
7 changes: 4 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ android {
applicationId = "org.eu.exodus_privacy.exodusprivacy"
minSdk = 21
targetSdk = 34
versionCode = 18
versionName = "3.2.1"
versionCode = 19
versionName = "3.2.2"
testInstrumentationRunner = "org.eu.exodus_privacy.exodusprivacy.ExodusTestRunner"
buildConfigField("String", "EXODUS_API_KEY", "\"${System.getenv("EXODUS_API_KEY")}\"")
val API_KEY = System.getenv("EXODUS_API_KEY")
buildConfigField("String", "EXODUS_API_KEY", "\"$API_KEY\"")

ksp {
arg(
Expand Down
1 change: 1 addition & 0 deletions fastlane/metadata/android/en-US/changelogs/19.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Fixed connection to Exodus server
1 change: 1 addition & 0 deletions fastlane/metadata/android/fr-FR/changelogs/19.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
- Correction de la connexion au serveur Exodus
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
androidGradlePlugin = "8.2.1"
androidGradlePlugin = "8.2.2"
kotlinPlugin = "1.9.22"
gradleKtlint = "12.1.0"
activity-ktx = "1.8.2"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit e07852c

Please sign in to comment.