Wednesday, December 31, 2014

Real Steel WRB Cheats

Unlimited Gold and Silver Coins, All Robots Owned.                                                                                                                                                             Real Steel WRB Cheats
Real Steel WRB Cheatsclick on the image to see more screenshot

LAST UPDATED ON JANUARY 01, 2015

UPDATED VERSION
 • Real Steel World Robot Boxing v23.23.576 Cheats

OVERVIEW
 • Real Steel WRB game save file with Unlimited Gold and Silver Coins, All Robots Owned.
 • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices.
  • Real Steel WRB  version 13.13.260
  • Android 4.2.1 | 4.4.2

WARNING!!!
  • This will remove your current progress!
  • Root access is required!
  • Backup your game data!

LET'S DO IT
  • Force Stop your Real Steel WRB game | Don't clear data!
  • Download game save file
  • Extract to /data/data/ directory
  • Overwrite existing files.
  • Run your game and enjoy

IMPORTANT!
  • How to force stop game
  • How to extract game save to /data/data/ directory
  • How to get access to /data/data/ directory
  • How to backup game data
  • How to check root on your device

Age Of Wind 3 Cheats

Unlimited Golds, Unlimited Trophies.                                                                                                                                             Age Of Wind 3 Cheats
Age Of Wind 3 Cheatsclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 31, 2014

OVERVIEW
 • Age Of Wind 3 game save file with Unlimited Golds and Unlimited Trophies.
 • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices.
  • Age of wind 3 version 1.2.1
  • Android 4.2.1 | 4.4.2

WARNING!!!
  • This will remove your current progress!
  • Root access is required!
  • Backup your game data!

LET'S DO IT
  • Clear your Age Of Wind 3 game data
  • Download game save file
  • Extract to /data/data/ directory
  • Run your game and enjoy

IMPORTANT!
  • How to clear game data
  • How to extract game save to /data/data/ directory
  • How to get access to /data/data/ directory
  • How to backup game data
  • How to check root on your device

Tuesday, December 30, 2014

Zombie Age 2 Cheats

Unlimited Coins, Unlimited Cash, All Character Unlocked, All Weapons Owned and Fully Upgraded.                                                                                             Zombie Age 2 Cheats
Zombie Age 2 Cheatsclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 30, 2014

OVERVIEW
 • Zombie Age 2 game save file with Unlimited Coins, Unlimited Cash, All Character Unlocked, All Weapons Owned and Fully Upgraded.
 • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices.
  • Zombie Age 2 version 1.1.3
  • Android 4.2.1 | 4.4.2

WARNING!!!
  • This will remove your current progress!
  • Root access is required!
  • Backup your game data!

LET'S DO IT
  • Clear your Zombie Age 2 game data
  • Download game save file
  • Extract to /data/data/ directory
  • Run your game and enjoy

IMPORTANT!
  • How to Clear game data
  • How to extract game save to /data/data/ directory
  • How to get access to /data/data/ directory
  • How to backup game data
  • How to check root on your device

RecyclerView with onClick and onLongClick implemtation in android example

In the Previous Post, We have create list of items with RecyclerView using appcompat v7.

Now, we have implemented onclick event functionality in the previous post for each list item using stackoverflow link.

Now, I have update the code to latest Android Api RecyclerView default way of implementing
onClick and onLongClick on the each item.


Step 1: Create an Activity with recyclerview

CardViewActivity.java
package com.pratap.cardviews1;
import android.os.Bundle;
import android.support.v7.app.ActionBarActivity;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.RecyclerView;
import android.support.v7.widget.Toolbar;

public class CardViewActivity extends AppCompatActivity {

private Toolbar toolbar;

private RecyclerView mRecyclerView;
private RecyclerView.Adapter mAdapter;
private RecyclerView.LayoutManager mLayoutManager;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
toolbar = (Toolbar) findViewById(R.id.toolbar);

if (toolbar != null) {
setSupportActionBar(toolbar);
getSupportActionBar().setTitle("Android Versions");

}

final String[] myDataset = { "Alpha", "Beta", "CupCake", "Donut",
"Eclair", "Froyo", "Gingerbread", "Honeycomb",
"Ice Cream Sandwitch", "JellyBean", "KitKat", "LollyPop" };

mRecyclerView = (RecyclerView) findViewById(R.id.my_recycler_view);

// use this setting to improve performance if you know that changes
// in content do not change the layout size of the RecyclerView
mRecyclerView.setHasFixedSize(true);

// use a linear layout manager
mRecyclerView.setLayoutManager(new LinearLayoutManager(this));


// create an Object for Adapter
mAdapter = new CardViewDataAdapter(myDataset);

// set the adapter object to the Recyclerview
mRecyclerView.setAdapter(mAdapter);

}

}

