Skip to content

Commit

Permalink
Merge pull request #63 from afaneca/develop
Browse files Browse the repository at this point in the history
2.2.1
afaneca authored Mar 2, 2024
2 parents 5b2f7f8 + 8e78e9c commit b6e4ed1
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions android/app/build.gradle
Original file line number Diff line number Diff line change
@@ -20,14 +20,19 @@ keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
android {
ext.application_id = "com.afaneca.myfin"

// semantic versioning
def versionMajor = 2
def versionMinor = 2
def versionPatch = 1
def versionBuild = 0

defaultConfig {
applicationId "$application_id"
minSdkVersion 26
compileSdk 34
targetSdkVersion 34
versionCode 16
versionName "2.2.0"
versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
versionName "${versionMajor}.${versionMinor}.${versionPatch}"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Original file line number Diff line number Diff line change
@@ -66,7 +66,7 @@ constructor(
_clickedTransactionDetails.postValue(trx)
}

fun requestTransactions(query: String? = null, pageSize: Int = TRX_PAGE_SIZE) {
fun requestTransactions(query: String? = "", pageSize: Int = TRX_PAGE_SIZE) {
clearData()
_query = query;
requestTransactionsList(_trxCurrentPage, query, pageSize)

0 comments on commit b6e4ed1

Please sign in to comment.