diff --git a/MyDaoGenerator/src/main/java/pl/surecase/eu/MyDaoGenerator.java b/MyDaoGenerator/src/main/java/pl/surecase/eu/MyDaoGenerator.java
index 71618de..3c429c6 100644
--- a/MyDaoGenerator/src/main/java/pl/surecase/eu/MyDaoGenerator.java
+++ b/MyDaoGenerator/src/main/java/pl/surecase/eu/MyDaoGenerator.java
@@ -8,6 +8,8 @@ public class MyDaoGenerator {
public static void main(String args[]) throws Exception {
Schema schema = new Schema(1, "greendao");
+ schema.enableKeepSectionsByDefault();
+
Entity box = schema.addEntity("Match");
box.addIdProperty();
box.addStringProperty("t1");
diff --git a/app/app.iml b/app/app.iml
index 5584a46..e0d4b01 100644
--- a/app/app.iml
+++ b/app/app.iml
@@ -87,6 +87,7 @@
+
diff --git a/app/build.gradle b/app/build.gradle
index 8325f90..ace5012 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -36,4 +36,6 @@ dependencies {
compile 'joda-time:joda-time:2.6'
compile 'com.squareup.okhttp:okhttp-urlconnection:2.2.0'
compile 'de.greenrobot:greendao:1.3.7'
+ compile 'com.google.android.gms:play-services:6.+'
+
}
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
index 07ea5d1..9626208 100644
--- a/app/proguard-rules.pro
+++ b/app/proguard-rules.pro
@@ -15,3 +15,8 @@
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
+
+-keepclassmembers class * extends de.greenrobot.dao.AbstractDao {
+ public static java.lang.String TABLENAME;
+}
+-keep class **$Properties
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 755da8b..4088fed 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -3,6 +3,8 @@
package="com.bluealeaf.dota2ticker" >
+
+
+
+
+
+
diff --git a/app/src/main/java-gen/greendao/Match.java b/app/src/main/java-gen/greendao/Match.java
index e119f67..1cbb25e 100644
--- a/app/src/main/java-gen/greendao/Match.java
+++ b/app/src/main/java-gen/greendao/Match.java
@@ -5,6 +5,10 @@
import android.os.Parcel;
import android.os.Parcelable;
+// KEEP INCLUDES - put your custom includes here
+// KEEP INCLUDES END
+
+
/**
* Entity mapped to table MATCH.
*/
@@ -25,15 +29,10 @@ public Match(Long id) {
this.id = id;
}
- public Match(Long id, String t1, String t2, String t1c, String t2c, Long ETA, Boolean alarm_set) {
- this.id = id;
- this.t1 = t1;
- this.t2 = t2;
- this.t1c = t1c;
- this.t2c = t2c;
- this.ETA = ETA;
- this.alarm_set = alarm_set;
- }
+ // KEEP FIELDS - put your custom fields here
+ // KEEP FIELDS END
+
+
public Long getId() {
return id;
@@ -91,12 +90,15 @@ public void setAlarm_set(Boolean alarm_set) {
this.alarm_set = alarm_set;
}
+ // KEEP METHODS - put your custom methods here
+
@Override
public int describeContents() {
return 0;
}
@Override
+
public void writeToParcel(Parcel dest, int flags) {
dest.writeLong(id);
dest.writeString(t1);
@@ -119,4 +121,17 @@ private Match(Parcel in){
t1 = in.readString();
t2 = in.readString();
}
+
+
+ public Match(Long id, String t1, String t2, String t1c, String t2c, Long ETA, Boolean alarm_set) {
+ this.id = id;
+ this.t1 = t1;
+ this.t2 = t2;
+ this.t1c = t1c;
+ this.t2c = t2c;
+ this.ETA = ETA;
+ this.alarm_set = alarm_set;
+ }
+ // KEEP METHODS END
+
}
diff --git a/app/src/main/java/com/bluealeaf/dota2ticker/MainActivity.java b/app/src/main/java/com/bluealeaf/dota2ticker/MainActivity.java
index ca42a26..4eed47b 100644
--- a/app/src/main/java/com/bluealeaf/dota2ticker/MainActivity.java
+++ b/app/src/main/java/com/bluealeaf/dota2ticker/MainActivity.java
@@ -1,10 +1,13 @@
package com.bluealeaf.dota2ticker;
+import android.content.Context;
+import android.content.Intent;
import android.os.Bundle;
-import android.os.StrictMode;
import android.support.v4.widget.SwipeRefreshLayout;
import android.support.v7.app.ActionBarActivity;
import android.util.Log;
+import android.view.View;
+import android.widget.AdapterView;
import android.widget.ListView;
import android.widget.Toast;
@@ -16,6 +19,9 @@
import com.bluealeaf.dota2ticker.events.NoNewMatchesEvent;
import com.bluealeaf.dota2ticker.events.PassMatchListFromDBEvent;
import com.bluealeaf.dota2ticker.events.UpdateMatchesEvent;
+import com.google.android.gms.ads.AdListener;
+import com.google.android.gms.ads.AdRequest;
+import com.google.android.gms.ads.AdView;
import com.squareup.otto.Subscribe;
import java.util.ArrayList;
@@ -39,25 +45,42 @@ public class MainActivity extends ActionBarActivity {
private boolean isSwiped = false;
+ private Context mContext;
+
private static final String tag = MainActivity.class.getName();
+ private AdView mAdView;
+
@Override
protected void onCreate(Bundle savedInstanceState) {
- StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
- .detectDiskReads()
- .detectDiskWrites()
- .detectNetwork() // or .detectAll() for all detectable problems
- .penaltyLog()
- .build());
- StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
- .detectLeakedSqlLiteObjects()
- .detectLeakedClosableObjects()
- .penaltyLog()
- .penaltyDeath()
- .build());
+// StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
+// .detectDiskReads()
+// .detectDiskWrites()
+// .detectNetwork() // or .detectAll() for all detectable problems
+// .penaltyLog()
+// .build());
+// StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
+// .detectLeakedSqlLiteObjects()
+// .detectLeakedClosableObjects()
+// .penaltyLog()
+// .penaltyDeath()
+// .build());
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
+ mAdView = (AdView) findViewById(R.id.adView);
+ AdRequest adRequest = new AdRequest.Builder().build();
+ mAdView.loadAd(adRequest);
+ mAdView.setAdListener(new AdListener() {
+ @Override
+ public void onAdLoaded() {
+ super.onAdLoaded();
+ mAdView.setVisibility(View.VISIBLE);
+ }
+ });
+
+ mContext = this;
+
}
@@ -76,14 +99,30 @@ protected void onResume() {
swipeRefreshLayout.setColorSchemeResources(
R.color.blue, R.color.purple,
R.color.green, R.color.orange);
- swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener(){
+ swipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
- BusProvider.getBusInstance().post(new GetIdFromDbEvent(OkHttpClientConst.FORCE_NETWORK));
isSwiped = true;
+ matches.clear();
+ BusProvider.getBusInstance().post(new GetIdFromDbEvent(OkHttpClientConst.FORCE_NETWORK));
+
}
});
+ listView.setItemsCanFocus(true);
+ listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
+ @Override
+ public void onItemClick(AdapterView> parent, View view, int position, long id) {
+ Match match = (Match)listView.getItemAtPosition(position);
+ Intent intent = new Intent(mContext,MatchDetailsActivity.class);
+ intent.putExtra("MATCH_ID", match);
+ Log.d(tag,"Clicked");
+ startActivity(intent);
+
+ }
+ });
+
+ mAdView.resume();
//Register subscribed event
BusProvider.getBusInstance().register(this);
@@ -94,11 +133,20 @@ public void onRefresh() {
@Override
protected void onPause() {
super.onPause();
- Log.d(tag,"pause");
+ mAdView.pause();
+
//Unregister subscribed event
BusProvider.getBusInstance().unregister(this);
}
+ public void onDestroy() {
+ // Destroy the AdView.
+ mAdView.destroy();
+
+ super.onDestroy();
+ }
+
+
@Subscribe
public void OnListReceivedFromDb(PassMatchListFromDBEvent event){
updateMatches(event.getMatchList());
@@ -113,7 +161,6 @@ public void OnListReceived(UpdateMatchesEvent event){
}
if(isSwiped){
- Toast.makeText(this,"Updated",Toast.LENGTH_LONG).show();
isSwiped = false;
}
@@ -128,6 +175,8 @@ public int compare(Match lhs, Match rhs) {
adapter.notifyDataSetChanged();
}
+
+
Log.d(tag,"OnListReceived");
}
@@ -149,7 +198,7 @@ public void OnNoNewMatchesReceived(NoNewMatchesEvent event){
swipeRefreshLayout.setRefreshing(false);
isSwiped = false;
}
- Toast.makeText(this,"Updated",Toast.LENGTH_LONG).show();
+
adapter.notifyDataSetChanged();
}
diff --git a/app/src/main/java/com/bluealeaf/dota2ticker/MatchDetailsActivity.java b/app/src/main/java/com/bluealeaf/dota2ticker/MatchDetailsActivity.java
index 1da1900..ab18d8b 100644
--- a/app/src/main/java/com/bluealeaf/dota2ticker/MatchDetailsActivity.java
+++ b/app/src/main/java/com/bluealeaf/dota2ticker/MatchDetailsActivity.java
@@ -2,8 +2,12 @@
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
+import android.widget.ImageView;
import android.widget.TextView;
+import org.joda.time.DateTime;
+import org.joda.time.DateTimeZone;
+
import greendao.Match;
@@ -16,14 +20,58 @@ protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_match_details);
Match match = getIntent().getParcelableExtra("MATCH_ID");
- TextView textView = (TextView) findViewById(R.id.data);
+ getActionBar().setHomeButtonEnabled(true);
+
if(match != null){
+ TextView teamOne = (TextView) findViewById(R.id.t1Bold);
+ TextView teamTwo = (TextView) findViewById(R.id.t2Bold);
+
+ ImageView teamOneImg = (ImageView) findViewById(R.id.t1Logo);
+ ImageView teamTwoImg = (ImageView) findViewById(R.id.t2Logo);
+
+ teamOne.setText(match.getT1());
+ teamTwo.setText(match.getT2());
+
+ int t1Resource = this.getResources().getIdentifier(this.getPackageName()+":drawable/"+match.getT1().replace(" ","_").toLowerCase()+"_60px",null,null);
+ int t2Resource = this.getResources().getIdentifier(this.getPackageName()+":drawable/"+match.getT2().replace(" ","_").toLowerCase()+"_60px",null,null);
+
+ if(t1Resource == 0){
+ t1Resource = this.getResources().getIdentifier(this.getPackageName()+":drawable/unknown_30px",null,null);
+ }
+
+ if(t2Resource == 0){
+ t2Resource = this.getResources().getIdentifier(this.getPackageName()+":drawable/unknown_30px",null,null);
+ }
+
+ teamOneImg.setImageResource(t1Resource);
+ teamTwoImg.setImageResource(t2Resource);
+
+ TextView status = (TextView) findViewById(R.id.matchStatus);
+
+
+ long temp = match.getETA() - DateTime.now(DateTimeZone.UTC).getMillis();
+ temp /= 1000;
+ long hours = temp / 3600;
+ long mins = (temp % 3600) / 60;
+
+ StringBuilder sb = new StringBuilder();
+ sb.append(String.valueOf(hours)).append("h").append(" ").append(String.valueOf(mins)).append("m");
+
+ if(DateTime.now(DateTimeZone.UTC).getMillis() > match.getETA()-30000){
+ status.setText("LIVE");
+ }
+ else{
+ status.setText(sb.toString());
+ status.setTextColor(getResources().getColor(R.color.black));
+ }
+
+ this.setTitle(match.getT1() + " VS " + match.getT2());
- textView.setText(match.getT1()+" vs. "+match.getT2());
}
else {
- textView.setText("No match found.");
+ TextView status = (TextView) findViewById(R.id.matchStatus);
+ status.setText("No match");
}
}
diff --git a/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java b/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java
index 58836eb..c0893ad 100644
--- a/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java
+++ b/app/src/main/java/com/bluealeaf/dota2ticker/adapters/MatchListAdapter.java
@@ -5,12 +5,12 @@
import android.content.Context;
import android.content.Intent;
import android.os.Parcelable;
-import android.util.Log;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.CompoundButton;
+import android.widget.ImageView;
import android.widget.ListView;
import android.widget.Switch;
import android.widget.TextView;
@@ -43,6 +43,8 @@ static class ViewHolder{
TextView vs;
TextView teamTwo;
TextView ETA;
+ ImageView teamOneCnt;
+ ImageView teamTwoCnt;
Switch alarmSwitch;
}
@@ -82,6 +84,8 @@ public View getView(int position, View convertView, ViewGroup parent) throws Il
viewHolder.vs = (TextView) view.findViewById(R.id.vs);
viewHolder.ETA = (TextView) view.findViewById(R.id.ETA);
viewHolder.alarmSwitch = (Switch) view.findViewById(R.id.alarmSwitch);
+ viewHolder.teamOneCnt = (ImageView) view.findViewById(R.id.teamOneCnt);
+ viewHolder.teamTwoCnt = (ImageView) view.findViewById(R.id.teamTwoCnt);
view.setTag(viewHolder);
}
else{
@@ -100,7 +104,21 @@ public View getView(int position, View convertView, ViewGroup parent) throws Il
viewHolder.teamOne.setText(match_data.getT1());
viewHolder.teamTwo.setText(match_data.getT2());
viewHolder.vs.setText("vs");
-// viewHolder.alarmSwitch.setTag(position);
+
+
+ int t1Resource = context.getResources().getIdentifier(context.getPackageName()+":drawable/"+match_data.getT1().replace(" ","_").toLowerCase()+"_60px",null,null);
+ int t2Resource = context.getResources().getIdentifier(context.getPackageName()+":drawable/"+match_data.getT2().replace(" ","_").toLowerCase()+"_60px",null,null);
+
+ if(t1Resource == 0){
+ t1Resource = context.getResources().getIdentifier(context.getPackageName()+":drawable/unknown_30px",null,null);
+ }
+
+ if(t2Resource == 0){
+ t2Resource = context.getResources().getIdentifier(context.getPackageName()+":drawable/unknown_30px",null,null);
+ }
+
+ viewHolder.teamOneCnt.setImageResource(t1Resource);
+ viewHolder.teamTwoCnt.setImageResource(t2Resource);
viewHolder.alarmSwitch.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
@@ -119,7 +137,7 @@ public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
//switch from on to off
if(!isChecked){
- Log.d(tag, "called!");
+
MatchDbOperations.updateAlarm(match_data, false);
removeAlarm(match_data);
match_data.setAlarm_set(false);
@@ -139,13 +157,13 @@ private void setAlarm(Match match){
intent.putExtra("MATCH_ID", match);
PendingIntent pendingIntent;
try {
- pendingIntent = PendingIntent.getBroadcast(context, safeLongToInt(match.getId())+65535, intent, PendingIntent.FLAG_CANCEL_CURRENT);
+ pendingIntent = PendingIntent.getBroadcast(context, safeLongToInt(match.getId()), intent, PendingIntent.FLAG_UPDATE_CURRENT);
}
catch(IllegalArgumentException ex){
throw ex;
}
//300000 = 5 mins. Alarm gonna ring 5 mins before time
- alarmManager.set(AlarmManager.RTC_WAKEUP,match.getETA()*1000-300000, pendingIntent);
+ alarmManager.set(AlarmManager.RTC_WAKEUP,match.getETA()-300000, pendingIntent);
}
private void removeAlarm(Match match){
@@ -154,7 +172,7 @@ private void removeAlarm(Match match){
intent.putExtra("MATCH_ID", (Parcelable)match);
PendingIntent pendingIntent;
try {
- pendingIntent = PendingIntent.getService(context, safeLongToInt(match.getId())+65535, intent, PendingIntent.FLAG_CANCEL_CURRENT);
+ pendingIntent = PendingIntent.getBroadcast(context, safeLongToInt(match.getId()), intent, PendingIntent.FLAG_UPDATE_CURRENT);
}
catch(IllegalArgumentException ex){
throw ex;
diff --git a/app/src/main/java/com/bluealeaf/dota2ticker/database/MatchDbOperations.java b/app/src/main/java/com/bluealeaf/dota2ticker/database/MatchDbOperations.java
index 111741d..7ce1951 100644
--- a/app/src/main/java/com/bluealeaf/dota2ticker/database/MatchDbOperations.java
+++ b/app/src/main/java/com/bluealeaf/dota2ticker/database/MatchDbOperations.java
@@ -62,6 +62,16 @@ public static Match getMatch(long id){
return getMatchDao().queryBuilder().where(MatchDao.Properties.Id.eq(id)).build().unique();
}
+ public static List search(String searchQuery){
+ String modifiedQuery = "%".concat(searchQuery).concat("%");
+ Query query = getMatchDao().queryBuilder().where(MatchDao.Properties.T1.like(modifiedQuery)).build();
+ List result = query.list();
+ query = getMatchDao().queryBuilder().where(MatchDao.Properties.T2.like(modifiedQuery)).build();
+ result.addAll(result.size(),query.list());
+ return result;
+ }
+
+
private static MatchDao getMatchDao(){
return BusProvider.getDaoSessionInstance().getMatchDao();
diff --git a/app/src/main/res/drawable/absolute_legends_30px.png b/app/src/main/res/drawable/absolute_legends_30px.png
new file mode 100644
index 0000000..410fe9a
Binary files /dev/null and b/app/src/main/res/drawable/absolute_legends_30px.png differ
diff --git a/app/src/main/res/drawable/absolute_legends_45px.png b/app/src/main/res/drawable/absolute_legends_45px.png
new file mode 100644
index 0000000..2577022
Binary files /dev/null and b/app/src/main/res/drawable/absolute_legends_45px.png differ
diff --git a/app/src/main/res/drawable/absolute_legends_60px.png b/app/src/main/res/drawable/absolute_legends_60px.png
new file mode 100644
index 0000000..f4f1932
Binary files /dev/null and b/app/src/main/res/drawable/absolute_legends_60px.png differ
diff --git a/app/src/main/res/drawable/albumsheet_30px.jpeg b/app/src/main/res/drawable/albumsheet_30px.jpeg
new file mode 100644
index 0000000..ecd61b4
Binary files /dev/null and b/app/src/main/res/drawable/albumsheet_30px.jpeg differ
diff --git a/app/src/main/res/drawable/albumsheet_45px.jpeg b/app/src/main/res/drawable/albumsheet_45px.jpeg
new file mode 100644
index 0000000..3a1011e
Binary files /dev/null and b/app/src/main/res/drawable/albumsheet_45px.jpeg differ
diff --git a/app/src/main/res/drawable/albumsheet_60px.jpeg b/app/src/main/res/drawable/albumsheet_60px.jpeg
new file mode 100644
index 0000000..7b58a41
Binary files /dev/null and b/app/src/main/res/drawable/albumsheet_60px.jpeg differ
diff --git a/app/src/main/res/drawable/arrow_gaming_30px.png b/app/src/main/res/drawable/arrow_gaming_30px.png
new file mode 100644
index 0000000..f2b6a49
Binary files /dev/null and b/app/src/main/res/drawable/arrow_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/arrow_gaming_45px.png b/app/src/main/res/drawable/arrow_gaming_45px.png
new file mode 100644
index 0000000..5a079a0
Binary files /dev/null and b/app/src/main/res/drawable/arrow_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/arrow_gaming_60px.png b/app/src/main/res/drawable/arrow_gaming_60px.png
new file mode 100644
index 0000000..bce7c0d
Binary files /dev/null and b/app/src/main/res/drawable/arrow_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/awake_30px.png b/app/src/main/res/drawable/awake_30px.png
new file mode 100644
index 0000000..a71ec69
Binary files /dev/null and b/app/src/main/res/drawable/awake_30px.png differ
diff --git a/app/src/main/res/drawable/awake_45px.png b/app/src/main/res/drawable/awake_45px.png
new file mode 100644
index 0000000..f0526a7
Binary files /dev/null and b/app/src/main/res/drawable/awake_45px.png differ
diff --git a/app/src/main/res/drawable/awake_60px.png b/app/src/main/res/drawable/awake_60px.png
new file mode 100644
index 0000000..81c31cd
Binary files /dev/null and b/app/src/main/res/drawable/awake_60px.png differ
diff --git a/app/src/main/res/drawable/balkan_bears_30px.png b/app/src/main/res/drawable/balkan_bears_30px.png
new file mode 100644
index 0000000..00b4432
Binary files /dev/null and b/app/src/main/res/drawable/balkan_bears_30px.png differ
diff --git a/app/src/main/res/drawable/balkan_bears_45px.png b/app/src/main/res/drawable/balkan_bears_45px.png
new file mode 100644
index 0000000..2417df8
Binary files /dev/null and b/app/src/main/res/drawable/balkan_bears_45px.png differ
diff --git a/app/src/main/res/drawable/balkan_bears_60px.png b/app/src/main/res/drawable/balkan_bears_60px.png
new file mode 100644
index 0000000..f8656ce
Binary files /dev/null and b/app/src/main/res/drawable/balkan_bears_60px.png differ
diff --git a/app/src/main/res/drawable/big_god_30px.png b/app/src/main/res/drawable/big_god_30px.png
new file mode 100644
index 0000000..6d7453c
Binary files /dev/null and b/app/src/main/res/drawable/big_god_30px.png differ
diff --git a/app/src/main/res/drawable/big_god_45px.png b/app/src/main/res/drawable/big_god_45px.png
new file mode 100644
index 0000000..51c5b2e
Binary files /dev/null and b/app/src/main/res/drawable/big_god_45px.png differ
diff --git a/app/src/main/res/drawable/big_god_60px.png b/app/src/main/res/drawable/big_god_60px.png
new file mode 100644
index 0000000..b2066ec
Binary files /dev/null and b/app/src/main/res/drawable/big_god_60px.png differ
diff --git a/app/src/main/res/drawable/cdec_gaming_30px.png b/app/src/main/res/drawable/cdec_gaming_30px.png
new file mode 100644
index 0000000..4319ef8
Binary files /dev/null and b/app/src/main/res/drawable/cdec_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/cdec_gaming_45px.png b/app/src/main/res/drawable/cdec_gaming_45px.png
new file mode 100644
index 0000000..c556581
Binary files /dev/null and b/app/src/main/res/drawable/cdec_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/cdec_gaming_60px.png b/app/src/main/res/drawable/cdec_gaming_60px.png
new file mode 100644
index 0000000..616a4f1
Binary files /dev/null and b/app/src/main/res/drawable/cdec_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/cloud9_30px.png b/app/src/main/res/drawable/cloud9_30px.png
new file mode 100644
index 0000000..adef19c
Binary files /dev/null and b/app/src/main/res/drawable/cloud9_30px.png differ
diff --git a/app/src/main/res/drawable/cloud9_45px.png b/app/src/main/res/drawable/cloud9_45px.png
new file mode 100644
index 0000000..a6dabc6
Binary files /dev/null and b/app/src/main/res/drawable/cloud9_45px.png differ
diff --git a/app/src/main/res/drawable/cloud9_60px.png b/app/src/main/res/drawable/cloud9_60px.png
new file mode 100644
index 0000000..3bafc87
Binary files /dev/null and b/app/src/main/res/drawable/cloud9_60px.png differ
diff --git a/app/src/main/res/drawable/cnb_esports_club_30px.png b/app/src/main/res/drawable/cnb_esports_club_30px.png
new file mode 100644
index 0000000..d814dd0
Binary files /dev/null and b/app/src/main/res/drawable/cnb_esports_club_30px.png differ
diff --git a/app/src/main/res/drawable/cnb_esports_club_45px.png b/app/src/main/res/drawable/cnb_esports_club_45px.png
new file mode 100644
index 0000000..73f1c22
Binary files /dev/null and b/app/src/main/res/drawable/cnb_esports_club_45px.png differ
diff --git a/app/src/main/res/drawable/cnb_esports_club_60px.png b/app/src/main/res/drawable/cnb_esports_club_60px.png
new file mode 100644
index 0000000..4f82682
Binary files /dev/null and b/app/src/main/res/drawable/cnb_esports_club_60px.png differ
diff --git a/app/src/main/res/drawable/complexity_gaming_30px.png b/app/src/main/res/drawable/complexity_gaming_30px.png
new file mode 100644
index 0000000..83aeb20
Binary files /dev/null and b/app/src/main/res/drawable/complexity_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/complexity_gaming_45px.png b/app/src/main/res/drawable/complexity_gaming_45px.png
new file mode 100644
index 0000000..083a9d9
Binary files /dev/null and b/app/src/main/res/drawable/complexity_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/complexity_gaming_60px.png b/app/src/main/res/drawable/complexity_gaming_60px.png
new file mode 100644
index 0000000..8d9ab30
Binary files /dev/null and b/app/src/main/res/drawable/complexity_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/copenhagen_wolves_30px.png b/app/src/main/res/drawable/copenhagen_wolves_30px.png
new file mode 100644
index 0000000..8b572b9
Binary files /dev/null and b/app/src/main/res/drawable/copenhagen_wolves_30px.png differ
diff --git a/app/src/main/res/drawable/copenhagen_wolves_45px.png b/app/src/main/res/drawable/copenhagen_wolves_45px.png
new file mode 100644
index 0000000..bfa7f64
Binary files /dev/null and b/app/src/main/res/drawable/copenhagen_wolves_45px.png differ
diff --git a/app/src/main/res/drawable/copenhagen_wolves_60px.png b/app/src/main/res/drawable/copenhagen_wolves_60px.png
new file mode 100644
index 0000000..1d16922
Binary files /dev/null and b/app/src/main/res/drawable/copenhagen_wolves_60px.png differ
diff --git a/app/src/main/res/drawable/counter_logic_gaming_30px.png b/app/src/main/res/drawable/counter_logic_gaming_30px.png
new file mode 100644
index 0000000..f17c870
Binary files /dev/null and b/app/src/main/res/drawable/counter_logic_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/counter_logic_gaming_45px.png b/app/src/main/res/drawable/counter_logic_gaming_45px.png
new file mode 100644
index 0000000..32dcf3c
Binary files /dev/null and b/app/src/main/res/drawable/counter_logic_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/counter_logic_gaming_60px.png b/app/src/main/res/drawable/counter_logic_gaming_60px.png
new file mode 100644
index 0000000..8b94e2b
Binary files /dev/null and b/app/src/main/res/drawable/counter_logic_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/darer_entertainment_30px.png b/app/src/main/res/drawable/darer_entertainment_30px.png
new file mode 100644
index 0000000..b7b5496
Binary files /dev/null and b/app/src/main/res/drawable/darer_entertainment_30px.png differ
diff --git a/app/src/main/res/drawable/darer_entertainment_45px.png b/app/src/main/res/drawable/darer_entertainment_45px.png
new file mode 100644
index 0000000..06cd2fc
Binary files /dev/null and b/app/src/main/res/drawable/darer_entertainment_45px.png differ
diff --git a/app/src/main/res/drawable/darer_entertainment_60px.png b/app/src/main/res/drawable/darer_entertainment_60px.png
new file mode 100644
index 0000000..fdd828c
Binary files /dev/null and b/app/src/main/res/drawable/darer_entertainment_60px.png differ
diff --git a/app/src/main/res/drawable/denial_esports_30px.png b/app/src/main/res/drawable/denial_esports_30px.png
new file mode 100644
index 0000000..ef9385a
Binary files /dev/null and b/app/src/main/res/drawable/denial_esports_30px.png differ
diff --git a/app/src/main/res/drawable/denial_esports_45px.png b/app/src/main/res/drawable/denial_esports_45px.png
new file mode 100644
index 0000000..794740e
Binary files /dev/null and b/app/src/main/res/drawable/denial_esports_45px.png differ
diff --git a/app/src/main/res/drawable/denial_esports_60px.png b/app/src/main/res/drawable/denial_esports_60px.png
new file mode 100644
index 0000000..efea455
Binary files /dev/null and b/app/src/main/res/drawable/denial_esports_60px.png differ
diff --git a/app/src/main/res/drawable/dream_destroyers_30px.jpeg b/app/src/main/res/drawable/dream_destroyers_30px.jpeg
new file mode 100644
index 0000000..103ff08
Binary files /dev/null and b/app/src/main/res/drawable/dream_destroyers_30px.jpeg differ
diff --git a/app/src/main/res/drawable/dream_destroyers_45px.jpeg b/app/src/main/res/drawable/dream_destroyers_45px.jpeg
new file mode 100644
index 0000000..853aa06
Binary files /dev/null and b/app/src/main/res/drawable/dream_destroyers_45px.jpeg differ
diff --git a/app/src/main/res/drawable/dream_destroyers_60px.jpeg b/app/src/main/res/drawable/dream_destroyers_60px.jpeg
new file mode 100644
index 0000000..c42714b
Binary files /dev/null and b/app/src/main/res/drawable/dream_destroyers_60px.jpeg differ
diff --git a/app/src/main/res/drawable/dts_gaming_30px.png b/app/src/main/res/drawable/dts_gaming_30px.png
new file mode 100644
index 0000000..fe79c1b
Binary files /dev/null and b/app/src/main/res/drawable/dts_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/dts_gaming_45px.png b/app/src/main/res/drawable/dts_gaming_45px.png
new file mode 100644
index 0000000..09d3491
Binary files /dev/null and b/app/src/main/res/drawable/dts_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/dts_gaming_60px.png b/app/src/main/res/drawable/dts_gaming_60px.png
new file mode 100644
index 0000000..89e731d
Binary files /dev/null and b/app/src/main/res/drawable/dts_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/eclypsia_gaming_30px.png b/app/src/main/res/drawable/eclypsia_gaming_30px.png
new file mode 100644
index 0000000..686af46
Binary files /dev/null and b/app/src/main/res/drawable/eclypsia_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/eclypsia_gaming_45px.png b/app/src/main/res/drawable/eclypsia_gaming_45px.png
new file mode 100644
index 0000000..2525d43
Binary files /dev/null and b/app/src/main/res/drawable/eclypsia_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/eclypsia_gaming_60px.png b/app/src/main/res/drawable/eclypsia_gaming_60px.png
new file mode 100644
index 0000000..9425512
Binary files /dev/null and b/app/src/main/res/drawable/eclypsia_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/ehome_30px.png b/app/src/main/res/drawable/ehome_30px.png
new file mode 100644
index 0000000..afb354b
Binary files /dev/null and b/app/src/main/res/drawable/ehome_30px.png differ
diff --git a/app/src/main/res/drawable/ehome_45px.png b/app/src/main/res/drawable/ehome_45px.png
new file mode 100644
index 0000000..1ccdf7f
Binary files /dev/null and b/app/src/main/res/drawable/ehome_45px.png differ
diff --git a/app/src/main/res/drawable/ehome_60px.png b/app/src/main/res/drawable/ehome_60px.png
new file mode 100644
index 0000000..767c8e0
Binary files /dev/null and b/app/src/main/res/drawable/ehome_60px.png differ
diff --git a/app/src/main/res/drawable/evil_geniuses_30px.png b/app/src/main/res/drawable/evil_geniuses_30px.png
new file mode 100644
index 0000000..304923b
Binary files /dev/null and b/app/src/main/res/drawable/evil_geniuses_30px.png differ
diff --git a/app/src/main/res/drawable/evil_geniuses_45px.png b/app/src/main/res/drawable/evil_geniuses_45px.png
new file mode 100644
index 0000000..a826c29
Binary files /dev/null and b/app/src/main/res/drawable/evil_geniuses_45px.png differ
diff --git a/app/src/main/res/drawable/evil_geniuses_60px.png b/app/src/main/res/drawable/evil_geniuses_60px.png
new file mode 100644
index 0000000..2ebdcaa
Binary files /dev/null and b/app/src/main/res/drawable/evil_geniuses_60px.png differ
diff --git a/app/src/main/res/drawable/first_departure_30px.png b/app/src/main/res/drawable/first_departure_30px.png
new file mode 100644
index 0000000..607ca4d
Binary files /dev/null and b/app/src/main/res/drawable/first_departure_30px.png differ
diff --git a/app/src/main/res/drawable/first_departure_45px.png b/app/src/main/res/drawable/first_departure_45px.png
new file mode 100644
index 0000000..5f96700
Binary files /dev/null and b/app/src/main/res/drawable/first_departure_45px.png differ
diff --git a/app/src/main/res/drawable/first_departure_60px.png b/app/src/main/res/drawable/first_departure_60px.png
new file mode 100644
index 0000000..cb4b647
Binary files /dev/null and b/app/src/main/res/drawable/first_departure_60px.png differ
diff --git a/app/src/main/res/drawable/fnatic_30px.png b/app/src/main/res/drawable/fnatic_30px.png
new file mode 100644
index 0000000..a9f9c7e
Binary files /dev/null and b/app/src/main/res/drawable/fnatic_30px.png differ
diff --git a/app/src/main/res/drawable/fnatic_45px.png b/app/src/main/res/drawable/fnatic_45px.png
new file mode 100644
index 0000000..9674bde
Binary files /dev/null and b/app/src/main/res/drawable/fnatic_45px.png differ
diff --git a/app/src/main/res/drawable/fnatic_60px.png b/app/src/main/res/drawable/fnatic_60px.png
new file mode 100644
index 0000000..31a0101
Binary files /dev/null and b/app/src/main/res/drawable/fnatic_60px.png differ
diff --git a/app/src/main/res/drawable/get_outs_30px.png b/app/src/main/res/drawable/get_outs_30px.png
new file mode 100644
index 0000000..148473a
Binary files /dev/null and b/app/src/main/res/drawable/get_outs_30px.png differ
diff --git a/app/src/main/res/drawable/get_outs_45px.png b/app/src/main/res/drawable/get_outs_45px.png
new file mode 100644
index 0000000..512de5f
Binary files /dev/null and b/app/src/main/res/drawable/get_outs_45px.png differ
diff --git a/app/src/main/res/drawable/get_outs_60px.png b/app/src/main/res/drawable/get_outs_60px.png
new file mode 100644
index 0000000..5dcdb0b
Binary files /dev/null and b/app/src/main/res/drawable/get_outs_60px.png differ
diff --git a/app/src/main/res/drawable/hellraisers_30px.png b/app/src/main/res/drawable/hellraisers_30px.png
new file mode 100644
index 0000000..10eec63
Binary files /dev/null and b/app/src/main/res/drawable/hellraisers_30px.png differ
diff --git a/app/src/main/res/drawable/hellraisers_45px.png b/app/src/main/res/drawable/hellraisers_45px.png
new file mode 100644
index 0000000..3a64265
Binary files /dev/null and b/app/src/main/res/drawable/hellraisers_45px.png differ
diff --git a/app/src/main/res/drawable/hellraisers_60px.png b/app/src/main/res/drawable/hellraisers_60px.png
new file mode 100644
index 0000000..2868ced
Binary files /dev/null and b/app/src/main/res/drawable/hellraisers_60px.png differ
diff --git a/app/src/main/res/drawable/hypergloryteam_30px.jpeg b/app/src/main/res/drawable/hypergloryteam_30px.jpeg
new file mode 100644
index 0000000..e6b15aa
Binary files /dev/null and b/app/src/main/res/drawable/hypergloryteam_30px.jpeg differ
diff --git a/app/src/main/res/drawable/hypergloryteam_45px.jpeg b/app/src/main/res/drawable/hypergloryteam_45px.jpeg
new file mode 100644
index 0000000..8115ff2
Binary files /dev/null and b/app/src/main/res/drawable/hypergloryteam_45px.jpeg differ
diff --git a/app/src/main/res/drawable/hypergloryteam_60px.jpeg b/app/src/main/res/drawable/hypergloryteam_60px.jpeg
new file mode 100644
index 0000000..568e6f6
Binary files /dev/null and b/app/src/main/res/drawable/hypergloryteam_60px.jpeg differ
diff --git a/app/src/main/res/drawable/insidious_idol_30px.jpeg b/app/src/main/res/drawable/insidious_idol_30px.jpeg
new file mode 100644
index 0000000..70cc95b
Binary files /dev/null and b/app/src/main/res/drawable/insidious_idol_30px.jpeg differ
diff --git a/app/src/main/res/drawable/insidious_idol_45px.jpeg b/app/src/main/res/drawable/insidious_idol_45px.jpeg
new file mode 100644
index 0000000..0bb6785
Binary files /dev/null and b/app/src/main/res/drawable/insidious_idol_45px.jpeg differ
diff --git a/app/src/main/res/drawable/insidious_idol_60px.jpeg b/app/src/main/res/drawable/insidious_idol_60px.jpeg
new file mode 100644
index 0000000..484a8ba
Binary files /dev/null and b/app/src/main/res/drawable/insidious_idol_60px.jpeg differ
diff --git a/app/src/main/res/drawable/international_cyber_cup_30px.jpg b/app/src/main/res/drawable/international_cyber_cup_30px.jpg
new file mode 100644
index 0000000..7533b53
Binary files /dev/null and b/app/src/main/res/drawable/international_cyber_cup_30px.jpg differ
diff --git a/app/src/main/res/drawable/international_cyber_cup_45px.jpg b/app/src/main/res/drawable/international_cyber_cup_45px.jpg
new file mode 100644
index 0000000..34e6632
Binary files /dev/null and b/app/src/main/res/drawable/international_cyber_cup_45px.jpg differ
diff --git a/app/src/main/res/drawable/international_cyber_cup_60px.jpg b/app/src/main/res/drawable/international_cyber_cup_60px.jpg
new file mode 100644
index 0000000..8c239dc
Binary files /dev/null and b/app/src/main/res/drawable/international_cyber_cup_60px.jpg differ
diff --git a/app/src/main/res/drawable/invasion_esports_30px.png b/app/src/main/res/drawable/invasion_esports_30px.png
new file mode 100644
index 0000000..ed73a3e
Binary files /dev/null and b/app/src/main/res/drawable/invasion_esports_30px.png differ
diff --git a/app/src/main/res/drawable/invasion_esports_45px.png b/app/src/main/res/drawable/invasion_esports_45px.png
new file mode 100644
index 0000000..04cf374
Binary files /dev/null and b/app/src/main/res/drawable/invasion_esports_45px.png differ
diff --git a/app/src/main/res/drawable/invasion_esports_60px.png b/app/src/main/res/drawable/invasion_esports_60px.png
new file mode 100644
index 0000000..0a5037b
Binary files /dev/null and b/app/src/main/res/drawable/invasion_esports_60px.png differ
diff --git a/app/src/main/res/drawable/invictus_gaming_30px.png b/app/src/main/res/drawable/invictus_gaming_30px.png
new file mode 100644
index 0000000..73969b8
Binary files /dev/null and b/app/src/main/res/drawable/invictus_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/invictus_gaming_45px.png b/app/src/main/res/drawable/invictus_gaming_45px.png
new file mode 100644
index 0000000..04d4ae8
Binary files /dev/null and b/app/src/main/res/drawable/invictus_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/invictus_gaming_60px.png b/app/src/main/res/drawable/invictus_gaming_60px.png
new file mode 100644
index 0000000..b5573fa
Binary files /dev/null and b/app/src/main/res/drawable/invictus_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/keita_gaming_30px.jpg b/app/src/main/res/drawable/keita_gaming_30px.jpg
new file mode 100644
index 0000000..7c57c6c
Binary files /dev/null and b/app/src/main/res/drawable/keita_gaming_30px.jpg differ
diff --git a/app/src/main/res/drawable/keita_gaming_45px.jpg b/app/src/main/res/drawable/keita_gaming_45px.jpg
new file mode 100644
index 0000000..8dbb0b4
Binary files /dev/null and b/app/src/main/res/drawable/keita_gaming_45px.jpg differ
diff --git a/app/src/main/res/drawable/keita_gaming_60px.jpg b/app/src/main/res/drawable/keita_gaming_60px.jpg
new file mode 100644
index 0000000..71dbfe7
Binary files /dev/null and b/app/src/main/res/drawable/keita_gaming_60px.jpg differ
diff --git a/app/src/main/res/drawable/lai_gaming_30px.jpeg b/app/src/main/res/drawable/lai_gaming_30px.jpeg
new file mode 100644
index 0000000..86bb827
Binary files /dev/null and b/app/src/main/res/drawable/lai_gaming_30px.jpeg differ
diff --git a/app/src/main/res/drawable/lai_gaming_45px.jpeg b/app/src/main/res/drawable/lai_gaming_45px.jpeg
new file mode 100644
index 0000000..2e1e06b
Binary files /dev/null and b/app/src/main/res/drawable/lai_gaming_45px.jpeg differ
diff --git a/app/src/main/res/drawable/lai_gaming_60px.jpeg b/app/src/main/res/drawable/lai_gaming_60px.jpeg
new file mode 100644
index 0000000..eddce23
Binary files /dev/null and b/app/src/main/res/drawable/lai_gaming_60px.jpeg differ
diff --git a/app/src/main/res/drawable/lgd_gaming_30px.png b/app/src/main/res/drawable/lgd_gaming_30px.png
new file mode 100644
index 0000000..2cf8f95
Binary files /dev/null and b/app/src/main/res/drawable/lgd_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/lgd_gaming_45px.png b/app/src/main/res/drawable/lgd_gaming_45px.png
new file mode 100644
index 0000000..eb17533
Binary files /dev/null and b/app/src/main/res/drawable/lgd_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/lgd_gaming_60px.png b/app/src/main/res/drawable/lgd_gaming_60px.png
new file mode 100644
index 0000000..ec4131a
Binary files /dev/null and b/app/src/main/res/drawable/lgd_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/meetyourmakers_30px.jpeg b/app/src/main/res/drawable/meetyourmakers_30px.jpeg
new file mode 100644
index 0000000..cdb576b
Binary files /dev/null and b/app/src/main/res/drawable/meetyourmakers_30px.jpeg differ
diff --git a/app/src/main/res/drawable/meetyourmakers_45px.jpeg b/app/src/main/res/drawable/meetyourmakers_45px.jpeg
new file mode 100644
index 0000000..455d117
Binary files /dev/null and b/app/src/main/res/drawable/meetyourmakers_45px.jpeg differ
diff --git a/app/src/main/res/drawable/meetyourmakers_60px.jpeg b/app/src/main/res/drawable/meetyourmakers_60px.jpeg
new file mode 100644
index 0000000..bbad34f
Binary files /dev/null and b/app/src/main/res/drawable/meetyourmakers_60px.jpeg differ
diff --git a/app/src/main/res/drawable/mineski_30px.png b/app/src/main/res/drawable/mineski_30px.png
new file mode 100644
index 0000000..6a5499e
Binary files /dev/null and b/app/src/main/res/drawable/mineski_30px.png differ
diff --git a/app/src/main/res/drawable/mineski_45px.png b/app/src/main/res/drawable/mineski_45px.png
new file mode 100644
index 0000000..b086b6c
Binary files /dev/null and b/app/src/main/res/drawable/mineski_45px.png differ
diff --git a/app/src/main/res/drawable/mineski_60px.png b/app/src/main/res/drawable/mineski_60px.png
new file mode 100644
index 0000000..a7e879a
Binary files /dev/null and b/app/src/main/res/drawable/mineski_60px.png differ
diff --git a/app/src/main/res/drawable/monkey_spanner_30px.png b/app/src/main/res/drawable/monkey_spanner_30px.png
new file mode 100644
index 0000000..a6ebd42
Binary files /dev/null and b/app/src/main/res/drawable/monkey_spanner_30px.png differ
diff --git a/app/src/main/res/drawable/monkey_spanner_45px.png b/app/src/main/res/drawable/monkey_spanner_45px.png
new file mode 100644
index 0000000..655ef07
Binary files /dev/null and b/app/src/main/res/drawable/monkey_spanner_45px.png differ
diff --git a/app/src/main/res/drawable/monkey_spanner_60px.png b/app/src/main/res/drawable/monkey_spanner_60px.png
new file mode 100644
index 0000000..5c52483
Binary files /dev/null and b/app/src/main/res/drawable/monkey_spanner_60px.png differ
diff --git a/app/src/main/res/drawable/moscow_five_30px.png b/app/src/main/res/drawable/moscow_five_30px.png
new file mode 100644
index 0000000..5bdd0de
Binary files /dev/null and b/app/src/main/res/drawable/moscow_five_30px.png differ
diff --git a/app/src/main/res/drawable/moscow_five_45px.png b/app/src/main/res/drawable/moscow_five_45px.png
new file mode 100644
index 0000000..f5b796c
Binary files /dev/null and b/app/src/main/res/drawable/moscow_five_45px.png differ
diff --git a/app/src/main/res/drawable/moscow_five_60px.png b/app/src/main/res/drawable/moscow_five_60px.png
new file mode 100644
index 0000000..4f07fd1
Binary files /dev/null and b/app/src/main/res/drawable/moscow_five_60px.png differ
diff --git a/app/src/main/res/drawable/mousesports_30px.png b/app/src/main/res/drawable/mousesports_30px.png
new file mode 100644
index 0000000..9531735
Binary files /dev/null and b/app/src/main/res/drawable/mousesports_30px.png differ
diff --git a/app/src/main/res/drawable/mousesports_45px.png b/app/src/main/res/drawable/mousesports_45px.png
new file mode 100644
index 0000000..a839224
Binary files /dev/null and b/app/src/main/res/drawable/mousesports_45px.png differ
diff --git a/app/src/main/res/drawable/mousesports_60px.png b/app/src/main/res/drawable/mousesports_60px.png
new file mode 100644
index 0000000..40624bd
Binary files /dev/null and b/app/src/main/res/drawable/mousesports_60px.png differ
diff --git a/app/src/main/res/drawable/mufc_esports_30px.png b/app/src/main/res/drawable/mufc_esports_30px.png
new file mode 100644
index 0000000..a3da4b4
Binary files /dev/null and b/app/src/main/res/drawable/mufc_esports_30px.png differ
diff --git a/app/src/main/res/drawable/mufc_esports_45px.png b/app/src/main/res/drawable/mufc_esports_45px.png
new file mode 100644
index 0000000..6e088ee
Binary files /dev/null and b/app/src/main/res/drawable/mufc_esports_45px.png differ
diff --git a/app/src/main/res/drawable/mufc_esports_60px.png b/app/src/main/res/drawable/mufc_esports_60px.png
new file mode 100644
index 0000000..b769896
Binary files /dev/null and b/app/src/main/res/drawable/mufc_esports_60px.png differ
diff --git a/app/src/main/res/drawable/mvp_hot6ix_30px.png b/app/src/main/res/drawable/mvp_hot6ix_30px.png
new file mode 100644
index 0000000..404edf3
Binary files /dev/null and b/app/src/main/res/drawable/mvp_hot6ix_30px.png differ
diff --git a/app/src/main/res/drawable/mvp_hot6ix_45px.png b/app/src/main/res/drawable/mvp_hot6ix_45px.png
new file mode 100644
index 0000000..9bc0a13
Binary files /dev/null and b/app/src/main/res/drawable/mvp_hot6ix_45px.png differ
diff --git a/app/src/main/res/drawable/mvp_hot6ix_60px.png b/app/src/main/res/drawable/mvp_hot6ix_60px.png
new file mode 100644
index 0000000..442b5d7
Binary files /dev/null and b/app/src/main/res/drawable/mvp_hot6ix_60px.png differ
diff --git a/app/src/main/res/drawable/mvp_phoenix_30px.png b/app/src/main/res/drawable/mvp_phoenix_30px.png
new file mode 100644
index 0000000..404edf3
Binary files /dev/null and b/app/src/main/res/drawable/mvp_phoenix_30px.png differ
diff --git a/app/src/main/res/drawable/mvp_phoenix_45px.png b/app/src/main/res/drawable/mvp_phoenix_45px.png
new file mode 100644
index 0000000..9bc0a13
Binary files /dev/null and b/app/src/main/res/drawable/mvp_phoenix_45px.png differ
diff --git a/app/src/main/res/drawable/mvp_phoenix_60px.png b/app/src/main/res/drawable/mvp_phoenix_60px.png
new file mode 100644
index 0000000..442b5d7
Binary files /dev/null and b/app/src/main/res/drawable/mvp_phoenix_60px.png differ
diff --git a/app/src/main/res/drawable/natus_vincere_30px.png b/app/src/main/res/drawable/natus_vincere_30px.png
new file mode 100644
index 0000000..ab6b7cc
Binary files /dev/null and b/app/src/main/res/drawable/natus_vincere_30px.png differ
diff --git a/app/src/main/res/drawable/natus_vincere_45px.png b/app/src/main/res/drawable/natus_vincere_45px.png
new file mode 100644
index 0000000..b3fc402
Binary files /dev/null and b/app/src/main/res/drawable/natus_vincere_45px.png differ
diff --git a/app/src/main/res/drawable/natus_vincere_60px.png b/app/src/main/res/drawable/natus_vincere_60px.png
new file mode 100644
index 0000000..db9db7d
Binary files /dev/null and b/app/src/main/res/drawable/natus_vincere_60px.png differ
diff --git a/app/src/main/res/drawable/natus_vincere_us_45px.png b/app/src/main/res/drawable/natus_vincere_us_45px.png
new file mode 100644
index 0000000..c9cad18
Binary files /dev/null and b/app/src/main/res/drawable/natus_vincere_us_45px.png differ
diff --git a/app/src/main/res/drawable/natus_vincere_us_60px.png b/app/src/main/res/drawable/natus_vincere_us_60px.png
new file mode 100644
index 0000000..a7f880a
Binary files /dev/null and b/app/src/main/res/drawable/natus_vincere_us_60px.png differ
diff --git a/app/src/main/res/drawable/newbee_30px.png b/app/src/main/res/drawable/newbee_30px.png
new file mode 100644
index 0000000..86100a6
Binary files /dev/null and b/app/src/main/res/drawable/newbee_30px.png differ
diff --git a/app/src/main/res/drawable/newbee_45px.png b/app/src/main/res/drawable/newbee_45px.png
new file mode 100644
index 0000000..d489240
Binary files /dev/null and b/app/src/main/res/drawable/newbee_45px.png differ
diff --git a/app/src/main/res/drawable/newbee_60px.png b/app/src/main/res/drawable/newbee_60px.png
new file mode 100644
index 0000000..b819cd3
Binary files /dev/null and b/app/src/main/res/drawable/newbee_60px.png differ
diff --git a/app/src/main/res/drawable/ninjas_in_pyjamas_30px.png b/app/src/main/res/drawable/ninjas_in_pyjamas_30px.png
new file mode 100644
index 0000000..e916ef1
Binary files /dev/null and b/app/src/main/res/drawable/ninjas_in_pyjamas_30px.png differ
diff --git a/app/src/main/res/drawable/ninjas_in_pyjamas_45px.png b/app/src/main/res/drawable/ninjas_in_pyjamas_45px.png
new file mode 100644
index 0000000..97c4407
Binary files /dev/null and b/app/src/main/res/drawable/ninjas_in_pyjamas_45px.png differ
diff --git a/app/src/main/res/drawable/ninjas_in_pyjamas_60px.png b/app/src/main/res/drawable/ninjas_in_pyjamas_60px.png
new file mode 100644
index 0000000..11d998e
Binary files /dev/null and b/app/src/main/res/drawable/ninjas_in_pyjamas_60px.png differ
diff --git a/app/src/main/res/drawable/not_today_30px.jpeg b/app/src/main/res/drawable/not_today_30px.jpeg
new file mode 100644
index 0000000..03ba8fb
Binary files /dev/null and b/app/src/main/res/drawable/not_today_30px.jpeg differ
diff --git a/app/src/main/res/drawable/not_today_45px.jpeg b/app/src/main/res/drawable/not_today_45px.jpeg
new file mode 100644
index 0000000..f3500a5
Binary files /dev/null and b/app/src/main/res/drawable/not_today_45px.jpeg differ
diff --git a/app/src/main/res/drawable/not_today_60px.jpeg b/app/src/main/res/drawable/not_today_60px.jpeg
new file mode 100644
index 0000000..d8a4702
Binary files /dev/null and b/app/src/main/res/drawable/not_today_60px.jpeg differ
diff --git a/app/src/main/res/drawable/pokerface_30px.png b/app/src/main/res/drawable/pokerface_30px.png
new file mode 100644
index 0000000..521d43d
Binary files /dev/null and b/app/src/main/res/drawable/pokerface_30px.png differ
diff --git a/app/src/main/res/drawable/pokerface_45px.png b/app/src/main/res/drawable/pokerface_45px.png
new file mode 100644
index 0000000..7a2f7d3
Binary files /dev/null and b/app/src/main/res/drawable/pokerface_45px.png differ
diff --git a/app/src/main/res/drawable/pokerface_60px.png b/app/src/main/res/drawable/pokerface_60px.png
new file mode 100644
index 0000000..d23f96e
Binary files /dev/null and b/app/src/main/res/drawable/pokerface_60px.png differ
diff --git a/app/src/main/res/drawable/power_rangers_30px.jpeg b/app/src/main/res/drawable/power_rangers_30px.jpeg
new file mode 100644
index 0000000..e0f1711
Binary files /dev/null and b/app/src/main/res/drawable/power_rangers_30px.jpeg differ
diff --git a/app/src/main/res/drawable/power_rangers_45px.jpeg b/app/src/main/res/drawable/power_rangers_45px.jpeg
new file mode 100644
index 0000000..5aae185
Binary files /dev/null and b/app/src/main/res/drawable/power_rangers_45px.jpeg differ
diff --git a/app/src/main/res/drawable/power_rangers_60px.jpeg b/app/src/main/res/drawable/power_rangers_60px.jpeg
new file mode 100644
index 0000000..38b3deb
Binary files /dev/null and b/app/src/main/res/drawable/power_rangers_60px.jpeg differ
diff --git a/app/src/main/res/drawable/pulse_esports_30px.jpeg b/app/src/main/res/drawable/pulse_esports_30px.jpeg
new file mode 100644
index 0000000..9d7693f
Binary files /dev/null and b/app/src/main/res/drawable/pulse_esports_30px.jpeg differ
diff --git a/app/src/main/res/drawable/pulse_esports_45px.jpeg b/app/src/main/res/drawable/pulse_esports_45px.jpeg
new file mode 100644
index 0000000..4896339
Binary files /dev/null and b/app/src/main/res/drawable/pulse_esports_45px.jpeg differ
diff --git a/app/src/main/res/drawable/pulse_esports_60px.jpeg b/app/src/main/res/drawable/pulse_esports_60px.jpeg
new file mode 100644
index 0000000..c97c406
Binary files /dev/null and b/app/src/main/res/drawable/pulse_esports_60px.jpeg differ
diff --git a/app/src/main/res/drawable/qpad_red_pandas_30px.jpg b/app/src/main/res/drawable/qpad_red_pandas_30px.jpg
new file mode 100644
index 0000000..b385e14
Binary files /dev/null and b/app/src/main/res/drawable/qpad_red_pandas_30px.jpg differ
diff --git a/app/src/main/res/drawable/qpad_red_pandas_45px.jpg b/app/src/main/res/drawable/qpad_red_pandas_45px.jpg
new file mode 100644
index 0000000..e0d80b0
Binary files /dev/null and b/app/src/main/res/drawable/qpad_red_pandas_45px.jpg differ
diff --git a/app/src/main/res/drawable/qpad_red_pandas_60px.jpg b/app/src/main/res/drawable/qpad_red_pandas_60px.jpg
new file mode 100644
index 0000000..80cfe79
Binary files /dev/null and b/app/src/main/res/drawable/qpad_red_pandas_60px.jpg differ
diff --git a/app/src/main/res/drawable/quantic_gaming_30px.png b/app/src/main/res/drawable/quantic_gaming_30px.png
new file mode 100644
index 0000000..ec974de
Binary files /dev/null and b/app/src/main/res/drawable/quantic_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/quantic_gaming_45px.png b/app/src/main/res/drawable/quantic_gaming_45px.png
new file mode 100644
index 0000000..589950b
Binary files /dev/null and b/app/src/main/res/drawable/quantic_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/quantic_gaming_60px.png b/app/src/main/res/drawable/quantic_gaming_60px.png
new file mode 100644
index 0000000..4cb2697
Binary files /dev/null and b/app/src/main/res/drawable/quantic_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/rave_30px.png b/app/src/main/res/drawable/rave_30px.png
new file mode 100644
index 0000000..0563430
Binary files /dev/null and b/app/src/main/res/drawable/rave_30px.png differ
diff --git a/app/src/main/res/drawable/rave_45px.png b/app/src/main/res/drawable/rave_45px.png
new file mode 100644
index 0000000..99dd0f1
Binary files /dev/null and b/app/src/main/res/drawable/rave_45px.png differ
diff --git a/app/src/main/res/drawable/rave_60px.png b/app/src/main/res/drawable/rave_60px.png
new file mode 100644
index 0000000..f113979
Binary files /dev/null and b/app/src/main/res/drawable/rave_60px.png differ
diff --git a/app/src/main/res/drawable/shadows_of_the_past_30px.png b/app/src/main/res/drawable/shadows_of_the_past_30px.png
new file mode 100644
index 0000000..4a74273
Binary files /dev/null and b/app/src/main/res/drawable/shadows_of_the_past_30px.png differ
diff --git a/app/src/main/res/drawable/shadows_of_the_past_45px.png b/app/src/main/res/drawable/shadows_of_the_past_45px.png
new file mode 100644
index 0000000..4378f31
Binary files /dev/null and b/app/src/main/res/drawable/shadows_of_the_past_45px.png differ
diff --git a/app/src/main/res/drawable/shadows_of_the_past_60px.png b/app/src/main/res/drawable/shadows_of_the_past_60px.png
new file mode 100644
index 0000000..9cd1883
Binary files /dev/null and b/app/src/main/res/drawable/shadows_of_the_past_60px.png differ
diff --git a/app/src/main/res/drawable/sneaky_nyx_assassins_30px.png b/app/src/main/res/drawable/sneaky_nyx_assassins_30px.png
new file mode 100644
index 0000000..f9321e6
Binary files /dev/null and b/app/src/main/res/drawable/sneaky_nyx_assassins_30px.png differ
diff --git a/app/src/main/res/drawable/sneaky_nyx_assassins_45px.png b/app/src/main/res/drawable/sneaky_nyx_assassins_45px.png
new file mode 100644
index 0000000..a41dcf4
Binary files /dev/null and b/app/src/main/res/drawable/sneaky_nyx_assassins_45px.png differ
diff --git a/app/src/main/res/drawable/sneaky_nyx_assassins_60px.png b/app/src/main/res/drawable/sneaky_nyx_assassins_60px.png
new file mode 100644
index 0000000..356e64a
Binary files /dev/null and b/app/src/main/res/drawable/sneaky_nyx_assassins_60px.png differ
diff --git a/app/src/main/res/drawable/speed_gaming_30px.png b/app/src/main/res/drawable/speed_gaming_30px.png
new file mode 100644
index 0000000..fa5351b
Binary files /dev/null and b/app/src/main/res/drawable/speed_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/speed_gaming_45px.png b/app/src/main/res/drawable/speed_gaming_45px.png
new file mode 100644
index 0000000..1a4e88b
Binary files /dev/null and b/app/src/main/res/drawable/speed_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/speed_gaming_60px.png b/app/src/main/res/drawable/speed_gaming_60px.png
new file mode 100644
index 0000000..6c0117d
Binary files /dev/null and b/app/src/main/res/drawable/speed_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/team_coast_30px.png b/app/src/main/res/drawable/team_coast_30px.png
new file mode 100644
index 0000000..d8f06ef
Binary files /dev/null and b/app/src/main/res/drawable/team_coast_30px.png differ
diff --git a/app/src/main/res/drawable/team_coast_45px.png b/app/src/main/res/drawable/team_coast_45px.png
new file mode 100644
index 0000000..f298aa6
Binary files /dev/null and b/app/src/main/res/drawable/team_coast_45px.png differ
diff --git a/app/src/main/res/drawable/team_coast_60px.png b/app/src/main/res/drawable/team_coast_60px.png
new file mode 100644
index 0000000..8bdd87d
Binary files /dev/null and b/app/src/main/res/drawable/team_coast_60px.png differ
diff --git a/app/src/main/res/drawable/team_dignitas_30px.png b/app/src/main/res/drawable/team_dignitas_30px.png
new file mode 100644
index 0000000..89ab025
Binary files /dev/null and b/app/src/main/res/drawable/team_dignitas_30px.png differ
diff --git a/app/src/main/res/drawable/team_dignitas_45px.png b/app/src/main/res/drawable/team_dignitas_45px.png
new file mode 100644
index 0000000..23bb282
Binary files /dev/null and b/app/src/main/res/drawable/team_dignitas_45px.png differ
diff --git a/app/src/main/res/drawable/team_dignitas_60px.png b/app/src/main/res/drawable/team_dignitas_60px.png
new file mode 100644
index 0000000..e2e1866
Binary files /dev/null and b/app/src/main/res/drawable/team_dignitas_60px.png differ
diff --git a/app/src/main/res/drawable/team_dk_30px.png b/app/src/main/res/drawable/team_dk_30px.png
new file mode 100644
index 0000000..4e261d8
Binary files /dev/null and b/app/src/main/res/drawable/team_dk_30px.png differ
diff --git a/app/src/main/res/drawable/team_dk_45px.png b/app/src/main/res/drawable/team_dk_45px.png
new file mode 100644
index 0000000..8a2ce95
Binary files /dev/null and b/app/src/main/res/drawable/team_dk_45px.png differ
diff --git a/app/src/main/res/drawable/team_dk_60px.png b/app/src/main/res/drawable/team_dk_60px.png
new file mode 100644
index 0000000..1369a2d
Binary files /dev/null and b/app/src/main/res/drawable/team_dk_60px.png differ
diff --git a/app/src/main/res/drawable/team_ehug_30px.png b/app/src/main/res/drawable/team_ehug_30px.png
new file mode 100644
index 0000000..5ac55c2
Binary files /dev/null and b/app/src/main/res/drawable/team_ehug_30px.png differ
diff --git a/app/src/main/res/drawable/team_ehug_45px.png b/app/src/main/res/drawable/team_ehug_45px.png
new file mode 100644
index 0000000..335ada9
Binary files /dev/null and b/app/src/main/res/drawable/team_ehug_45px.png differ
diff --git a/app/src/main/res/drawable/team_ehug_60px.png b/app/src/main/res/drawable/team_ehug_60px.png
new file mode 100644
index 0000000..5fd3f4a
Binary files /dev/null and b/app/src/main/res/drawable/team_ehug_60px.png differ
diff --git a/app/src/main/res/drawable/team_empire_30px.png b/app/src/main/res/drawable/team_empire_30px.png
new file mode 100644
index 0000000..d17fc75
Binary files /dev/null and b/app/src/main/res/drawable/team_empire_30px.png differ
diff --git a/app/src/main/res/drawable/team_empire_45px.png b/app/src/main/res/drawable/team_empire_45px.png
new file mode 100644
index 0000000..c725a94
Binary files /dev/null and b/app/src/main/res/drawable/team_empire_45px.png differ
diff --git a/app/src/main/res/drawable/team_empire_60px.png b/app/src/main/res/drawable/team_empire_60px.png
new file mode 100644
index 0000000..56d2378
Binary files /dev/null and b/app/src/main/res/drawable/team_empire_60px.png differ
diff --git a/app/src/main/res/drawable/team_fire_30px.png b/app/src/main/res/drawable/team_fire_30px.png
new file mode 100644
index 0000000..37fa3fa
Binary files /dev/null and b/app/src/main/res/drawable/team_fire_30px.png differ
diff --git a/app/src/main/res/drawable/team_fire_45px.png b/app/src/main/res/drawable/team_fire_45px.png
new file mode 100644
index 0000000..3c5eb54
Binary files /dev/null and b/app/src/main/res/drawable/team_fire_45px.png differ
diff --git a/app/src/main/res/drawable/team_fire_60px.png b/app/src/main/res/drawable/team_fire_60px.png
new file mode 100644
index 0000000..d912c37
Binary files /dev/null and b/app/src/main/res/drawable/team_fire_60px.png differ
diff --git a/app/src/main/res/drawable/team_immunity_30px.jpeg b/app/src/main/res/drawable/team_immunity_30px.jpeg
new file mode 100644
index 0000000..6a13b9d
Binary files /dev/null and b/app/src/main/res/drawable/team_immunity_30px.jpeg differ
diff --git a/app/src/main/res/drawable/team_immunity_45px.jpeg b/app/src/main/res/drawable/team_immunity_45px.jpeg
new file mode 100644
index 0000000..b47818b
Binary files /dev/null and b/app/src/main/res/drawable/team_immunity_45px.jpeg differ
diff --git a/app/src/main/res/drawable/team_immunity_60px.jpeg b/app/src/main/res/drawable/team_immunity_60px.jpeg
new file mode 100644
index 0000000..ade3da8
Binary files /dev/null and b/app/src/main/res/drawable/team_immunity_60px.jpeg differ
diff --git a/app/src/main/res/drawable/team_liquid_30px.png b/app/src/main/res/drawable/team_liquid_30px.png
new file mode 100644
index 0000000..96e7826
Binary files /dev/null and b/app/src/main/res/drawable/team_liquid_30px.png differ
diff --git a/app/src/main/res/drawable/team_liquid_45px.png b/app/src/main/res/drawable/team_liquid_45px.png
new file mode 100644
index 0000000..9af2e66
Binary files /dev/null and b/app/src/main/res/drawable/team_liquid_45px.png differ
diff --git a/app/src/main/res/drawable/team_liquid_60px.png b/app/src/main/res/drawable/team_liquid_60px.png
new file mode 100644
index 0000000..5bcdbb7
Binary files /dev/null and b/app/src/main/res/drawable/team_liquid_60px.png differ
diff --git a/app/src/main/res/drawable/team_secret_30px.jpeg b/app/src/main/res/drawable/team_secret_30px.jpeg
new file mode 100644
index 0000000..98b5f24
Binary files /dev/null and b/app/src/main/res/drawable/team_secret_30px.jpeg differ
diff --git a/app/src/main/res/drawable/team_secret_45px.jpeg b/app/src/main/res/drawable/team_secret_45px.jpeg
new file mode 100644
index 0000000..b955837
Binary files /dev/null and b/app/src/main/res/drawable/team_secret_45px.jpeg differ
diff --git a/app/src/main/res/drawable/team_secret_60px.jpeg b/app/src/main/res/drawable/team_secret_60px.jpeg
new file mode 100644
index 0000000..62fffd6
Binary files /dev/null and b/app/src/main/res/drawable/team_secret_60px.jpeg differ
diff --git a/app/src/main/res/drawable/team_tinker_30px.png b/app/src/main/res/drawable/team_tinker_30px.png
new file mode 100644
index 0000000..c76db3c
Binary files /dev/null and b/app/src/main/res/drawable/team_tinker_30px.png differ
diff --git a/app/src/main/res/drawable/team_tinker_45px.png b/app/src/main/res/drawable/team_tinker_45px.png
new file mode 100644
index 0000000..5351ba7
Binary files /dev/null and b/app/src/main/res/drawable/team_tinker_45px.png differ
diff --git a/app/src/main/res/drawable/team_tinker_60px.png b/app/src/main/res/drawable/team_tinker_60px.png
new file mode 100644
index 0000000..9ea80be
Binary files /dev/null and b/app/src/main/res/drawable/team_tinker_60px.png differ
diff --git a/app/src/main/res/drawable/team_zenith_30px.png b/app/src/main/res/drawable/team_zenith_30px.png
new file mode 100644
index 0000000..7c52570
Binary files /dev/null and b/app/src/main/res/drawable/team_zenith_30px.png differ
diff --git a/app/src/main/res/drawable/team_zenith_45px.png b/app/src/main/res/drawable/team_zenith_45px.png
new file mode 100644
index 0000000..047b863
Binary files /dev/null and b/app/src/main/res/drawable/team_zenith_45px.png differ
diff --git a/app/src/main/res/drawable/team_zenith_60px.png b/app/src/main/res/drawable/team_zenith_60px.png
new file mode 100644
index 0000000..2150e5b
Binary files /dev/null and b/app/src/main/res/drawable/team_zenith_60px.png differ
diff --git a/app/src/main/res/drawable/team_zephyr_30px.png b/app/src/main/res/drawable/team_zephyr_30px.png
new file mode 100644
index 0000000..d34cc9d
Binary files /dev/null and b/app/src/main/res/drawable/team_zephyr_30px.png differ
diff --git a/app/src/main/res/drawable/team_zephyr_45px.png b/app/src/main/res/drawable/team_zephyr_45px.png
new file mode 100644
index 0000000..de4b5a7
Binary files /dev/null and b/app/src/main/res/drawable/team_zephyr_45px.png differ
diff --git a/app/src/main/res/drawable/team_zephyr_60px.png b/app/src/main/res/drawable/team_zephyr_60px.png
new file mode 100644
index 0000000..d287644
Binary files /dev/null and b/app/src/main/res/drawable/team_zephyr_60px.png differ
diff --git a/app/src/main/res/drawable/the_alliance_30px.png b/app/src/main/res/drawable/the_alliance_30px.png
new file mode 100644
index 0000000..54ebe95
Binary files /dev/null and b/app/src/main/res/drawable/the_alliance_30px.png differ
diff --git a/app/src/main/res/drawable/the_alliance_45px.png b/app/src/main/res/drawable/the_alliance_45px.png
new file mode 100644
index 0000000..679e761
Binary files /dev/null and b/app/src/main/res/drawable/the_alliance_45px.png differ
diff --git a/app/src/main/res/drawable/the_alliance_60px.png b/app/src/main/res/drawable/the_alliance_60px.png
new file mode 100644
index 0000000..71a0cde
Binary files /dev/null and b/app/src/main/res/drawable/the_alliance_60px.png differ
diff --git a/app/src/main/res/drawable/titan_esports_30px.png b/app/src/main/res/drawable/titan_esports_30px.png
new file mode 100644
index 0000000..98e07c2
Binary files /dev/null and b/app/src/main/res/drawable/titan_esports_30px.png differ
diff --git a/app/src/main/res/drawable/titan_esports_45px.png b/app/src/main/res/drawable/titan_esports_45px.png
new file mode 100644
index 0000000..73f9210
Binary files /dev/null and b/app/src/main/res/drawable/titan_esports_45px.png differ
diff --git a/app/src/main/res/drawable/titan_esports_60px.png b/app/src/main/res/drawable/titan_esports_60px.png
new file mode 100644
index 0000000..fa93706
Binary files /dev/null and b/app/src/main/res/drawable/titan_esports_60px.png differ
diff --git a/app/src/main/res/drawable/tongfu_30px.png b/app/src/main/res/drawable/tongfu_30px.png
new file mode 100644
index 0000000..b7f998f
Binary files /dev/null and b/app/src/main/res/drawable/tongfu_30px.png differ
diff --git a/app/src/main/res/drawable/tongfu_45px.png b/app/src/main/res/drawable/tongfu_45px.png
new file mode 100644
index 0000000..3f89b82
Binary files /dev/null and b/app/src/main/res/drawable/tongfu_45px.png differ
diff --git a/app/src/main/res/drawable/tongfu_60px.png b/app/src/main/res/drawable/tongfu_60px.png
new file mode 100644
index 0000000..8b2cdbe
Binary files /dev/null and b/app/src/main/res/drawable/tongfu_60px.png differ
diff --git a/app/src/main/res/drawable/union_gaming_30px.jpeg b/app/src/main/res/drawable/union_gaming_30px.jpeg
new file mode 100644
index 0000000..29608a9
Binary files /dev/null and b/app/src/main/res/drawable/union_gaming_30px.jpeg differ
diff --git a/app/src/main/res/drawable/union_gaming_45px.jpeg b/app/src/main/res/drawable/union_gaming_45px.jpeg
new file mode 100644
index 0000000..21f2398
Binary files /dev/null and b/app/src/main/res/drawable/union_gaming_45px.jpeg differ
diff --git a/app/src/main/res/drawable/union_gaming_60px.jpeg b/app/src/main/res/drawable/union_gaming_60px.jpeg
new file mode 100644
index 0000000..bb3adc0
Binary files /dev/null and b/app/src/main/res/drawable/union_gaming_60px.jpeg differ
diff --git a/app/src/main/res/drawable/unknown_30px.png b/app/src/main/res/drawable/unknown_30px.png
new file mode 100644
index 0000000..4e68273
Binary files /dev/null and b/app/src/main/res/drawable/unknown_30px.png differ
diff --git a/app/src/main/res/drawable/vici_gaming_30px.png b/app/src/main/res/drawable/vici_gaming_30px.png
new file mode 100644
index 0000000..988936f
Binary files /dev/null and b/app/src/main/res/drawable/vici_gaming_30px.png differ
diff --git a/app/src/main/res/drawable/vici_gaming_45px.png b/app/src/main/res/drawable/vici_gaming_45px.png
new file mode 100644
index 0000000..c9eb561
Binary files /dev/null and b/app/src/main/res/drawable/vici_gaming_45px.png differ
diff --git a/app/src/main/res/drawable/vici_gaming_60px.png b/app/src/main/res/drawable/vici_gaming_60px.png
new file mode 100644
index 0000000..a62d511
Binary files /dev/null and b/app/src/main/res/drawable/vici_gaming_60px.png differ
diff --git a/app/src/main/res/drawable/western_wolves_30px.png b/app/src/main/res/drawable/western_wolves_30px.png
new file mode 100644
index 0000000..fc026d2
Binary files /dev/null and b/app/src/main/res/drawable/western_wolves_30px.png differ
diff --git a/app/src/main/res/drawable/western_wolves_45px.png b/app/src/main/res/drawable/western_wolves_45px.png
new file mode 100644
index 0000000..c4e02bf
Binary files /dev/null and b/app/src/main/res/drawable/western_wolves_45px.png differ
diff --git a/app/src/main/res/drawable/western_wolves_60px.png b/app/src/main/res/drawable/western_wolves_60px.png
new file mode 100644
index 0000000..68677b3
Binary files /dev/null and b/app/src/main/res/drawable/western_wolves_60px.png differ
diff --git a/app/src/main/res/drawable/world_elite_30px.png b/app/src/main/res/drawable/world_elite_30px.png
new file mode 100644
index 0000000..b18d571
Binary files /dev/null and b/app/src/main/res/drawable/world_elite_30px.png differ
diff --git a/app/src/main/res/drawable/world_elite_45px.png b/app/src/main/res/drawable/world_elite_45px.png
new file mode 100644
index 0000000..3ede1e7
Binary files /dev/null and b/app/src/main/res/drawable/world_elite_45px.png differ
diff --git a/app/src/main/res/drawable/world_elite_60px.png b/app/src/main/res/drawable/world_elite_60px.png
new file mode 100644
index 0000000..3486908
Binary files /dev/null and b/app/src/main/res/drawable/world_elite_60px.png differ
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
index aa7331a..f22a234 100644
--- a/app/src/main/res/layout/activity_main.xml
+++ b/app/src/main/res/layout/activity_main.xml
@@ -1,25 +1,40 @@
-
+
+ android:layout_height="0dp"
+ android:layout_weight="1"
+ >
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content">
+
+
-
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/activity_main_list.xml b/app/src/main/res/layout/activity_main_list.xml
index 4d1be4a..3f432b2 100644
--- a/app/src/main/res/layout/activity_main_list.xml
+++ b/app/src/main/res/layout/activity_main_list.xml
@@ -1,50 +1,100 @@
-
+ android:orientation="vertical">
-
-
+ android:id="@+id/teamOneData">
+
+
+
+
-
+
+
+
+
+
+
+
+
+
+
+
+
- android:id="@+id/vs"/>
-
+ android:id="@+id/teamTwoData">
+
+
+
+
+
+
+
+
-
-
-
+
diff --git a/app/src/main/res/layout/activity_match_details.xml b/app/src/main/res/layout/activity_match_details.xml
index f356396..17f11f1 100644
--- a/app/src/main/res/layout/activity_match_details.xml
+++ b/app/src/main/res/layout/activity_match_details.xml
@@ -1,15 +1,82 @@
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/values/color.xml b/app/src/main/res/values/color.xml
index 90c002b..0998440 100644
--- a/app/src/main/res/values/color.xml
+++ b/app/src/main/res/values/color.xml
@@ -1,6 +1,7 @@
#FFF
+ #000
#D0D0D0
- #FF33B5E5
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index de79bf7..117df90 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -5,5 +5,7 @@
Hello world!
Settings
MatchDetailsActivity
+ ca-app-pub-3940256099942544/6300978111
+