Step 2:  Create an Adapter for the recycler with the class RecyclerView.Adapter


CardViewDataAdapter.java

package com.pratap.cardviews1;


import android.support.v7.widget.RecyclerView;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnLongClickListener;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;

public class CardViewDataAdapter extends
RecyclerView.Adapter<CardViewDataAdapter.ViewHolder> {
private static String[] mDataset;



// Provide a suitable constructor (depends on the kind of dataset)
public CardViewDataAdapter(String[] myDataset) {
mDataset = myDataset;

}

// Create new views (invoked by the layout manager)
@Override
public CardViewDataAdapter.ViewHolder onCreateViewHolder(ViewGroup parent,
int viewType) {
// create a new view
View itemLayoutView = LayoutInflater.from(parent.getContext()).inflate(
R.layout.cardview_row, null);

// create ViewHolder

ViewHolder viewHolder = new ViewHolder(itemLayoutView);
return viewHolder;
}

// Replace the contents of a view (invoked by the layout manager)
@Override
public void onBindViewHolder(ViewHolder viewHolder, int position) {

// - get data from your itemsData at this position
// - replace the contents of the view with that itemsData

viewHolder.tvVersionName.setText(mDataset[position].toString());

viewHolder.versionName=mDataset[position];

}

// Return the size of your dataset (invoked by the layout manager)
@Override
public int getItemCount() {
return mDataset.length;
}

// inner class to hold a reference to each item of RecyclerView
public static class ViewHolder extends RecyclerView.ViewHolder {

public TextView tvVersionName;

public String versionName;

public ViewHolder(View itemLayoutView) {
super(itemLayoutView);

tvVersionName = (TextView) itemLayoutView
.findViewById(R.id.tvVersionName);

itemLayoutView.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View v) {

Toast.makeText(v.getContext(), "OnClick Version :" + versionName,
Toast.LENGTH_SHORT).show();

}
});

itemLayoutView.setOnLongClickListener(new OnLongClickListener() {

@Override
public boolean onLongClick(View v) {

Toast.makeText(v.getContext(), "OnLongClick Version :" + versionName,
Toast.LENGTH_SHORT).show();
return true;

}
});

}

}

}


Step 3:

toolbar.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimaryDark"
android:minHeight="?attr/actionBarSize"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" >

</android.support.v7.widget.Toolbar>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#c9c9c9"
android:orientation="vertical" >

<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />

<android.support.v7.widget.RecyclerView
android:id="@+id/my_recycler_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:scrollbars="vertical" />

</LinearLayout>

Step 4:

cardview_row.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
card_view:cardCornerRadius="5dp"
card_view:cardUseCompatPadding="true" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp" >

<TextView
android:id="@+id/tvVersionName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:minHeight="55dp"
android:textColor="@android:color/black"
android:textSize="24sp" />
</RelativeLayout>

</android.support.v7.widget.CardView>


Step 5:

values/themes.xml

<resources>

<style name="AppTheme" parent="AppTheme.Base" />

<style name="AppTheme.Base" parent="Theme.AppCompat.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<!-- <item name="android:windowNoTitle">true</item>
<item name="windowActionBar">false</item> -->

</style>

</resources>

Step 6:

values-21/themes.xml

<resources>
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:windowContentTransitions">true</item>
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>
<item name="android:windowSharedElementEnterTransition">@android:transition/move</item>
<item name="android:windowSharedElementExitTransition">@android:transition/move</item>
</style>
</resources>

Step 7:

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.pratap.cardviews1"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".CardViewActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

Step 8:

Run the Application:

Download the Source Code

ScreenShots



recyclerview onclick
recyclerview onlongclick

Sunday, December 28, 2014

The Blockheads Cheat

