-
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #132 from kl3jvi/new_parser_impl
fixed anime sync
- Loading branch information
Showing
11 changed files
with
81 additions
and
48 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
app/src/main/java/com/kl3jvi/animity/data/model/ui_models/MalSyncResponse.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.kl3jvi.animity.data.model.ui_models | ||
|
||
import kotlinx.serialization.SerialName | ||
import kotlinx.serialization.Serializable | ||
|
||
|
||
@Serializable | ||
data class MalSyncResponse( | ||
@SerialName("aniId") | ||
val aniId: Int, | ||
@SerialName("aniUrl") | ||
val aniUrl: String, | ||
@SerialName("identifier") | ||
val identifier: String, | ||
@SerialName("image") | ||
val image: String, | ||
@SerialName("malId") | ||
val malId: Int, | ||
@SerialName("malUrl") | ||
val malUrl: String, | ||
@SerialName("page") | ||
val page: String, | ||
@SerialName("title") | ||
val title: String, | ||
@SerialName("type") | ||
val type: String, | ||
@SerialName("url") | ||
val url: String | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
{ | ||
"Animity": { | ||
"x86": { | ||
"versionCode": 16, | ||
"versionName": "1.1.6", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.2/Animity-v1.1.6-x86-release.apk", | ||
"versionCode": 17, | ||
"versionName": "1.1.7", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.3/Animity-v1.1.7-x86-release.apk", | ||
"update_message": "New update available", | ||
"apkSize": "Unknown size" | ||
"apkSize": "7.17MB" | ||
}, | ||
"armeabi-v7a": { | ||
"versionCode": 16, | ||
"versionName": "1.1.6", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.2/Animity-v1.1.6-armeabi-v7a-release.apk", | ||
"versionCode": 17, | ||
"versionName": "1.1.7", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.3/Animity-v1.1.7-armeabi-v7a-release.apk", | ||
"update_message": "New update available", | ||
"apkSize": "Unknown size" | ||
"apkSize": "7.17MB" | ||
}, | ||
"arm64_v8a": { | ||
"versionCode": 16, | ||
"versionName": "1.1.6", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.2/Animity-v1.1.6-arm64_v8a-release.apk", | ||
"versionCode": 17, | ||
"versionName": "1.1.7", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.3/Animity-v1.1.7-arm64_v8a-release.apk", | ||
"update_message": "New update available", | ||
"apkSize": "Unknown size" | ||
}, | ||
"x86_64": { | ||
"versionCode": 16, | ||
"versionName": "1.1.6", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.2/Animity-v1.1.6-x86_64-release.apk", | ||
"versionCode": 17, | ||
"versionName": "1.1.7", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.3/Animity-v1.1.7-x86_64-release.apk", | ||
"update_message": "New update available", | ||
"apkSize": "Unknown size" | ||
"apkSize": "7.17MB" | ||
}, | ||
"universal": { | ||
"versionCode": 16, | ||
"versionName": "1.1.6", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.2/Animity-v1.1.6-universal-release.apk", | ||
"versionCode": 17, | ||
"versionName": "1.1.7", | ||
"direct_link": "https://github.com/kl3jvi/animity/releases/download/v0.2.3/Animity-v1.1.7-universal-release.apk", | ||
"update_message": "New update available", | ||
"apkSize": "Unknown size" | ||
"apkSize": "7.17MB" | ||
} | ||
} | ||
} | ||
} |