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

Commit 05ec9a9

Browse files
committed
[Main] Fix the Beef
1 parent fc7ab4d commit 05ec9a9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId = "com.vendetta.xposed"
1212
minSdk = 24
1313
targetSdk = 31
14-
versionCode = 5
15-
versionName = "1.1.2"
14+
versionCode = 6
15+
versionName = "1.1.3"
1616
}
1717

1818
buildTypes {

app/src/main/java/com/vendetta/xposed/Main.kt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ data class LoaderConfig(
3434
@Serializable
3535
data class Author(
3636
val name: String,
37-
val id: String?
37+
val id: String? = null
3838
)
3939
@Serializable
4040
data class ThemeData(
4141
val name: String,
42-
val description: String?,
43-
val authors: List<Author>?,
42+
val description: String? = null,
43+
val authors: List<Author>? = null,
4444
val spec: Int,
45-
val semanticColors: Map<String, List<String>>?,
46-
val rawColors: Map<String, String>?
45+
val semanticColors: Map<String, List<String>>? = null,
46+
val rawColors: Map<String, String>? = null
4747
)
4848
@Serializable
4949
data class Theme(

0 commit comments

Comments
 (0)