The Blockheads Cheat - Unlimited Time Crystals.                                                     The Blockheads Cheat
The Blockheads Cheatclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 28, 2014

OVERVIEW
 • The Blockheads Game save file with Unlimited Time Crystals.
 • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices.
  • The Blockheads version 1.6.0.2
  • Android 4.2.1 | 4.4.2

WARNING!!!
  • This will remove your current progress!
  • Backup your game data!
  • Root access is required!

LET'S DO IT
  • Clear your The Blockheads game data
  • Download game save file
  • Extract to /data/data/ directory
  • Run your game and enjoy

IMPORTANT!
  • How to Clear game data
  • How to extract game save to /data/data/ directory
  • How to get access to /data/data/ directory
  • How to backup game data
  • How to check root on your device

How To Extract Game Save To /sdcard/Android/data/

How to extract game save file to /sdcard/Android/data/ directory using ES File Explorer.                                                    extract to /sdcard/Android/data/
extract to /sdcard/Android/data/

WORK FOR NON ROOTED DEVICES

DETAIL
  • This is required for some games to cheat
  • Select the correct sdcard if your device have internal sdcard (sdcard0) and external sdcard (sdcard1)

TESTED AND WORKS ON
  • Android 4.4.4
  • Android 4.4.2
  • Android 4.2.1
  • Lollipop

WARNING!!!
  • This will remove your current progress!
  • Backup your game data!
  • Not sure..., try on Bluestacks

LETS DO IT
  • Watch video below for detail steps!




HOW TO....
  • How to download game save file
  • How to root your phones
  • How to extract game save to /Android/data/
  • How to extract game save to /data/data/
  • How to get access to /data/data/
  • How to get bestselling cheap products  ads
  • How to backup game data
  • How to check root on your device

Friday, December 26, 2014

Zombie Road Racing Cheat

Zombie Road Racing Game save file with unlimited Coins, All vehicle unlocked and fully upgraded.                                                    Zombie Road Racing Cheat
Zombie Road Racing Cheatclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 26, 2014

OVERVIEW
  • Zombie Road Racing Game save file with unlimited Coins, All vehicle unlocked and fully upgraded.
  • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices.
  • Zombie Road Racing version 1.0.4
  • Android 4.2.1 | 4.4.2

WARNING !!!
  • This will remove your current progress!
  • Backup your game data.
  • Root access is required.

LET'S DO IT
  • CLEAR your Zombie Road Racing game data.
  • Download game save file
  • Extract to /data/data/
  • Run your game and enjoy

IMPORTANT!
  • How to CLEAR you game data
  • How to extract game save to /data/data directory
  • How To Get Read Write Access To System Directory
  • How to backup game data
  • How to check root access on your device

Thursday, December 25, 2014

Major Mayhem Cheat

Major Mayhem Game save file with unlimited Coins and Supplies.                                                    Major Mayhem Cheat
Major Mayhem Cheatclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 26, 2014

OVERVIEW
  • Major Mayhem Game save file with unlimited Coins and Supplies.
  • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices
  • Major Mayhem version 1.1.3
  • Android 4.2.1

WARNING !!!
  • This will remove your current progress!
  • Backup your game data.
         • Go to /sdcard/Android/data/
         • Find folder com.turner.asmajormayhem
         • Rename That folder to com.turner.asmajormayhem.bak
         • You can restore that folder if something goes wrong.
  • Root access NOT required.

LET'S DO IT
  • FORCE STOP your Major Mayhem game.
  • Download game save file
  • Extract to /sdcard/Android/data/
  • Run your game and enjoy

IMPORTANT!
  • How to FORCE STOP current game
  • How to extract game save to /sdcard/Android/data directory

Highway Rider Cheat

Highway Rider Game save file with unlimited Gas Caps and Boost Tanks.                                                    Highway Rider Cheat
Highway Rider Cheatclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 26, 2014

OVERVIEW
  • Highway Rider Game save file with unlimited Gas Caps and Boost Tanks.
  • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices
  • Highway Rider version 1.8.1
  • Android 4.2.1

WARNING !!!
  • This will remove your current progress!
  • Backup your game data.
  • Root access is required.

LET'S DO IT
  • CLEAR your Highway Rider game data.
  • Download game save file
  • Extract to /data/data/
  • Run your game and enjoy

