Wednesday, 17 May 2017

FTS 2018 apk Data and Obb files for android

FTS or First soccer is a football android game with small size and great grafics, from here you can download the latest version of FTS 18 with apk obb and data files, also i will show you how to install it on any android.

Download FTS 2018 apk Data and Obb files for android
As i mentioned, FTS sports game is a small sized game (not exceeding 330mb) compared to other games in this category. Although it is simple and unprofessional, such as PES and FIFA, it has its own features, including that it currently does not need any additional data and you can install the game from a single apk file and easily.

FTS game requirements:

  • Operating System: Android Kit Kat 4.4 and newer
  • Android phone with 1GB in RAM at least to work well.
  • An empty storage space at least 500MB.
  • files explorer and/or decompressor app.

About FTS Game:

  • Last updated: 22/10/2016
  • Game Version: 2.09Mod
  • Game size: 271M

How to install FTS on Android:

Just like the similar Android games that have data files OBB and DATA with apk, in this game applied the same normal steps.
1. Download the compressed file that contains theFTS18 Apk file and the OBB data from the link below.
2. Unzip the compressed file you downloaded, which gives you an apk file and two folder obb and data:

Download and explain install football game FTS 2018 apk free for Android

3. Copy 'com.firsttouchgames.fts15' folder located in the OBB to / Android / OBB.
4. Copy 'com.firsttouchgames.fts15' folder located in the DATA to the Android / DATA.
5. Open FTS 18.APK file and install it on your phone.
6. Go back to your applications menu in your phone and open the game and enjoy!

Download FTS 2018 apk + DATA + OBB:

The new FTS 2018 apk is available free for all Android devices and with a single link that carries a zip file that includes everything you need to install the game, just download the file and continue the explanation above.

Sunday, 30 April 2017

Empire strike: Modern warlords









Empire strike: Modern warlords - create a powerful military emipre. Build military headquarters, enlarge your army, fight for the control over the world. In this Android game you can become a commander and ruler. Start your way from building your own base and making it stronger. Build barracks, workshops, research centers and other necessary objects. Enlarge number of infantry soldiers, artillery and other combat machinery. Defend your base from enemies. Attack bases of other players, expand your empire, make alliances.

Game features:

Huge map
Many combat units
Various constructions
Fight against other players

The game requires an Internet connection

DOWNLOAD LINK: http://tinyium.com/14n7

(41.47MB)

Thanks You
Ngway Zin Moe

Wednesday, 26 April 2017

Add Google AdMob Ads in Android Application & Earn Money

Want to Earn Money from Android Application? Yes, than you are on right place to get accurate method to earn money via android application. AdMob is the best mobile advertising site/company to fill your pocket in dollars. Initially, i don't have any idea to earn money via android apps but now i know how can i earn money from my android applications that's why I am sharing this method and hope everyone like it.
In this Tutorial, we will learn how to show Google AdMob Ads on Android Application step by step. We will need the following two things:-

1. Ad Unit Id from Admob site.
2. Google Play Services installed in Android SDK.

How to get Ad Unit Id from Admob site:-

1. Go to Admob site.

2. Create New Account (if you are already an admob user, then log in). 

3. Select "Monetize new app" option.
Admob monetize new app

4. Search your app on Google play or fill details manually of your app to connect.

Form to add app on Admob site

5. After filling all information, you will get instruction to set up admob unit id.

7. Now you have added your app to admob site. Go to Monetize tab and check your added app in "all app" list and than select your added app and create new ad-unit. Create ad-unit for banner or Interstitial Ads as you want in your application and get Ad Unit id which will look like this: ca-app-pub-xxxx71439079xxxx/270233xxxx.

8. Now use Ad Unit Id in your project.

How to get Google Play Services Folder:-

1. Open android SDK -> Click on Windows -> android SDK manager -> extras -> download Google play services.

Add Google AdMob Ads in Android Application
Install Google Play Service Packages

After installing Google Play services, import it in your workspace as an android project. Now we have Admob Ad Unit Id and Google play services both. Create a new project to test Ads on android application and use Google play services as a library in your android project.

How to Add Google AdSense code in Android Application:-

