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

Commit

Permalink
[Main] Fix the Beef
Browse files Browse the repository at this point in the history
  • Loading branch information
redstonekasi committed Apr 19, 2023
1 parent fc7ab4d commit 05ec9a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ android {
applicationId = "com.vendetta.xposed"
minSdk = 24
targetSdk = 31
versionCode = 5
versionName = "1.1.2"
versionCode = 6
versionName = "1.1.3"
}

buildTypes {
Expand Down
10 changes: 5 additions & 5 deletions app/src/main/java/com/vendetta/xposed/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,16 @@ data class LoaderConfig(
@Serializable
data class Author(
val name: String,
val id: String?
val id: String? = null
)
@Serializable
data class ThemeData(
val name: String,
val description: String?,
val authors: List<Author>?,
val description: String? = null,
val authors: List<Author>? = null,
val spec: Int,
val semanticColors: Map<String, List<String>>?,
val rawColors: Map<String, String>?
val semanticColors: Map<String, List<String>>? = null,
val rawColors: Map<String, String>? = null
)
@Serializable
data class Theme(
Expand Down

0 comments on commit 05ec9a9

Please sign in to comment.