IMPORTANT!
  • How to CLEAR you game data
  • How to extract game save to /data/data directory
  • How To Get Read Write Access To System Directory
  • How to backup game data
  • How to check root access on your device

Monday, December 22, 2014

Monster Shooter Cheat

Monster Shooter Game save file with unlimited Money and Gold.                                                    Monster ShooterCheat
Monster Shooter Cheatclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 22, 2014

OVERVIEW
  • Monster Shooter Game save file with unlimited Money and Gold.
  • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.

TESTED AND WORKS ON
  • Rooted Jiayu G5 phone and several devices
  • Monster Shooter version 1.70
  • Android 4.2.1

WARNING !!!
  • This will remove your current progress!
  • Backup your game data.
  • Root access is required.

LET'S DO IT
  • CLEAR your Monster Shooter game data.
  • Download game save file
  • Extract to /data/data/
  • Run your game and enjoy

IMPORTANT!
  • How to CLEAR you game data
  • How to extract game save to /data/data directory
  • How To Get Read Write Access To System Directory
  • How to backup game data
  • How to check root access on your device

Saturday, December 20, 2014

How to Backup up hardware key

If you have a industrial software which uses hardware key to authenticate the license, then it is very difficult to run the software without the key dongle plugged in. Their is a chance that the key might be stolen as it looks just like pen drive. If the key dongle is stolen, then the software will not run and you have to buy another license key dongle if  you are not under service contract.

In this article I'll describe you with the method by which you can backup your hardware dongle to enable you to run the software without the key dongle plugged in.

Note: All the steps has to be done while the dongle is plugged in and the application is running.

Step 1. Download Sentinel key reader Dumper.exe. This is used to dump the key file in the dongle which is otherwise impossible to read.

Note: This can only be used with Sentinel SuperPro/UltraPro keys. The best way to find whether your key is Sentinel is that when you run the application dumper.exe, it will not show the message as "Safenet dongle drivers are not installed".

Step 2. Open dumper.exe. Click on Dump as shown in figure. It will save a dump file in .bin format.




Step 3. Now Download Bin2Dng. It will converts .bin file generated in previous step to .dng format.



Step 4.  Open Bin2Dng.exe. Goto Sentinel tab and do as instructed in the figure.






Step 5. After properly doing all above steps .dng file is generated. Now download SentinelEmulator. This will emulate the .dng file as if the dongle is Plugged in the USB drive.

Step 6.  Do as instructed in the figures.





Step 7. After all the steps has been done, remove the dongle and restart the application that uses the dongle to verify itself. You will see, it did not required the dongle and still running.

 You can keep the dongle safe somewhere or use it to run the application in another PC.



Zombie Roadkill 3D Cheat

Zombie Roadkill 3D Game save file with unlimited Money.                                                    Zombie Roadkill 3D Cheat
Zombie Roadkill 3D Cheatclick on the image to see more screenshot

LAST UPDATED ON DECEMBER 20, 2014

OVERVIEW
  • Zombie Roadkill 3D game save file with 999999999 Money.
  • Why game save? - game save file is the easiest and safest cheat method, you can update the game after applied this cheat.


TESTED AND WORKS ON
  • Rooted Jiayu G5 phone
  • Zombie Roadkill 3D version 1.0.3
  • Android 4.2.1

WARNING !!!
  • This only patch your money, your progress will still remain!
  • Root access is required.

LET'S DO IT
  • FORCE STOP your Zombie Roadkill 3D game.
  • Download save game file
  • Extract to /data/data/
  • Overwrite existing files
  • Run your game and enjoy

IMPORTANT!
  • How to FORCE STOP current game
  • How to extract game save file

Friday, December 19, 2014

FarmVille 2: Country Escape Cheats

Unlimited Coins, Unlimited Keys, Unlimited Speed Seeds, Level 35                                                                                                                                                             FarmVille 2: Country Escape Cheats
 FarmVille 2: Country Escape Cheatsclick on the image to see more screenshot

UPDATED ON AUGUST 30, 2015

NEW VERSION
 • FarmVille 2: Country Escape v5.0.922 Cheats

DESCRIPTION
 • FarmVille 2: Country Escape v3.6.323 game save file
 • Unlimited Coins and Keys
 • Unlimited Speed Seeds
 • Level 35
 • Will work to any game version
 • You can update the game after applied this cheat
 • Also work for unrooted devices
 • Must be extracted using ES Explorer