1. Now select project -> right click on project -> properties -> android -> add library -> select Google play services folder -> Apply.

How to add Google AdMob Ads in Android Application
Add Google Play Services Package As a Library

2. Open your android XML file and add the following line in layout:

xmlns:ads=http://schemas.android.com/apk/res-auto

3. Add AdView in Layout:

<com.google.android.gms.ads.AdView
 android:id="@+id/adView"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 ads:adSize="BANNER"
 ads:adUnitId="YOUR_AD_UNIT_ID"
/> 
4. The Android XML file will look like this:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 xmlns:ads="http://schemas.android.com/apk/res-auto"
 android:id="@+id/mainLayout"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
>
<com.google.android.gms.ads.AdView
 android:id="@+id/adView"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_alignParentBottom="true"
 android:layout_alignParentLeft="true"
 ads:adSize="BANNER"
 ads:adUnitId="Your_AD_UNIT_ID"
/>
</RelativeLayout>

5. Now open your Java file and initialize AdView Object in your Activity.

AdView ad=(AdView)findViewById(R.id.adView);

6. Load Ad from Google:

ad.loadAd(new AdRequest.Builder().build());

Now change AndroidManifest.xml file according to the code given in the end of the tutorial & run your project. Now install the application on your phone & check ads!

For Interstitial Ads:-

This Ad will be displayed on your complete phone screen.

1. Use the following code in your activity:

 InterstitialAd end_ad=new InterstitialAd(this);
    end_ad.setAdUnitId(getResources().getString(Your_AD_UNIT_ID));
    end_ad.loadAd(new AdRequest.Builder().build());

2. Show Ad if loaded:

if(end_ad.isLoaded())
          {
             end_ad.show();
          }

Now change AndroidManifest.xml file according to the code given in the end of the tutorial & run your project. Now install the application on your phone & check ads!

Now change AndroidManifest.xml file:

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

<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="18" />

<!-- Used to request banner and interstitial ads. -->
<uses-permission android:name="android.permission.INTERNET" />

<!-- Used to avoid sending an ad request if there is no connectivity. -->
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application
 android:allowBackup="true"
 android:icon="@drawable/ic_launcher"
 android:label="@string/app_name"
 android:theme="@style/AppTheme">

<meta-data
 android:name="com.google.android.gms.version"
 android:value="@integer/google_play_services_version" />

<activity
 android:name="com.example.Main_Activity"
 android:label="@string/app_name" >
<intent-filter>
 <action android:name="android.intent.action.MAIN" />
 <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<!-- Activity required to show ad overlays. -->
<activity
 android:name="com.google.android.gms.ads.AdActivity"
 android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"/>
</application>
</manifest>

Both above examples are used in the following Android applications: Helper+ & Namaz Guide

Mostly apps use Admob Ads in Listview and show Ads when Loaded. Initially, I was confused that how can I add Ads after successfully loading and finally I got success and felt it was very easy. I added AdView widget at bottom of the parent layout & set visibility gone and use Listview widget in whole layout. After setting up XML file, I used below code in Activity:-

ad=(AdView)findViewById(R.id.adView);
ad.setVisibility(View.GONE);
ad.loadAd(new AdRequest.Builder().build());

ad.setAdListener(new AdListener() {
 @Override
 public void onAdLoaded() {
  ad.setVisibility(View.VISIBLE);
 }
});

Related Tutorials:-

★ Display Time using Broadcast Receiver in Android

★ Check Battery level using Broadcast Receiver in Android

★ Display all Mobile Contacts in Android

★ Perform Action on any Hardware Button in Android

★ How to Add Facebook SDK in Android Application

Monday, 24 April 2017

Mortal Kombat X v1.11.1


Mortal Kombat X v1.11.1
Download Mortal Kombat X v1.11.1 Android free game.
Get full version of Android apk app Mortal Kombat X v1.11.1 for tablet and phone.
Screenshots of the Mortal Kombat X v1.11.1 for Android tablet, phone.
Loading video...
Loading video...

Game description: Mortal Kombat X v1.11.1:

