Skip to content
This repository has been archived by the owner on Aug 4, 2021. It is now read-only.

Upgraded Versions and Image Compressed #22

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,6 @@ We just wanted a simple memory game for kids 4+ age. No ads, no complicated scre

If you have more ideas or you want to add more options / themes / sounds or whatever, fill free to update the source for yourself or open a pull request. :sparkles:

<img src="http://www.sromku.com/static/img/pregnancy_memorygame_preview.png"/>

### Download It

<a href="https://play.google.com/store/apps/details?id=com.snatik.matches">
<img alt="Android app on Google Play" src="https://developer.android.com/images/brand/en_app_rgb_wo_45.png" />
</a>

### Next

- [ ] 2 player game
Expand Down
22 changes: 13 additions & 9 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,27 +1,31 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 28
buildToolsVersion "28.0.3"
compileSdkVersion 30
buildToolsVersion '30.0.2'

defaultConfig {
applicationId "com.snatik.matches"
minSdkVersion 14
targetSdkVersion 28
versionCode 1007
versionName "1.01.001007"
applicationId 'com.swastik.mind.game'
minSdkVersion 19
targetSdkVersion 30
versionCode 1
versionName '1.0'
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'androidx.appcompat:appcompat:1.2.0'

testImplementation 'junit:junit:4.12'
testImplementation 'junit:junit:4.13'
}
1 change: 0 additions & 1 deletion app/src/main/java/com/snatik/matches/GameApplication.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,5 @@ public class GameApplication extends Application {
public void onCreate() {
super.onCreate();
FontLoader.loadFonts(this);

}
}
2 changes: 1 addition & 1 deletion app/src/main/java/com/snatik/matches/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import android.graphics.Bitmap;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import androidx.fragment.app.FragmentActivity;
import android.widget.ImageView;

import com.snatik.matches.common.Shared;
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/snatik/matches/common/Shared.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package com.snatik.matches.common;

import android.content.Context;
import android.support.v4.app.FragmentActivity;
import androidx.fragment.app.FragmentActivity;

import com.snatik.matches.engine.Engine;
import com.snatik.matches.events.EventBus;
Expand Down
46 changes: 11 additions & 35 deletions app/src/main/java/com/snatik/matches/engine/Engine.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,8 @@ public void onEvent(ResetBackgroundEvent event) {
if (drawable != null) {
((TransitionDrawable) drawable).reverseTransition(2000);
} else {
new AsyncTask<Void, Void, Bitmap>() {

@Override
protected Bitmap doInBackground(Void... params) {
Bitmap bitmap = Utils.scaleDown(R.drawable.background, Utils.screenWidth(), Utils.screenHeight());
return bitmap;
}

protected void onPostExecute(Bitmap bitmap) {
mBackgroundImage.setImageBitmap(bitmap);
};

}.execute();
Bitmap bitmap = Utils.scaleDown(R.drawable.background, Utils.screenWidth(), Utils.screenHeight());
mBackgroundImage.setImageBitmap(bitmap);
}
}

Expand Down Expand Up @@ -137,28 +126,15 @@ public void onEvent(BackGameEvent event) {
public void onEvent(ThemeSelectedEvent event) {
mSelectedTheme = event.theme;
mScreenController.openScreen(Screen.DIFFICULTY);
AsyncTask<Void, Void, TransitionDrawable> task = new AsyncTask<Void, Void, TransitionDrawable>() {

@Override
protected TransitionDrawable doInBackground(Void... params) {
Bitmap bitmap = Utils.scaleDown(R.drawable.background, Utils.screenWidth(), Utils.screenHeight());
Bitmap backgroundImage = Themes.getBackgroundImage(mSelectedTheme);
backgroundImage = Utils.crop(backgroundImage, Utils.screenHeight(), Utils.screenWidth());
Drawable backgrounds[] = new Drawable[2];
backgrounds[0] = new BitmapDrawable(Shared.context.getResources(), bitmap);
backgrounds[1] = new BitmapDrawable(Shared.context.getResources(), backgroundImage);
TransitionDrawable crossfader = new TransitionDrawable(backgrounds);
return crossfader;
}

@Override
protected void onPostExecute(TransitionDrawable result) {
super.onPostExecute(result);
mBackgroundImage.setImageDrawable(result);
result.startTransition(2000);
}
};
task.execute();
Bitmap bitmap = Utils.scaleDown(R.drawable.background, Utils.screenWidth(), Utils.screenHeight());
Bitmap backgroundImage = Themes.getBackgroundImage(mSelectedTheme);
backgroundImage = Utils.crop(backgroundImage, Utils.screenHeight(), Utils.screenWidth());
Drawable[] backgrounds = new Drawable[2];
backgrounds[0] = new BitmapDrawable(Shared.context.getResources(), bitmap);
backgrounds[1] = new BitmapDrawable(Shared.context.getResources(), backgroundImage);
TransitionDrawable crossfader = new TransitionDrawable(backgrounds);
mBackgroundImage.setImageDrawable(crossfader);
crossfader.startTransition(2000);
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
import java.util.ArrayList;
import java.util.List;

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import androidx.fragment.app.Fragment;
import androidx.fragment.app.FragmentManager;
import androidx.fragment.app.FragmentTransaction;

import com.snatik.matches.R;
import com.snatik.matches.common.Shared;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package com.snatik.matches.fragments;

import android.support.v4.app.Fragment;
import androidx.fragment.app.Fragment;

import com.snatik.matches.events.EventObserver;
import com.snatik.matches.events.engine.FlipDownCardsEvent;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import android.animation.ObjectAnimator;
import android.graphics.Typeface;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import androidx.fragment.app.Fragment;
import android.view.Gravity;
import android.view.LayoutInflater;
import android.view.View;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import android.animation.ObjectAnimator;
import android.animation.ValueAnimator;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
Expand Down Expand Up @@ -49,7 +49,7 @@ public void onClick(View v) {
mGooglePlayGameButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Toast.makeText(getActivity(), "Leaderboards will be available in the next game updates", Toast.LENGTH_LONG).show();
Toast.makeText(getActivity(), "Leader boards will be available in the next game updates", Toast.LENGTH_LONG).show();
}
});
mStartButtonLights = (ImageView) view.findViewById(R.id.start_game_button_lights);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import androidx.annotation.NonNull;
import androidx.fragment.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
Expand All @@ -22,7 +23,7 @@
public class ThemeSelectFragment extends Fragment {

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View view = LayoutInflater.from(Shared.context).inflate(R.layout.theme_select_fragment, container, false);
View animals = view.findViewById(R.id.theme_animals_container);
View monsters = view.findViewById(R.id.theme_monsters_container);
Expand Down Expand Up @@ -52,7 +53,7 @@ public void onClick(View v) {
emoji.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Shared.eventBus.notify(new ThemeSelectedEvent(themeEmoji));
Shared.eventBus.notify(new ThemeSelectedEvent(themeEmoji));
}
});