TESTED AND WORKS ON
  • Android 4.4.4
  • Android 4.4.2
  • Android 4.2.1
  • Lollipop

WARNING!!!
  • This will remove your current progress!
  • Backup your game data!
  • Not sure..., try on Bluestacks

LET'S DO IT
  • Force stop game and clear data
  • Go to /Android/data/, find and delete folder com.zynga.FarmVille2CountryEscape.backup
  • Download game save file | at the bottom of this page
  • Extract to /Android/data/ 
  • Run your game and enjoy

IMPORTANT!
  • How to download game save file
  • How to force stop game
  • How to extract game save to /Android/data/
  • How to backup game data
  • How to find bestselling product  ads
  • How to to root your device
  • How to check root on your device

Thursday, December 18, 2014

MaterialColors

Material Design Colors

http://www.google.com/design/spec/style/color.html#color-color-palette


colors.xml

  1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="md_red_500_primary">#F44336</color>
<!-- light -->
<color name="md_red_50">#FFEBEE</color>
<color name="md_red_100">#FFCDD2</color>
<color name="md_red_200">#EF9A9A</color>
<color name="md_red_300">#E57373</color>
<color name="md_red_400">#EF5350</color>
<!-- dark -->
<color name="md_red_600">#E53935</color>
<color name="md_red_700">#D32F2F</color>
<color name="md_red_800">#C62828</color>
<color name="md_red_900">#B71C1C</color>

<!-- light -->
<color name="md_red_a100">#FF8A80</color>
<!-- dark -->
<color name="md_red_a200">#FF5252</color>
<color name="md_red_a400">#FF1744</color>
<color name="md_red_a700">#D50000</color>


<!-- PINK -->
<!-- dark -->
<color name="md_pink_500_primary">#E91E63</color>
<color name="md_pink_50">#FCE4EC</color>
<color name="md_pink_100">#F8BBD0</color>
<color name="md_pink_200">#F48FB1</color>
<color name="md_pink_300">#F06292</color>
<color name="md_pink_400">#EC407A</color>
<!-- dark -->
<color name="md_pink_600">#D81B60</color>
<color name="md_pink_700">#C2185B</color>
<color name="md_pink_800">#AD1457</color>
<color name="md_pink_900">#880E4F</color>

<!-- light -->
<color name="md_pink_A100">#FF80AB</color>
<!-- dark -->
<color name="md_pink_A200">#FF4081</color>
<color name="md_pink_A400">#F50057</color>
<color name="md_pink_A700">#C51162</color>


<!-- PURPLE -->
<!-- dark -->
<color name="md_purple_500_primary">#9C27B0</color>
<!-- light -->
<color name="md_purple_50">#F3E5F5</color>
<color name="md_purple_100">#E1BEE7</color>
<color name="md_purple_200">#CE93D8</color>
<!-- dark -->
<color name="md_purple_300">#BA68C8</color>
<color name="md_purple_400">#AB47BC</color>
<color name="md_purple_600">#8E24AA</color>
<color name="md_purple_700">#7B1FA2</color>
<color name="md_purple_800">#6A1B9A</color>
<color name="md_purple_900">#4A148C</color>

<!-- light -->
<color name="md_purple_A100">#EA80FC</color>
<!-- dark -->
<color name="md_purple_A200">#E040FB</color>
<color name="md_purple_A400">#D500F9</color>
<color name="md_purple_A700">#AA00FF</color>


<!-- DEEP PURPLE-->
<!-- dark -->
<color name="md_deep_purple_500_primary">#673AB7</color>
<!-- light -->
<color name="md_deep_purple_50">#EDE7F6</color>
<color name="md_deep_purple_100">#D1C4E9</color>
<color name="md_deep_purple_200">#B39DDB</color>
<!-- dark -->
<color name="md_deep_purple_300">#9575CD</color>
<color name="md_deep_purple_400">#7E57C2</color>
<color name="md_deep_purple_600">#5E35B1</color>
<color name="md_deep_purple_700">#512DA8</color>
<color name="md_deep_purple_800">#4527A0</color>
<color name="md_deep_purple_900">#311B92</color>

