Skip to content

Commit

Permalink
feat: Added open-source libraries screen and improved UI
Browse files Browse the repository at this point in the history
Enhanced user experience and transparency:

- Added a dedicated screen to display the used open-source libraries.
- Included the EULA in the app's settings.
- Improved the logic for opening notification settings.
- Made various UI enhancements, including animated snackbars and improvements to the About screen.
- Updated several dependencies to the latest versions.
  • Loading branch information
Mihai-Cristian Condrea committed Nov 21, 2024
1 parent b156724 commit a457002
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
10 changes: 0 additions & 10 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -44,21 +44,11 @@ android {
}
}

signingConfigs {
create("release") {
keyAlias = "key0"
keyPassword = "GoogleD4rK10"
storeFile = file("C:/Users/mihai.condrea/StudioProjects/com.d4rk.cartcalculator/app/src/main/play/keys/com.d4rk.cartcalculator.jks")
storePassword = "GoogleD4rK10"
}
}

buildTypes {
release {
isMinifyEnabled = true
isShrinkResources = true
isDebuggable = false
signingConfig = signingConfigs.getByName("release")
}
debug {
isDebuggable = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ object OpenSourceLicensesUtils {

private suspend fun getChangelogMarkdown(): String {
return withContext(Dispatchers.IO) {
val url = URL("https://raw.githubusercontent.com/$packageName}/refs/heads/jetpack_compose_rework/CHANGELOG.md")
val url = URL("https://raw.githubusercontent.com/D4rK7355608/$packageName/refs/heads/master/CHANGELOG.md")
(url.openConnection() as? HttpURLConnection)?.let { connection ->
try {
connection.requestMethod = "GET"
Expand All @@ -43,7 +43,7 @@ object OpenSourceLicensesUtils {

private suspend fun getEulaMarkdown(): String {
return withContext(Dispatchers.IO) {
val url = URL("https://raw.githubusercontent.com/$packageName}/refs/heads/jetpack_compose_rework/EULA.md")
val url = URL("https://raw.githubusercontent.com/D4rK7355608/$packageName/refs/heads/master/EULA.md")
(url.openConnection() as? HttpURLConnection)?.let { connection ->
try {
connection.requestMethod = "GET"
Expand Down

0 comments on commit a457002

Please sign in to comment.