Skip to content

Commit

Permalink
I forgot to upload some files, whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
astarivi committed Jun 4, 2023
1 parent fb1e935 commit d57ffc0
Show file tree
Hide file tree
Showing 7 changed files with 547 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
*.iml
.gradle
/local.properties
/.idea/
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
app/src/main/res/values/strings_keys.xml
1 change: 1 addition & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/build
Original file line number Diff line number Diff line change
@@ -0,0 +1,279 @@
{
"formatVersion": 1,
"database": {
"version": 1,
"identityHash": "408ff5da59f3b7a7fad12a558400ee2f",
"entities": [
{
"tableName": "favorite_anime",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `date` INTEGER NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "date",
"columnName": "date",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
},
{
"tableName": "seen_anime",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `date` INTEGER NOT NULL, `favoriteId` INTEGER, `kitsuId` INTEGER, `subtype` TEXT, `titleJp` TEXT, `titleEn` TEXT, `titleEnJp` TEXT, `synopsis` TEXT, `coverImgLink` TEXT, `posterImageLink` TEXT, FOREIGN KEY(`favoriteId`) REFERENCES `favorite_anime`(`id`) ON UPDATE NO ACTION ON DELETE SET NULL )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "date",
"columnName": "date",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "favoriteId",
"columnName": "favoriteId",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "anime.kitsuId",
"columnName": "kitsuId",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "anime.subtype",
"columnName": "subtype",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "anime.titleJp",
"columnName": "titleJp",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "anime.titleEn",
"columnName": "titleEn",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "anime.titleEnJp",
"columnName": "titleEnJp",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "anime.synopsis",
"columnName": "synopsis",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "anime.coverImgLink",
"columnName": "coverImgLink",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "anime.posterImageLink",
"columnName": "posterImageLink",
"affinity": "TEXT",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_seen_anime_kitsuId",
"unique": true,
"columnNames": [
"kitsuId"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_seen_anime_kitsuId` ON `${TABLE_NAME}` (`kitsuId`)"
},
{
"name": "index_seen_anime_favoriteId",
"unique": true,
"columnNames": [
"favoriteId"
],
"orders": [],
"createSql": "CREATE UNIQUE INDEX IF NOT EXISTS `index_seen_anime_favoriteId` ON `${TABLE_NAME}` (`favoriteId`)"
}
],
"foreignKeys": [
{
"table": "favorite_anime",
"onDelete": "SET NULL",
"onUpdate": "NO ACTION",
"columns": [
"favoriteId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "seen_episode",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `animeId` INTEGER NOT NULL, `date` INTEGER NOT NULL, `kitsuId` INTEGER, `parentKitsuId` INTEGER, `episodeNumber` INTEGER, `seasonNumber` INTEGER, `relativeNumber` INTEGER, `length` INTEGER, `currentPosition` INTEGER, FOREIGN KEY(`animeId`) REFERENCES `seen_anime`(`id`) ON UPDATE NO ACTION ON DELETE CASCADE )",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "animeId",
"columnName": "animeId",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "date",
"columnName": "date",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "episode.kitsuId",
"columnName": "kitsuId",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "episode.parentKitsuId",
"columnName": "parentKitsuId",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "episode.episodeNumber",
"columnName": "episodeNumber",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "episode.seasonNumber",
"columnName": "seasonNumber",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "episode.relativeNumber",
"columnName": "relativeNumber",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "episode.length",
"columnName": "length",
"affinity": "INTEGER",
"notNull": false
},
{
"fieldPath": "episode.currentPosition",
"columnName": "currentPosition",
"affinity": "INTEGER",
"notNull": false
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [
{
"name": "index_seen_episode_animeId",
"unique": false,
"columnNames": [
"animeId"
],
"orders": [],
"createSql": "CREATE INDEX IF NOT EXISTS `index_seen_episode_animeId` ON `${TABLE_NAME}` (`animeId`)"
}
],
"foreignKeys": [
{
"table": "seen_anime",
"onDelete": "CASCADE",
"onUpdate": "NO ACTION",
"columns": [
"animeId"
],
"referencedColumns": [
"id"
]
}
]
},
{
"tableName": "search_history",
"createSql": "CREATE TABLE IF NOT EXISTS `${TABLE_NAME}` (`id` INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, `searchTerm` TEXT, `date` INTEGER NOT NULL)",
"fields": [
{
"fieldPath": "id",
"columnName": "id",
"affinity": "INTEGER",
"notNull": true
},
{
"fieldPath": "searchTerm",
"columnName": "searchTerm",
"affinity": "TEXT",
"notNull": false
},
{
"fieldPath": "date",
"columnName": "date",
"affinity": "INTEGER",
"notNull": true
}
],
"primaryKey": {
"autoGenerate": true,
"columnNames": [
"id"
]
},
"indices": [],
"foreignKeys": []
}
],
"views": [],
"setupQueries": [
"CREATE TABLE IF NOT EXISTS room_master_table (id INTEGER PRIMARY KEY,identity_hash TEXT)",
"INSERT OR REPLACE INTO room_master_table (id,identity_hash) VALUES(42, '408ff5da59f3b7a7fad12a558400ee2f')"
]
}
}
Binary file added app/src/main/ic_launcher-playstore.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
Loading

0 comments on commit d57ffc0

Please sign in to comment.