Mortal Kombat X - the next game in a series of popular games developed by NetherRealm Studios. Ancient god Shinnok brought to life a new hero Kun Gin and legendary Liu Kan and Kung Lao to use them in his dark purposes. Fighters now can interact with the surroundings and use various objects as weapons. Each character has three different variations of fighting style and a set of unique techniques. Be ready for spectacular and bloody battles!

Game features:

  • Spectacular fights
  • New characters
  • Amazing soundtrack
  • Ultra modern graphics

Mortal Kombat Apk(24.4MB)

Mortal Kombat Obb(1.54GB)
CLICK HERE TO DIWNLOAD

NGWAY ZIN MOE

Friday, 21 April 2017

Sing! Karaoke by Smule 4.3.5

4.3.5 / April 14, 2017
 (4.1/5) (2016649)

Description

Sing your favorite hits with audio effects.Sing video duets with featured artists like Jessie J, Jason Derulo,and Linkin Park. Share your covers with our 50M+ global audienceand get fans!
Featured by Google Play as Best Apps 2014.

-----------
Features
- Self-recording option with video**
-Try out video filters: Selfie, Fight Club, Vintage, Black andWhite, Sepia**
- Sing like a star with audio effects!
- Share on our global platform - get discovered!
- Duet with featured pop artists - Jessie J, Jason Derulo, KylieMinogue, X Ambassadors, OMI, Carly Rae Jepsen, Charlie Puth,Silento and many more

**Video availability on different Android devices will beincremental over several weeks. When available onyour device model, video option will appear with no additionalupdate required. Please see the Sing! Android FAQ for theinitial list of devices that offervideo. http://www.smule.com/support/sing#android
-----------------------------------------------------
New songs added every day. Current most popular on Sing!:

** All of Me - John Legend
** Flashlight - Jessie J (from Pitch Perfect 2)
** I'm Not the Only One - Sam Smith
** Like I'm Gonna Lose You - Meghan Trainor, ft. John Legend
** All I Want For Christmas is You - Mariah Carey
** I'm Yours - Jason Mraz
** Thinking Out Loud - Ed Sheeran
** Dear Future Husband - Meghan Trainor
** When I Was Your Man - Bruno Mars
** Let It Go - Idina Menzel (from Frozen by Disney)
** Cups ("When I'm Gone") - Anna Kendrick
** Stay - Rihanna ft. Mikky Ekko
** Love me Like You Do - Ellie Goulding
** The Way, Break Free - Ariana Grande
** Anaconda, Pound the Alarm - Nicki Minaj
** I Won’t Give Up, I’m Yours – Jason Mraz
** Happy - Pharrell Williams
** Eye of the Tiger - Survivor

Want a song that's not yet available? Suggest songs on Smule’sFacebook page: www.facebook.com/smule

Want a song that's not yet available? Suggest songs on Smule’sFacebook page: www.facebook.com/smule

CONNECTING THE WORLD THROUGH MUSIC™ - JOIN THE KARAOKE PARTY
Find and follow your friends in Sing!, and meet incredible singersfrom all over the world. Sing your heart out on Solo songs, or joinup with others in Duets or Group songs. Keep up with your friendsand favorite singers, and love and comment on performances to showyour support.

BE DISCOVERED! GET FANS!
Lots of talents get discovered through our Sing! Karaoke platform.Show off your talent in front of 50M+ global audience and getfans

SOUND LIKE A STAR
Sound amazing every time with Sing!’s voice enhancement technology.Use special voice filters to spice up your performance even more.Sing! is a supportive, joyful community where music-making at alllevels is encouraged and appreciated.


http://www.smule.com
http://plus.google.com/+smule
http://www.facebook.com/smule
http://www.youtube.com/smule
http://www.twitter.com/smule

Have questions on a particular permission?http://www.smule.com/support/sing#android

Mobile Legends: Bang Bang






