Showing posts with label to. Show all posts
Showing posts with label to. Show all posts

Monday, March 27, 2017

Pokémon Shuffle 1 0 0 APK

,
Pokémon fans are in for a pretty cool treat today. Pokémon Shuffle has been released on Android and iOS for everyone. It is a whole new puzzle game where you line up three or more Pokémon vertically or horizontally to battle against wild Pokémon. As always, we provide you the APK file to install on your Android smartphone or tablet, you can download Pokémon Shuffle APK here!


In Pokémon Shuffle Mobile, all you have to do is select a Pokémon and its destination in the puzzle area to cause combos automatically. Its simple gameplay blends with challenging strategic aspects to appeal to a full spectrum of players from beginners to experts. You can play it casually—but battling, collecting, and leveling up Pokémon can also provide hours of fun.

The game released for free with in-app purchases to play on Android OS version 4.1 and higher. You can check it out on the Google Play Store now or download Pokémon Shuffle APK from the source link below.

Download Pokemon Shuffle

File name: jp.pokemon.poketoru
Requires Android: 4.1+ (Jelly Bean)
Pokémon Shuffle APK
Read more

Tuesday, November 8, 2016

Walking Dead Road to Survival 1 8 3 21628 APK

,
The makers of Mini Golf MatchUp, Scopely has released Walking Dead Road to Survival for Android. It is a new mobile game that lets players battle between life and the undead in the definitive Walking Dead Role Playing Game, where your decisions will determine who lives or dies. As always, there is APK file of the game below to install directly on Android phone and tablet for those of you who dont grab it on the Google Play Store.

Walking Dead Road to Survival APK

In Walking Dead: Road to Survival, you play to build the city, decide who will join your team, raid others for resources, options to choose the gameplay, determine who lives and who dies. You can recruit iconic survivors like Rick, Glenn and Michonne to join your team and break free from the reign of a madman.

An excellent mobile game for any TWD series and comic fan. The gameplay showing you the actual comic characters than in the show and then just random survivors you pick up from and the leveling up. The developers really did their work that bring the best of games its style without the crap like adds, low energy, or dumb mechanics. There is also some nice new features like collectable upgradeable units with upgradable equipment, its walking dead.

Walking Dead: Road to Survival is available free to download and play with in-app purchases. You can now check it out on the Google Play or download Walking Dead: Road to Survival apk file from the source link given below.

Download Walking Dead Road to Survival APK

File name: com.scopely.headshot
Requires Android: 2.3.3+ (Gingerbread)

Download Walking Dead Road APK
Read more

Tuesday, April 1, 2014

OpenGl code to make self rotating Triangle

,
This source code is for making a simple triangle which rotates itself.

OpenGL program:

#include<iostream>
#include<stdlib.h>

#ifdef __APPLE__
#include<openGL/openGL.h>
#include<GLUT/glut.h>
#else 
#include<GL/glut.h>
#endif

using namespace std;
void keyPress(unsigned char key,int x,int y)
{

    switch(key)
    {
       case 27:
            exit(0);     
    }
}

void initRendering()
{
    glEnable(GL_DEPTH_TEST);
}


//Called when the window is resized
void handleResize(int w, int h) {
    //Tell OpenGL how to convert from coordinates to pixel values
    glViewport(0, 0, w, h);
    
    glMatrixMode(GL_PROJECTION); //Switch to setting the camera perspective
    
    //Set the camera perspective
    glLoadIdentity(); //Reset the camera
    gluPerspective(45.0,                  //The camera angle
                   (double)w / (double)h, //The width-to-height ratio
                   1.0,                   //The near z clipping coordinate
                   200.0);                //The far z clipping coordinate
}



float _angle = 30.0f;
float _cameraAngle = 0.0f;


void drawScene()
{
    glClear(GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT);
   
    glMatrixMode(GL_MODELVIEW);
   
    glLoadIdentity();

    glPushMatrix(); //Save the transformations performed thus far

    glRotatef(_angle, -1.5f, 0.5f, -5.0f); //Rotate about the z-axis

    glBegin(GL_TRIANGLES);
   
        glVertex3f(-0.5f, 0.5f, -5.0f);
        glVertex3f(-1.0f, 1.5f, -5.0f);
        glVertex3f(-1.5f, 0.5f, -5.0f);

    glEnd();
    glPopMatrix(); //Undo the move to the center of the triangle

    glutSwapBuffers();
}

void update(int value) {
    _angle += 2.0f;
    if (_angle > 360) {
        _angle -= 360;
    }
   
    glutPostRedisplay(); //Tell GLUT that the display has changed
   
    //Tell GLUT to call update again in 25 milliseconds
    glutTimerFunc(25, update, 0);
}

int main(int argc,char** argv)
{
    glutInit(&argc,argv);
   
    glutInitDisplayMode(GLUT_DOUBLE|GLUT_RGB|GLUT_DEPTH);
   
    glutInitWindowSize(400,400);
   
    glutCreateWindow("My Triangle");
   
    initRendering();
   
    glutDisplayFunc(drawScene);
   
    glutKeyboardFunc(keyPress);

    glutReshapeFunc(handleResize);
   
    glutTimerFunc(25, update, 0); //Add a timer
   
    glutMainLoop();
   
    return(0);
}

//Output Of the above program:-

OpenGl code to make self rotating Triangle

Read more

How to add Google AdSense in Android Application

,
In this android tutorial, we will learn how to show Google Ads on Android Application. We will need the following two things: 
1. Ad Unit Id from Admob.com
2. Google Play Services installed in Android SDK.

 

How to get Ad Unit Id from admob.com:

1. Go to admob.com
2. Create New Account (if you are already an admob user, then log in).
3. Select Sites & Apps.
4. Select the Device like Android/iOS/Windows.
5. Fill The Description of Your Application -> OK.
6. Go to Sites & Apps.

How to add Google AdSense in Android Application
admob.com


7. Select Manage Application.

How to add Google AdSense in Android Application
Sites & Apps -> Manage Settings

8. Now you can see Ad Unit Id.

How to add Google AdSense in Android Application
Get Ad Unit Id(Publisher ID)

How to get Google Play Services Folder: 

 

1. Open android SDK -> Click on Windows -> android SDK manager -> extras -> download Google play services.
How to add Google AdSense in Android Application
Install Google Play Service Packages


Now we have Admob Ad Unit Id and Google play services folder. 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 AdSense 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:


<?xmlversion="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 the 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 phone screen.

 

1. Use the following code in your activity: 

    InterstitialAd end_ad=newInterstitialAd(this);
    end_ad.setAdUnitId(getResources().getString(“Your_AD_UNIT_ID”));
    end_ad.loadAd(newAdRequest.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:

<?xmlversion="1.0"encoding="utf-8"?>
<manifestxmlns: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-permissionandroid:name="android.permission.INTERNET"/>

<!-- Used to avoid sending an ad request if there is no connectivity. -->
<uses-permissionandroid: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>
<actionandroid:name="android.intent.action.MAIN"/>

<categoryandroid: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 the above examples are used in the following Android applications:

JMI SPI Converter

Namaz Guide in English

Download and test the APK File.
Please share and comment to improve this blog.
For more Android tutorials see List of Android Tutorials. Thanks to all.. :)
Read more
 

Download Android Game Copyright © 2016 -- Powered by Blogger