Updates dependencies to latest versions.
This commit is contained in:
@@ -1,6 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.majinnaibu.monstercards">
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
|
||||
@@ -11,6 +10,7 @@
|
||||
android:label="@string/app_name"
|
||||
android:roundIcon="@mipmap/ic_launcher_round"
|
||||
android:supportsRtl="true"
|
||||
android:intentMatchingFlags="enforceIntentFilter"
|
||||
android:theme="@style/AppTheme">
|
||||
<activity
|
||||
android:name=".SplashActivity"
|
||||
|
||||
@@ -4,6 +4,7 @@ import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
import androidx.room.ColumnInfo;
|
||||
import androidx.room.Entity;
|
||||
import androidx.room.Ignore;
|
||||
import androidx.room.PrimaryKey;
|
||||
|
||||
import java.util.Objects;
|
||||
@@ -30,6 +31,7 @@ public class Collection {
|
||||
this.description = "";
|
||||
}
|
||||
|
||||
@Ignore
|
||||
public Collection(@NonNull String name, @NonNull String description) {
|
||||
this.id = UUID.randomUUID();
|
||||
this.name = name;
|
||||
|
||||
@@ -4,6 +4,7 @@ import androidx.annotation.NonNull;
|
||||
import androidx.room.ColumnInfo;
|
||||
import androidx.room.Entity;
|
||||
import androidx.room.ForeignKey;
|
||||
import androidx.room.Ignore;
|
||||
import androidx.room.Index;
|
||||
import androidx.room.PrimaryKey;
|
||||
|
||||
@@ -52,6 +53,7 @@ public class CollectionMonster {
|
||||
this.ordinal = 0;
|
||||
}
|
||||
|
||||
@Ignore
|
||||
public CollectionMonster(@NonNull UUID collectionId, @NonNull UUID monsterId, int ordinal) {
|
||||
this.collectionId = collectionId;
|
||||
this.monsterId = monsterId;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.majinnaibu.monstercards.models;
|
||||
|
||||
import androidx.room.Embedded;
|
||||
import androidx.room.Ignore;
|
||||
|
||||
public class CollectionWithCount {
|
||||
@Embedded
|
||||
@@ -13,6 +14,7 @@ public class CollectionWithCount {
|
||||
this.monsterCount = 0;
|
||||
}
|
||||
|
||||
@Ignore
|
||||
public CollectionWithCount(Collection collection, int monsterCount) {
|
||||
this.collection = collection;
|
||||
this.monsterCount = monsterCount;
|
||||
|
||||
@@ -4,6 +4,7 @@ import androidx.annotation.NonNull;
|
||||
import androidx.room.ColumnInfo;
|
||||
import androidx.room.Entity;
|
||||
import androidx.room.ForeignKey;
|
||||
import androidx.room.Ignore;
|
||||
import androidx.room.Index;
|
||||
import androidx.room.PrimaryKey;
|
||||
|
||||
@@ -36,6 +37,7 @@ public class DashboardMonster {
|
||||
this.ordinal = 0;
|
||||
}
|
||||
|
||||
@Ignore
|
||||
public DashboardMonster(@NonNull UUID monsterId, int ordinal) {
|
||||
this.monsterId = monsterId;
|
||||
this.ordinal = ordinal;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package com.majinnaibu.monstercards.models;
|
||||
|
||||
import androidx.room.Embedded;
|
||||
import androidx.room.Ignore;
|
||||
import androidx.room.Relation;
|
||||
|
||||
public class DashboardMonsterWithMonster {
|
||||
@@ -16,6 +17,7 @@ public class DashboardMonsterWithMonster {
|
||||
public DashboardMonsterWithMonster() {
|
||||
}
|
||||
|
||||
@Ignore
|
||||
public DashboardMonsterWithMonster(DashboardMonster dashboardEntry, Monster monster) {
|
||||
this.dashboardEntry = dashboardEntry;
|
||||
this.monster = monster;
|
||||
|
||||
Reference in New Issue
Block a user