Nursery Rhymes Video Library

Thursday 12 March 2015

A New Free theme for Wordpress - Navsingh Theme

Here, comes a new free theme called Navsingh great looking Responsive theme, seo friendly, social integrated and lightweight.

Screenshot for Big screens.
Demo is available here: http://www.navsingh.org.uk/ the website itself uses the theme.



Screenshot for Mobile
(Responsive)


Thanks for Reading. Comments below


FIVE IMPORTANT APPS FOR ROOTED ANDROID DEVICE

This is the list of 5 must apps for rooted android phone –
must apps for rooted android

1- SUPERSU

must apps for rooted android
SuperSU allows for advanced management of Superuser access rights for all the apps on your device that need root. SuperSU has been built from the ground up to counter a number of problems with other Superuser access management tools.
Download here: 
SuperSU
Download @
Google Play
Developer: Chainfire
Price: Free 
Features include:
– Superuser access prompt
– Superuser access logging
– Superuser access notifications
– Per-app notification configuration
– Temporary unroot
– Deep process detection (no more unknowns)
– Works in recovery (no more segfaulting)
– Works when Android isn’t properly booted
– Works with non-standard shell locations
– Always runs in ghost mode
– Wake on prompt
– Convert to /system app
– Complete unroot
– Backup script to survive CyanogenMod nightlies
– Icon selectable from 5 options + invisible
– Theme selectable from 4 options

2- ROOT BROWSER

must have android apps for rooted android devices free - Root browser
Root Browser is the ultimate file manager for rooted users. Explore all of Android’s file systems and take control of your Android device
Download Here: 
Features include:
☆Two file manager panels
☆ Batch copy/paste, zip, tar, delete, move any file or folder
☆ Explore apk, rar, zip & jar files
☆ Change file permissions and ownership
☆ View and edit any file
☆ sqlite explorer
☆ Move, copy, rename, and delete files.
☆ Create and delete directories (folders).
☆ Send files by email.
☆ Add new files & folders in any directory
☆ Install zips using clockwork recovery
☆ Execute script files
☆ Show list of files with thumbnails for images.
☆ Bookmark any folder
☆ Open files and folders with other apps
☆ Change the theme (double tap home button)
☆ Sort by name, size & date
☆ Extract single files from zip/apks/jars
☆ Search for files or folders

3- TITANIUM BACKUP

titanium backup pro apk
Titanium Backup is the most powerful backup tool on Android, and then some.
Download Here:
You can backup, restore, freeze (with Pro) your apps + data + Market links. This includes all protected apps & system apps, plus external data on your SD card. You can do 0-click batch & scheduled backups. Backups will operate without closing any apps (with Pro). You can move any app (or app data) to/from the SD card. You can browse any app’s data and even query the Market to see detailed information about the app.

4-SYSTEM APP REMOVER

system app remover pro apk download
Their can be many apps that came pre-installed with your phone that you want to uninstall but cant do it.Not any more System App Remover helps you to remove bloatware from your phone and free up memory.
Download Here:

 5-GREENIFY

greenify pro apk download
Never should your phone or tablet become slower and battery hungrier after lots of apps installed. With Greenify, your device can run almost as smoothly and lastingly as it did the first day you had it!
Download Here:
Greenify
Download @
Google Play
Developer: Oasis Feng
Price: Free 
Greenify help you identify and put the misbehaving apps into hibernation when you are not using them, to stop them from lagging your device and leeching the battery, in an unique way! They can do nothing without explicit launch by you or other apps, while still preserving full functionality when running in foreground, similar to iOS apps!

Share your thoughts in comments below.Thanks
You may be interested in these 2 article: Top 10 Launchers for  Android or Must Have apps for Android

Thursday 19 June 2014

How to Show ads in Android

Step 1 :- Get Start app Developer id and app id.

Step 2 :- Create new project.

Step 3 :- Open Android Manifest file and add this permission and code.









For Start app in-app and Search Box ads this permission required.

<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<uses-permission android:name="android.permission.GET_TASKS"/>

add this code in application

<activity android:name="com.startapp.android.eula.EULAActivity"
android:theme="@android:style/Theme.Translucent"
android:configChanges="keyboard|keyboardHidden|orientation" />


<activity android:name="com.startapp.android.publish.list3d.List3DActivity"
android:taskAffinity="<package_name>.AppWall"
android:theme="@android:style/Theme" />


<activity android:name="com.startapp.android.publish.AppWallActivity"
android:theme="@android:style/Theme.Translucent" android:taskAffinity="<package_name>.AppWall"
android:configChanges="orientation|keyboardHidden" />


<meta-data android:name="com.startapp.android.DEV_ID" android:value="<Your Developer ID>"/>
<meta-data android:name="com.startapp.android.APP_ID" android:value="<Your App ID>"/>