<!-- light -->
<color name="md_deep_purple_A100">#B388FF</color>
<!-- dark -->
<color name="md_deep_purple_A200">#7C4DFF</color>
<color name="md_deep_purple_A400">#651FFF</color>
<color name="md_deep_purple_A700">#6200EA</color>


<!-- INDIGO -->
<!-- dark -->
<color name="md_indigo_500_primary">#3F51B5</color>
<!-- light -->
<color name="md_indigo_50">#E8EAF6</color>
<color name="md_indigo_100">#C5CAE9</color>
<color name="md_indigo_200">#9FA8DA</color>
<!-- dark -->
<color name="md_indigo_300">#7986CB</color>
<color name="md_indigo_400">#5C6BC0</color>
<color name="md_indigo_600">#3949AB</color>
<color name="md_indigo_700">#303F9F</color>
<color name="md_indigo_800">#283593</color>
<color name="md_indigo_900">#1A237E</color>

<!-- light -->
<color name="md_indigo_A100">#8C9EFF</color>
<!-- dark -->
<color name="md_indigo_A200">#536DFE</color>
<color name="md_indigo_A400">#3D5AFE</color>
<color name="md_indigo_A700">#304FFE</color>


<!-- BLUE -->
<!-- dark -->
<color name="md_blue_500_primary">#2196F3</color>
<!-- light -->
<color name="md_blue_50">#E3F2FD</color>
<color name="md_blue_100">#BBDEFB</color>
<color name="md_blue_200">#90CAF9</color>
<color name="md_blue_300">#64B5F6</color>
<color name="md_blue_400">#42A5F5</color>
<!-- dark -->
<color name="md_blue_600">#1E88E5</color>
<color name="md_blue_700">#1976D2</color>
<color name="md_blue_800">#1565C0</color>
<color name="md_blue_900">#0D47A1</color>

<!-- dark -->
<color name="md_blue_A100">#82B1FF</color>
<!-- light -->
<color name="md_blue_A200">#448AFF</color>
<color name="md_blue_A400">#2979FF</color>
<color name="md_blue_A700">#2962FF</color>


<!-- LIGHT BLUE -->
<!-- dark -->
<color name="md_light_blue_500_primary">#03A9F4</color>
<!-- light -->
<color name="md_light_blue_50">#E1F5FE</color>
<color name="md_light_blue_100">#B3E5FC</color>
<color name="md_light_blue_200">#81D4FA</color>
<color name="md_light_blue_300">#4FC3F7</color>
<color name="md_light_blue_400">#29B6F6</color>
<!-- dark -->
<color name="md_light_blue_600">#039BE5</color>
<color name="md_light_blue_700">#0288D1</color>
<color name="md_light_blue_800">#0277BD</color>
<color name="md_light_blue_900">#01579B</color>

<!-- light -->
<color name="md_light_blue_A100">#80D8FF</color>
<color name="md_light_blue_A200">#40C4FF</color>
<color name="md_light_blue_A400">#00B0FF</color>
<!-- dark -->
<color name="md_light_blue_A700">#0091EA</color>


<!-- CYAN -->
<!-- dark -->
<color name="md_cyan_500_primary">#00BCD4</color>
<!-- light -->
<color name="md_cyan_50">#E0F7FA</color>
<color name="md_cyan_100">#B2EBF2</color>
<color name="md_cyan_200">#80DEEA</color>
<color name="md_cyan_300">#4DD0E1</color>
<color name="md_cyan_400">#26C6DA</color>
<!-- dark -->
<color name="md_cyan_600">#00ACC1</color>
<color name="md_cyan_700">#0097A7</color>
<color name="md_cyan_800">#00838F</color>
<color name="md_cyan_900">#006064</color>

<!-- light -->
<color name="md_cyan_A100">#84FFFF</color>
<color name="md_cyan_A200">#18FFFF</color>
<color name="md_cyan_A400">#00E5FF</color>
<color name="md_cyan_A700">#00B8D4</color>


<!-- TEAL -->
<!-- dark -->
<color name="md_teal_500_primary">#009688</color>
<!-- light -->
<color name="md_teal_50">#E0F2F1</color>
<color name="md_teal_100">#B2DFDB</color>
<color name="md_teal_200">#80CBC4</color>
<color name="md_teal_300">#4DB6AC</color>
<color name="md_teal_400">#26A69A</color>
<!-- dark -->
<color name="md_teal_600">#00897B</color>
<color name="md_teal_700">#00796B</color>
<color name="md_teal_800">#00695C</color>
<color name="md_teal_900">#004D40</color>