Expand Down
3 changes: 1 addition & 2 deletions app/src/main/java/com/snatik/matches/themes/Themes.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,7 @@ public static Theme createEmojiTheme() {
public static Bitmap getBackgroundImage(Theme theme) {
String drawableResourceName = theme.backgroundImageUrl.substring(Themes.URI_DRAWABLE.length());
int drawableResourceId = Shared.context.getResources().getIdentifier(drawableResourceName, "drawable", Shared.context.getPackageName());
Bitmap bitmap = Utils.scaleDown(drawableResourceId, Utils.screenWidth(), Utils.screenHeight());
return bitmap;
return Utils.scaleDown(drawableResourceId, Utils.screenWidth(), Utils.screenHeight());
}

}
10 changes: 0 additions & 10 deletions app/src/main/res/Temporary.java

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/button_music_off.png
Diff not rendered.
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/button_music_on.png
Diff not rendered.
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/button_rate.png
Diff not rendered.
Binary file added app/src/main/res/drawable-hdpi/button_rate.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/button_settings.png
Diff not rendered.
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/button_start.png
Diff not rendered.
Binary file added app/src/main/res/drawable-hdpi/button_start.webp
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Diff not rendered.
Binary file not shown.
Binary file removed app/src/main/res/drawable-hdpi/tooltip_play.png
Diff not rendered.
Binary file added app/src/main/res/drawable-hdpi/tooltip_play.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_1.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_1.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_10.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_10.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_11.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_11.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_12.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_12.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_13.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_13.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_14.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_14.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_15.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_15.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_16.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_16.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_17.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_17.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_18.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_18.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_19.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_19.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_2.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_2.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_20.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_20.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_21.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_21.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_22.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_22.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_23.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_23.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_24.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_24.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_25.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_25.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_26.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_26.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_27.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_27.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_28.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_28.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_3.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_3.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_4.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_4.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_5.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_5.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_6.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_6.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_7.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_7.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_8.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_8.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/animals_9.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/animals_9.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/back_animals.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/back_animals.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/back_horror.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/back_horror.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/background.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/background.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_1.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_1.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_10.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_10.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_11.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_11.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_12.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_12.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_13.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_13.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_14.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_14.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_15.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_15.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_16.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_16.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_17.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_17.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_18.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_18.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_19.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_19.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_2.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_2.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_20.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_20.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_21.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_21.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_22.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_22.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_23.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_23.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_24.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_24.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_25.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_25.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_26.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_26.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_27.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_27.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_28.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_28.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_29.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_29.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_3.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_3.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_30.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_30.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_31.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_31.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_32.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_32.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_33.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_33.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_34.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_34.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_35.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_35.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_36.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_36.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_37.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_37.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_38.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_38.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_39.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_39.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_4.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_4.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_40.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_40.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_41.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_41.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_42.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_42.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_43.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_43.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_44.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_44.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_45.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_45.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_46.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_46.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_47.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_47.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_48.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_48.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_5.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_5.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_6.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_6.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_7.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_7.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_8.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_8.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/emoji_9.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/emoji_9.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_1.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_1.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_10.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_10.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_11.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_11.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_12.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_12.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_13.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_13.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_14.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_14.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_15.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_15.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_16.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_16.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_17.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_17.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_18.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_18.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_19.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_19.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_2.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_2.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_20.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_20.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_21.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_21.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_22.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_22.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_23.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_23.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_24.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_24.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_25.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_25.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_26.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_26.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_27.png
Diff not rendered.
Binary file added app/src/main/res/drawable-nodpi/mosters_27.webp
Binary file not shown.
Binary file removed app/src/main/res/drawable-nodpi/mosters_28.png
Diff not rendered.
Loading