Finally Android manifest.xml file look like below.

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

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

    <uses-permission android:name="android.permission.INTERNET" />
    <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
    <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
    <uses-permission android:name="android.permission.READ_PHONE_STATE" />
    <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
    <uses-permission android:name="android.permission.GET_TASKS" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.startapp.android.eula.EULAActivity"
            android:configChanges="keyboard|keyboardHidden|orientation"
            android:theme="@android:style/Theme.Translucent" />
        <activity
            android:name="com.startapp.android.publish.list3d.List3DActivity"
            android:taskAffinity="com.example.startapp.AppWall"
            android:theme="@android:style/Theme" />
        <activity
            android:name="com.startapp.android.publish.AppWallActivity"
            android:configChanges="orientation|keyboardHidden"
            android:taskAffinity="com.example.startapp.AppWall"
            android:theme="@android:style/Theme.Translucent" />

        <meta-data
            android:name="com.startapp.android.DEV_ID"
            android:value="107851386" />
        <meta-data
            android:name="com.startapp.android.APP_ID"
            android:value="208244013" />

        <activity
            android:name="com.example.startapp.MainActivity"
            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 4 :- Copy StartAppInApp-2.0.2 and  StartAppSearchBox-1.0.1 past in to your lib folder at your project.


Step 5 :- For Banner ads place this code in your xml file.

<com.startapp.android.publish.banner.Banner
android:id="@+id/startAppBanner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>


1. Adding a Standard Banner


<com.startapp.android.publish.banner.bannerstandard.BannerStandard
android:id="@+id/startAppStandardBanner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>

2. Adding a 3D Banner

<com.startapp.android.publish.banner.banner3d.Banner3D
android:id="@+id/startApp3DBanner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>



Step 6 :- Show Interstitial Ads

1. In your activity, create a member variable:

private StartAppAd startAppAd = new StartAppAd(this);


Note: The parameter of startAppAd constructor is the context (activity).


2. Override the onResume method and add the call to startAppAd.onResume():

@Override
public void onResume(){
super.onResume();
startAppAd.onResume();
}

Note: Add this call right after the call to super.onResume()


Showing Interstitials:

startAppAd.showAd(); // show the ad
startAppAd.loadAd(); // load the next ad


Example for showing an interstitial ad between activities:
public void btnOpenActivity (View view){
startAppAd.showAd();
startAppAd.loadAd();
Intent nextActivity = new Intent(this, NextActivity.class);
startActivity(nextActivity);
}

2. Show the Ad upon exit by pressing the 'back' button
Override the onBackPressed() method and add a call to the startAppAd.onBackPressed():


@Override
public void onBackPressed() {
startAppAd.onBackPressed();
super.onBackPressed();
}


Note: Place the startAppAd.onBackPressed()call BEFORE the super.onBackPressed()call.


3. Show the Ad upon exit by pressing 'home' button

The Home button functionality can improve results and revenue.
Override the onPause() method and add a call the startAppAd.onPause():


@Override
public void onPause() {
super.onPause();
startAppAd.onPause();


Step 7 :- Integrate the Search Box (optional)

In the OnCreate method of your activity, call the static function:


StartAppSearch.showSearchBox(this);


Step 8 :- StartApp Post Call Manager. 

1. import PostCallManagerLIB Project in your eclipse.

2. Add PostCallManagerLIB project to your lib project.

3. add permission in manifest file.

<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-permission android:name="android.permission.PROCESS_OUTGOING_CALLS" />
<uses-permission android:name="android.permission.READ_CONTACTS" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
<uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-feature android:name="android.hardware.telephony" android:required="false" />

Under the Application tag add your StartApp developer ID and app ID:

<meta-data android:name="com.startapp.android.DEV_ID" android:value="<Your Developer ID>"/>
<meta-data android:name="com.startapp.android.APP_ID" android:value="<Your App ID>"/>

<activity
android:name="com.startapp.android.eula.EULAActivity"
android:theme="@android:style/Theme.Translucent"
android:configChanges="keyboard|keyboardHidden|orientation" >
</activity>

<receiver
android:name="net.mz.callflakessdk.core.ReceiverCall"
android:enabled="true"
android:exported="true" >
<intent-filter android:priority="999" >
<action android:name="android.intent.action.PHONE_STATE" />
</intent-filter>
<intent-filter android:priority="999" >
<action android:name="android.intent.action.NEW_OUTGOING_CALL" />
</intent-filter>
</receiver>
<receiver
android:name="net.mz.callflakessdk.core.ReceiverPackageAdded"
android:enabled="true"
android:exported="true" >
<intent-filter android:priority="999" >
<action android:name="android.intent.action.PACKAGE_ADDED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<receiver
android:name="net.mz.callflakessdk.core.ReceiverPackageRemoved"
android:enabled="true"
android:exported="true" >
<intent-filter android:priority="999" >
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<service
android:name="net.mz.callflakessdk.core.ServiceBannerCaching"
android:enabled="true" >
</service>
<activity
android:name="net.mz.callflakessdk.core.ActivityCallTerminate"
android:configChanges="orientation|keyboardHidden"
android:windowSoftInputMode="adjustResize"
android:label="@string/app_name"
android:launchMode="singleInstance"
android:screenOrientation="portrait"
android:noHistory="true"
android:excludeFromRecents="true" >
</activity>
<activity
android:name="net.mz.callflakessdk.core.ActivityAdBannerURL"
android:label="@string/app_name"
android:windowSoftInputMode="stateUnchanged"
android:launchMode="singleTop"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="net.mz.callflakessdk.core.ActivityAds"
android:label="@string/app_name"
android:windowSoftInputMode="stateUnchanged"
android:launchMode="singleTop"
android:screenOrientation="portrait" >
</activity>

Step 9 :- Go to java file and add this line .

In the OnCreate method of your main activity, add the following line:

new PostCallManager(this).init();


Step 10 :- Run project.