<!-- light -->
<color name="md_teal_A100">#A7FFEB</color>
<color name="md_teal_A200">#64FFDA</color>
<color name="md_teal_A400">#1DE9B6</color>
<color name="md_teal_A700">#00BFA5</color>

<!-- GREEN -->
<!-- dark -->
<color name="md_green_500_primary">#4CAF50</color>
<!-- light -->
<color name="md_green_50">#E8F5E9</color>
<color name="md_green_100">#C8E6C9</color>
<color name="md_green_200">#A5D6A7</color>
<color name="md_green_300">#81C784</color>
<color name="md_green_400">#66BB6A</color>
<!-- dark -->
<color name="md_green_600">#43A047</color>
<color name="md_green_700">#388E3C</color>
<color name="md_green_800">#2E7D32</color>
<color name="md_green_900">#1B5E20</color>

<!-- light -->
<color name="md_green_A100">#B9F6CA</color>
<color name="md_green_A200">#69F0AE</color>
<color name="md_green_A400">#00E676</color>
<color name="md_green_A700">#00C853</color>


<!-- LIGHT GREEN -->
<!-- dark -->
<color name="md_light_green_500_primary">#8BC34A</color>
<!-- light -->
<color name="md_light_green_50">#F1F8E9</color>
<color name="md_light_green_100">#DCEDC8</color>
<color name="md_light_green_200">#C5E1A5</color>
<color name="md_light_green_300">#AED581</color>
<color name="md_light_green_400">#9CCC65</color>
<color name="md_light_green_600">#7CB342</color>
<color name="md_light_green_700">#689F38</color>
<!-- dark -->
<color name="md_light_green_800">#558B2F</color>
<color name="md_light_green_900">#33691E</color>

<!-- light -->
<color name="md_light_green_A100">#CCFF90</color>
<color name="md_light_green_A200">#B2FF59</color>
<color name="md_light_green_A400">#76FF03</color>
<color name="md_light_green_A700">#64DD17</color>


<!-- LIME -->
<!-- light -->
<color name="md_lime_500_primary">#CDDC39</color>
<color name="md_lime_50">#F9FBE7</color>
<color name="md_lime_100">#F0F4C3</color>
<color name="md_lime_200">#E6EE9C</color>
<color name="md_lime_300">#DCE775</color>
<color name="md_lime_400">#D4E157</color>
<color name="md_lime_600">#C0CA33</color>
<color name="md_lime_700">#AFB42B</color>
<color name="md_lime_800">#9E9D24</color>
<!-- dark -->
<color name="md_lime_900">#827717</color>

<!-- light -->
<color name="md_lime_A100">#F4FF81</color>
<color name="md_lime_A200">#EEFF41</color>
<color name="md_lime_A400">#C6FF00</color>
<color name="md_lime_A700">#AEEA00</color>


<!-- YELLOW -->
<!-- light -->
<color name="md_yellow_500_primary">#FFEB3B</color>
<color name="md_yellow_50">#FFFDE7</color>
<color name="md_yellow_100">#FFF9C4</color>
<color name="md_yellow_200">#FFF59D</color>
<color name="md_yellow_300">#FFF176</color>
<color name="md_yellow_400">#FFEE58</color>
<color name="md_yellow_600">#F9A825</color>
<color name="md_yellow_700">#FBC02D</color>
<color name="md_yellow_800">#F9A825</color>
<color name="md_yellow_900">#F57F17</color>

<color name="md_yellow_A100">#FFFF8D</color>
<color name="md_yellow_A200">#FFFF00</color>
<color name="md_yellow_A400">#FFEA00</color>
<color name="md_yellow_A700">#FFD600</color>


<!-- Amber -->
<!-- light -->
<color name="md_amber_500_primary">#FFC107</color>
<color name="md_amber_50">#FFF8E1</color>
<color name="md_amber_100">#FFECB3</color>
<color name="md_amber_200">#FFE082</color>
<color name="md_amber_300">#FFD54F</color>
<color name="md_amber_400">#FFCA28</color>
<color name="md_amber_600">#FFB300</color>
<color name="md_amber_700">#FFA000</color>
<color name="md_amber_800">#FF8F00</color>
<color name="md_amber_900">#FF6F00</color>

