Skip to content
This repository has been archived by the owner on Nov 5, 2024. It is now read-only.

Commit

Permalink
GitHub backups + Material3 migration (#2507) [fix R8]
Browse files Browse the repository at this point in the history
- GitHub backups MVP
- Note: Auto-backups are NOT implemented, yet!
- Migrate Material2 components to Material3. (verify that the UI still works and looks okay)
  • Loading branch information
ILIYANGERMANOV committed Aug 26, 2023
1 parent c938714 commit 03e2d9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
-dontwarn org.bouncycastle.jsse.**
-dontwarn org.conscrypt.**
-dontwarn org.openjsse.**
-dontwarn com.google.errorprone.**
-dontwarn org.slf4j.impl.**

# Json serialization (GSON fixes)
-keepattributes Signature
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ private fun Content(
verticalAlignment = Alignment.CenterVertically,
) {
OutlinedTextField(
modifier = Modifier.weight(1f),
value = repoUrl,
onValueChange = { repoUrl = it },
label = { Text("GitHub repo url") },
Expand All @@ -107,6 +108,7 @@ private fun Content(
verticalAlignment = Alignment.CenterVertically,
) {
OutlinedTextField(
modifier = Modifier.weight(1f),
value = accessToken,
onValueChange = { accessToken = it },
label = { Text("GitHub PAT") }
Expand Down

0 comments on commit 03e2d9d

Please sign in to comment.