Skip to content

Commit

Permalink
disable proguard
Browse files Browse the repository at this point in the history
  • Loading branch information
StellarSand committed Jun 21, 2024
1 parent c52f934 commit 1d29547
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 80 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# CHANGELOG


## v2.0.3
- Disabled proguard to keep necessary features required for app functionality.


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



## v2.0.1
- Fixed issue while verifying email.

Expand Down
8 changes: 4 additions & 4 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,15 @@ android {
applicationId = "tech.techlore.plexus"
minSdk = 23
targetSdk = 34
versionCode = 202
versionName = "2.0.2"
versionCode = 203
versionName = "2.0.3"
setProperty("archivesBaseName", "Plexus_v$versionName")
}

buildTypes {
getByName("release") {
isMinifyEnabled = true
isShrinkResources = true
isMinifyEnabled = false
isShrinkResources = false
vcsInfo.include = false // https://f-droid.org/docs/Reproducible_Builds/#vcs-info
proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ class SubmitActivity : AppCompatActivity() {

// FAB
activityBinding.submitFab.setOnClickListener {
submitData()
showSubmitBtmSheet()
}
}

private fun submitData() {
private fun showSubmitBtmSheet() {

lifecycleScope.launch {
if (hasNetwork(this@SubmitActivity) && hasInternet()) {
Expand All @@ -134,7 +134,7 @@ class SubmitActivity : AppCompatActivity() {
}
else {
NoNetworkBottomSheet(negativeButtonText = getString(R.string.cancel),
positiveButtonClickListener = { submitData() },
positiveButtonClickListener = { showSubmitBtmSheet() },
negativeButtonClickListener = {})
.show(supportFragmentManager, "NoNetworkBottomSheet")
}
Expand Down
12 changes: 0 additions & 12 deletions fastlane/metadata/android/de-DE/changelogs/202.txt

This file was deleted.

12 changes: 0 additions & 12 deletions fastlane/metadata/android/en-US/changelogs/202.txt

This file was deleted.

11 changes: 11 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/203.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
- Transitioned to a user-friendly status-based system
- Redesigned for better accessibility
- Implemented submissions directly from the app
- Fixed popup position issues during fast scrolling
- Eliminated list flickering during searches
- Introduced a favorites feature
- Added app filtering and cross-store availability check
- Supported multiple app versions
- Included Material You theme (Android 12+)
- Themed icons (Android 13+)
- Improved German(by @KerstinMaur) and French(by @Rathmox) translations
12 changes: 0 additions & 12 deletions fastlane/metadata/android/es-ES/changelogs/202.txt

This file was deleted.

12 changes: 0 additions & 12 deletions fastlane/metadata/android/fr-FR/changelogs/202.txt

This file was deleted.

12 changes: 0 additions & 12 deletions fastlane/metadata/android/it-IT/changelogs/202.txt

This file was deleted.

12 changes: 0 additions & 12 deletions fastlane/metadata/android/nl-NL/changelogs/202.txt

This file was deleted.

0 comments on commit 1d29547

Please sign in to comment.