<color name="md_amber_A100">#FFE57F</color>
<color name="md_amber_A200">#FFD740</color>
<color name="md_amber_A400">#FFC400</color>
<color name="md_amber_A700">#FFAB00</color>


<!-- ORANGE -->
<!-- light -->
<color name="md_orange_500_primary">#FF9800</color>
<color name="md_orange_50">#FFF3E0</color>
<color name="md_orange_100">#FFE0B2</color>
<color name="md_orange_200">#FFCC80</color>
<color name="md_orange_300">#FFB74D</color>
<color name="md_orange_400">#FFA726</color>
<color name="md_orange_600">#FB8C00</color>
<color name="md_orange_700">#F57C00</color>
<!-- dark -->
<color name="md_orange_800">#EF6C00</color>
<color name="md_orange_900">#E65100</color>

<!-- light -->
<color name="md_orange_A100">#FFD180</color>
<color name="md_orange_A200">#FFAB40</color>
<color name="md_orange_A400">#FF9100</color>
<color name="md_orange_A700">#FF6D00</color>


<!-- DEEP ORANGE-->
<!-- dark -->
<color name="md_deep_orange_500_primary">#FF5722</color>
<!-- light -->
<color name="md_deep_orange_50">#FBE9E7</color>
<color name="md_deep_orange_100">#FFCCBC</color>
<color name="md_deep_orange_200">#FFAB91</color>
<color name="md_deep_orange_300">#FF8A65</color>
<color name="md_deep_orange_400">#FF7043</color>
<!-- dark -->
<color name="md_deep_orange_600">#F4511E</color>
<color name="md_deep_orange_700">#E64A19</color>
<color name="md_deep_orange_800">#D84315</color>
<color name="md_deep_orange_900">#BF360C</color>

<color name="md_deep_orange_A100">#FF9E80</color>
<color name="md_deep_orange_A200">#FF6E40</color>
<!-- light -->
<color name="md_deep_orange_A400">#FF3D00</color>
<color name="md_deep_orange_A700">#DD2C00</color>


<!-- BROWN -->
<!-- dark -->
<color name="md_brown_500_primary">#795548</color>
<!-- light -->
<color name="md_brown_50">#EFEBE9</color>
<color name="md_brown_100">#D7CCC8</color>
<color name="md_brown_200">#BCAAA4</color>
<!-- dark -->
<color name="md_brown_300">#A1887F</color>
<color name="md_brown_400">#8D6E63</color>
<color name="md_brown_600">#6D4C41</color>
<color name="md_brown_700">#5D4037</color>
<color name="md_brown_800">#4E342E</color>
<color name="md_brown_900">#3E2723</color>

<!-- GREY -->
<!-- light -->
<color name="md_grey_500_primary">#9E9E9E</color>
<color name="md_grey_50">#FAFAFA</color>
<color name="md_grey_100">#F5F5F5</color>
<color name="md_grey_200">#EEEEEE</color>
<color name="md_grey_300">#E0E0E0</color>
<color name="md_grey_400">#BDBDBD</color>
<!-- dark -->
<color name="md_grey_600">#757575</color>
<color name="md_grey_700">#616161</color>
<color name="md_grey_800">#424242</color>
<color name="md_grey_900">#212121</color>


<!-- BLUE GRAY -->
<!-- dark -->
<color name="md_blue_grey_500_primary">#607D8B</color>
<!-- light -->
<color name="md_blue_grey_50">#ECEFF1</color>
<color name="md_blue_grey_100">#CFD8DC</color>
<color name="md_blue_grey_200">#B0BEC5</color>
<color name="md_blue_grey_300">#90A4AE</color>
<!-- dark -->
<color name="md_blue_grey_400">#78909C</color>
<color name="md_blue_grey_600">#546E7A</color>
<color name="md_blue_grey_700">#455A64</color>
<color name="md_blue_grey_800">#37474F</color>
<color name="md_blue_grey_900">#263238</color>

<color name="md_black">#000000</color>
<color name="md_white">#FFFFFF</color>

</resources>