Skip to content

Commit 1d29547

Browse files
committed
disable proguard
1 parent c52f934 commit 1d29547

File tree

10 files changed

+21
-80
lines changed

10 files changed

+21
-80
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
# CHANGELOG
22

33

4+
## v2.0.3
5+
- Disabled proguard to keep necessary features required for app functionality.
6+
47

58
## v2.0.2
69
- Fixed unable to submit ratings with microG
710

811

9-
1012
## v2.0.1
1113
- Fixed issue while verifying email.
1214

app/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ android {
3333
applicationId = "tech.techlore.plexus"
3434
minSdk = 23
3535
targetSdk = 34
36-
versionCode = 202
37-
versionName = "2.0.2"
36+
versionCode = 203
37+
versionName = "2.0.3"
3838
setProperty("archivesBaseName", "Plexus_v$versionName")
3939
}
4040

4141
buildTypes {
4242
getByName("release") {
43-
isMinifyEnabled = true
44-
isShrinkResources = true
43+
isMinifyEnabled = false
44+
isShrinkResources = false
4545
vcsInfo.include = false // https://f-droid.org/docs/Reproducible_Builds/#vcs-info
4646
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
4747
}

app/src/main/java/tech/techlore/plexus/activities/SubmitActivity.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,11 @@ class SubmitActivity : AppCompatActivity() {
121121

122122
// FAB
123123
activityBinding.submitFab.setOnClickListener {
124-
submitData()
124+
showSubmitBtmSheet()
125125
}
126126
}
127127

128-
private fun submitData() {
128+
private fun showSubmitBtmSheet() {
129129

130130
lifecycleScope.launch {
131131
if (hasNetwork(this@SubmitActivity) && hasInternet()) {
@@ -134,7 +134,7 @@ class SubmitActivity : AppCompatActivity() {
134134
}
135135
else {
136136
NoNetworkBottomSheet(negativeButtonText = getString(R.string.cancel),
137-
positiveButtonClickListener = { submitData() },
137+
positiveButtonClickListener = { showSubmitBtmSheet() },
138138
negativeButtonClickListener = {})
139139
.show(supportFragmentManager, "NoNetworkBottomSheet")
140140
}

fastlane/metadata/android/de-DE/changelogs/202.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

fastlane/metadata/android/en-US/changelogs/202.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
- Transitioned to a user-friendly status-based system
2+
- Redesigned for better accessibility
3+
- Implemented submissions directly from the app
4+
- Fixed popup position issues during fast scrolling
5+
- Eliminated list flickering during searches
6+
- Introduced a favorites feature
7+
- Added app filtering and cross-store availability check
8+
- Supported multiple app versions
9+
- Included Material You theme (Android 12+)
10+
- Themed icons (Android 13+)
11+
- Improved German(by @KerstinMaur) and French(by @Rathmox) translations

fastlane/metadata/android/es-ES/changelogs/202.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

fastlane/metadata/android/fr-FR/changelogs/202.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

fastlane/metadata/android/it-IT/changelogs/202.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

fastlane/metadata/android/nl-NL/changelogs/202.txt

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)