The description of Mobile Legends: Bang bang
Join your friends in a brand new 5v5 MOBA showdown against real human opponents, Mobile Legends! Choose your favorite heroes and build the perfect team with your comrades-in-arms! 10-second matchmaking, 10-minute battles. Laning, jungling, tower rushing, team battles, all the fun of PC MOBAs and action games in the palm of your hand! Feed your eSports spirit!
Mobile Legends, 2017’s brand new mobile eSports masterpiece. Shatter your opponents with the touch of your finger and claim the crown of strongest Challenger!
Your phone thirsts for battle!
Features: 
1. Classic MOBA Maps, 5v5 Battles 
Real-time 5v5 battles against real opponents. Fight over 3 lanes to take the enemy’s tower. 4 jungle areas. 18 defense towers. 2 Wild Bosses. Complete reproductions of classic MOBA maps. Full-on 5v5, Human vs. Human battles. A triumphant return to genuine MOBA gameplay.
2. Win with Teamwork & Strategy 
Block damage, control the enemy, and heal teammates! Choose from Tanks, Mages, Marksmen, Assassins, Supports, etc. to anchor your team or be match MVP! New heroes are constantly being released!
3. Fair Fights, Carry Your Team to Victory 
Just like classic MOBAs, there is no hero training or paying for stats. Winners and losers are decided based on skill and ability on this fair and balanced platform for competitive gaming. Play to Win, not Pay to Win.
4. Simple Controls, Easy to Master 
With a virtual joystick on the left and skill buttons on the right, 2 fingers are all you need to become a master! Autolock and target sifting allow you to last hit to your heart’s content. Never miss! And a convenient tap-to-equip system lets you focus on the thrill of battle!
5. 10 Second Matchmaking, 10 Minute Matches 
Matchmaking only takes 10 seconds, and battles last 10 minutes, glossing over the quiet early-game leveling up and jumping right into intense battles. Less boring waiting and repetitive farming, and more thrilling action and fist-pumping victories. At any place, at any moment, just pick up your phone, fire up the game, and immerse yourself in heart-pounding MOBA competition.
6. Smart Offline AI Assistance 
In most MOBAs, a dropped connection means hanging your team out to dry, but with Mobile Legends’s powerful reconnection system, if you get dropped, you can be back in the battle in seconds. And while you’re offline, your character will be controlled by our AI system to avoid a 5-on-4 situation.
Contact Us 
You can get customer service assistance via the [Contact Us] button in the game to help you with any problems you may encounter while playing. You can also find us on the following platforms. We welcome all of your Mobile Legends thoughts and suggestions:
Mobile Legends: Bang Bang

အဆင္​​ေျပပါ​ေစခင္​ဗ်ာ
Ngway Zin Moe(MONYWA)

Football Manager Mobile 2017 APK







Football Manager Mobile 2017 APK finally here on Andropalace. FM mobile 2017 APK Game arrived few days ago but now its been patched to work on Non Rooted android phones including Rooted phones as well. Its a premium soccer manager mobile game available with a price tag of $9.99 in the play store but you can get soccer manager mobile 2017 free from andropalace.

Football Manager Mobile 2017 APK 8.0 Free Download APK+DATA Latest Version

If you know me you know I am a huge football fan and in particular I support arsenal.i’m definitely one of those football fans who sits down to watch a football match on a Saturday or Sunday and instantly knows better than the managers.Now talking about the game Football Manager Mobile 2017 APK, football manager has been a great series every single game has improved in some respect 2016 was a fantastic game i thought there was very few floors with 2016 and when you come into 2017 there is no major changes.

It took me awhile to realize what the changes were and how the game has been and how the game has been changed. it feels like football manager 2016 in almost every aspect however it’s more of an evolved form of that game and what I mean by that is it’s a literally an array of small upgrades.game has become even more of a time eater this is because of the fact that instead of just basically setting your team tactics and setting the way you want them to play preseason and then letting them do it I’m only having to intervene with major incidents such as injury or transfers.

Football Manager Mobile 2017 APK is the fastest approach to deal with your picked club to transcendence. With similarity over the lion’s share of cell phones and tablets, FM Mobile 2017 is intended to be played on the go.

What’s In The MOD APK:-
Patched to work on All devices(License verification removed)

Requires Android: 4.0 and Up

Version: 8.0

MODE: OFFLINE

Download Link: Click Here To Download

Credit To: AndroPalace