Bump version to 0.1.1

Fix push notifications: PUSH_GATEWAY_URL was empty in v0.1.0 because
it was externalized to BuildConfig before android-signing-env exported it.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ltadeu6 2026-05-25 17:04:42 -03:00
parent 863cbb6b79
commit e4e960024d
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D

View file

@ -14,8 +14,8 @@ android {
applicationId = "com.ltadeu6.matrix"
minSdk = 26
targetSdk = 35
versionCode = 1
versionName = "0.1.0"
versionCode = 2
versionName = "0.1.1"
buildConfigField("String", "PUSH_GATEWAY_URL",
"\"${System.getenv("PUSH_GATEWAY_URL") ?: ""}\"")
}