Friday, May 19, 2017

Integrate and use admob ads in an Android project using Kotlin

Add Admob interstitial using Kotlin Language


Google officialy support Now the Koltlin language , and almost of devloppers will migrate to this new born programming language , to build new android apps using kotlin or update their old apps.
in this short tutorial you will learn how to add admob interstital using Kotlin language , lets start to see how we can Integrate and use admob ads in an Android project using Kotlin.




The following steps are required to show interstitial ads

1: Import Google Mobile Ads Packages


import com.google.android.gms.ads.AdListener
import com.google.android.gms.ads.AdRequest
import com.google.android.gms.ads.InterstitialAd
import com.google.android.gms.ads.MobileAds

2: Initialize admob vars
internal lateinit var mInterstitialAd: InterstitialAd
internal lateinit var adRequest : AdRequest
Initialize The App ID 
MobileAds.initialize(this, "YOUR APP ID");
3: Starting ad request 
mInterstitialAd =  InterstitialAd(this);
mInterstitialAd.adUnitId = " YOUR INTERSTITIAL ID";

adRequest = AdRequest.Builder()

.build();

mInterstitialAd.loadAd(adRequest);

mInterstitialAd.adListener = object : AdListener() {


@Override public override fun onAdLoaded() {
requestNewInterstitial()
}
};
4: Creating the request function Inside the MainActivty kotlin class
fun requestNewInterstitial() {
if (mInterstitialAd.isLoaded) {
mInterstitialAd.show();
}
}




  •  MainActivity Kotlin class

package com.example.admobkotlin
import com.google.android.gms.ads.AdListener
import com.google.android.gms.ads.AdRequest
import com.google.android.gms.ads.InterstitialAd
import com.google.android.gms.ads.MobileAds

class MainActivity: BaseActivity() {
// Initialize Admob vars
internal lateinit var mInterstitialAd: InterstitialAd
internal lateinit var adRequest : AdRequest
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
// initialize your app ID
MobileAds.initialize(this, "YOUR APP ID");
// STARTING AD REQUEST
mInterstitialAd =  InterstitialAd(this);
mInterstitialAd.adUnitId = " YOUR INTERSTITIAL ID";
adRequest = AdRequest.Builder().build();
mInterstitialAd.loadAd(adRequest);
mInterstitialAd.adListener = object : AdListener() {


@Override public override fun onAdLoaded() {
requestNewInterstitial()
}
};
}
// Creating the Function that load the interstitial
fun requestNewInterstitial() {
if (mInterstitialAd.isLoaded) {
mInterstitialAd.show();
}
}
}
You can download the following source code for an mp3 player written with Kotlin Language  Kotlin app source code

Wednesday, April 5, 2017

Scream Game: sound game Unity Android

SCREAM GAME UNITY Source code
The first play with sound game template. Make the ninja move and jump on to platforms by making sounds. Control the ninja with your screams!!
Amongst Top trending games on Appstore.

Use Soft voice to move the ninja.
Use Loud voice / whistle /scream to make the ninja jump and control it with voices to land on the platform and score a point.
Make sure you make the ninja jump really high by making a loud voice / whistle / scream and control the movement to land.
Make sure you don’t disturb you neighbours by making crazy sounds.

  VIEW DEMO  To Download the source code Comment with your email 


Saturday, April 1, 2017

Fingerprint Lock screen For ALL Android devices

Fingerprint Lock screen -Reskin Source code
Real fingerprint lock screen and a finger security applock

Fingerprint lock screen is an appLock and Screen locker that will lock and protect screen using a fingerprint To unlock screen , is a real fingerprint lock screen but it can't identify really your fingerprints because fingerprints 
identification is a matter of hardwares more than softwares , so the applock use a technique to simulate the real fingerprint lock .

this fingerprint lock screen app is one among littles of best lock screen apps that use finger scanner to simulate 
your fingerprint and lock your screen seriously because the major of fingerprint lock screen apps can simulate the 
print but cant lock the screen (they just a prank).

After the lock screen download and install you will meet the first activity asking you to record a fingerprint ,
Press and hold the finger scanner,  Record you fingerprint at least 1 second or more as you want then activate the Fingerprint screen locker

      Ex : John press and hold the finger scanner for 2 seconds , Next John if want to unlock the screen he must  press and Hold the finger scanner for 2 seconds otherwise Access Denied 


App Features:

samsung fingerprint lock and other devices.
screen lock wallpaper animated
fingerprint scanner
simulate fingerprint reader to unlock device.
auto screen locker.
date and time ,notifications displayed on the lock screen as iPhone iOS lock screen style.
Multiple settings like enable/disable vibrate, enable/disable sound and time formation.
Supports android 2.3 + above android versions
Access Granted Sound,Access Denied Sound&Unlocking time.

NOTE :  this app is intended to simulate a fingerprint scanner and Android 6.1 , Android 7 devices only have this feature yet.and screen provided with  bio-metric fingerprint scanner . This technology supported from hardware level. but its a secure replacement for a real lock screen and for security purposes.




Reskin video and Source code Link : https://youtu.be/WBc7sR1zv0k

Wednesday, March 22, 2017

Pirate Adventures - pirates game android studio source code

Pirate Adventures - Adventures Android game nulled
Pirate Adventures - Adventures Android game nulled



Pirate Adventures is a new android games , download Pirate Adventure source code and enjoy building a game app for android .

New Adventure game source code come with many features and game play , this game app is one of the best android games of 2017 , the pirate adventure game  build on android studio game engine .
Pirates Adventures is a addictive game with simple gameplay.


tap the screen to move over the obstacles and get away the pirates!!!.achive best score ,collect distance stars and coins.
Download the free game source code with the full documentation - enjoy Pirate Adventures game for android .



Tuesday, March 14, 2017

Build You First HTML5 Mobile App Tutorial

Build An HTML5 Mobile Application using Adobe PhoneGap
We All Know That Building Mobile Apps made easy with the big collection of building tools that allow newbie developers to build Mobile Apps easy and without hard coding , HTML 5 Is on of the best tools for developers to build mobile apps based on web browsers compatible with all app stores on the internet Google play , Apple store, Amazon and others without making new build for each mobile operating system as we said "Write once run anywhere" , in this tutorial you will learn how to build HTML5 mobile app using PhoneGap by Adobe , its an easy way to build a mobile app without coding , but first you need to learn about HTML5 mobile apps VS Native mobile Apps to decide if you want to start building HTML5 mobile Apps . if is done lets start our tutorial :




Getting Started and prepare your self for :


  1. Install PhoneGap Desktop for developing your app
  2. Install The Mobile App For a complete preview for your App
  3. Create Your App
  4. Preview Your App
  5. Understanding and updating Code

Step 1: Install PhoneGap

The PhoneGap Desktop application provides you with a drag and drop interface for creating HTML5 applications. built for those who prefer a visual user interface , Select your operating system to Download : 





To install PhoneGap on windows Follow the steps below :
- Download the latest Windows Installer. you can also Download the zip file for the latest  release if you encounter troubleshoots with the windows installer .
- Double click the downloaded file to run the installer. You will be prompted with the PhoneGap Desktop Setup Wizard Click Next ,Accept,Next,Next,Install and You are Done and PhoneCap installed on your Window
PhoneGap Interface


- proceed to next step below where you will install the PhoneGap Developer App to your mobile device for    previewing the apps you build.




Step 2: Install Mobile App

The PhoneGap Developer App allows you to preview and test the HTML5 mobile apps you build across platforms without SDK setup. and without need to install plugins or compile codes locally. its an easy way for developers to build html5 mobile apps faster with an easy setup.

To Install PhoneGap Developer app download it from your supported app marketplaces and install it to your mobile device:


Once installed, Open PhoneGap App it should look like the image below :





For Now You are Ready To create Your First HTML5 Mobile App , you install PhoneGap Desktop and PhoneGap developer App to your Mobile device , The App project is a phonegap project with ability to run on multiple Mobile Os and Devices .


Step 3: Create Your  HTML5 Mobile App

To create Your HTML5 Mobile App Click the plus sign and select Create new PhoneGap project as shown in the image below:

a template list dialog ask you to choose to create an app based on a sample project,or start an empty project,select Hello World Then click Next , select The path of your Project and click finish , At this Moment you create your first HTML 5 Mobile Apps , See the Image below for More information how to creat a phonegap project.
  • Choose Local Path for your project 
  • Fill The AppName 
  • Fill The Id : Note that Id is your unique package for your app for ex : com.myfirsthtml5app.demo


if you are done with all of the above steps , You should see a windows like below image , with your new project shown and marked with a green play button next to it and a green bar at the bottom.
a running server and the active project note that only one project will be active







Step 4: Preview Your App

in this last step to creat an HTML5 Mobile App you can choose between to preview your app in the embedded web browser with PhoneGap desktop or to preview your device using the PhoneGap developer without installing platform SDKs, registering devices, or compiling code.

PhoneGap Desktop starts a small web server to host your project and returns a server address you can then enter into the PhoneGap Developer app running on your mobile device or in your desktop browser. The project is served automatically upon project creation, but you can also manually start any project that's inactive by clicking the green play ( > ) button next to it.


- Preview in a Desktop Browser

You can leverage your desktop browser to preview and test yours apps first to speed up your initial development process. For instance, if you're using a framework like Angular or React, there are tools available for specifically debugging those frameworks in the browser that can be quite helpful before moving over to a device. Recently PhoneGap began supporting the browser platform as a target automatically to help you test with the device ready event and Apache Cordova core plugins more easily in an environment you're already familiar with.


- Preview on a Device

Double check to ensure you're running your device and computer on the same network before continuing.
In the previous step we created a project and ensured it was running by looking for the green play button to be highlighted and a green bar showing the server address it's running on at the bottom of the PhoneGap Desktop.

The screenshot is shown again below for reference. Locate the specific server address for your project before moving to the next step.




Go to your mobile device where the PhoneGap Developer App is running, enter the server address on the main screen and tap Connect.

NOTE: Tap directly on the server address displayed in the terminal screen of the PhoneGap Developer app to change it to match yours. The value filled in by default is only a sample.



Click Connect and You should see A message on your screen with success! , the phonegap connect and load your application as shown on the image below :


STEP 5 : understanding the code and Making Updates to your application

to make an update codes its very easy you need just to Use your favorite text editor, notpad++ or sublime text and open up the index.html file located within the www folder of your project for instance ~/appSample/www/index.html

For example we want to change the PHONEGAP text that's displayed in the app


from <h1>PhoneGap</h1> to <h1>My First HTML5 App</h1>

(This text has a CSS uppercase transform applied to it in the default project). Save it when you're finished and move on to the next step.



check your device again and you will see your application reload and display the new text , if you are familiar with web devlopement the job is very easy you can creat a powerfull apps just by creating HTML and Css , Javascript , Jquery and add all in the root folder .

Build, Package and Distribute for Production

This getting started workflow is meant for beginning mobile application development with PhoneGap in the quickest and simplest manner. At some point you will want to move out of the sandbox environment and into a more advanced environment suitable for building, packaging and distributing your mobile application.
There are two choices available for building and packaging your applications:
  1. Build and package locally using the PhoneGap CLI
  2. Use PhoneGap Build cloud service for simplifying the build and app packaging process
Which you choose will depend on how comfortable you are working with a command line environment and more closely with the native SDKs and tools versus leaving it to a cloud service and providing the required details.

Apache Cordova

Adobe PhoneGap™ is a distribution of Apache Cordova™. Cordova was originally created by Nitobi, who was then acquired by Adobe in 2011. The project was donated to the Apache Software Foundation (ASF) later that same year to maintain a transparent and open governance and provide a mechanism for other large organizations to contribute. Apache Cordova is the engine that powers Adobe PhoneGap™, similar to how WebKit powers Chrome or Safari. However, Adobe PhoneGap™ provides additional tools that tie into other Adobe services, including tools like the PhoneGap Developer App, the PhoneGap Desktop App, PhoneGap Build and PhoneGap Enterprise.

HTML5 Mobile Apps and NATIVE mobile Apps : What's best ?

NATIVE APPS and HTML5 APPS
HTML5 Mobile Apps Or Native mobile App what's the best ?

Nowadays we know a big and rapidly increasing success of mobile app development, And many developers have devised new ways to quickly develop Mobile Application ,HTML5 is the one Of high-efficiency Technology in the Mobile industry tools , Yes you can build an android app or Os App using HTML 5 faster and easy than use other Oriented programming Language Like Java or C# ,HTML 5 know a big popularity as the leading easy tool for mobile app development , Now you can build an HTML 5 Application for Android or Apple operating system.
Before starting build an HTML 5 Mobile App We must answer This question :





HTML5 Mobile app vs Native  App Development: 

You need to face an important decision when you want to build a mobile app : 
Native or HTML 5 ? , i want to tell you that each one has its advantages , Native app is an application created to match a specific operating system Android or Os . otherwise an HTML 5 is a web application designed to run on web browser or a web view under any Operating system ,The debate continues with all of the giant of mobile industry Google,Apple,Microsoft , The Image below give detailed stats about propagation of mobile apps through app stores.



you can see that 75K of 1.25 million apps targeted for development in HTML5, so after you decide between native and HTML 5 take in consideration the following :


- User experiences: Only Native apps the best user experiences,sizing the full capabilities of the device and the Operating system.


-Security : HTML 5 mobile apps are not secure its like browsing a website you device is always risky to be attacked ,HTML5 mobile apps poses serious vulnerabilities is much easier to access an html5 app source code and corrupt it , otherwise native apps has no security issues , Generally Security isnt granted neither in HTML 5 app nor native app 'we know the latest CIA VAULT 7 that Wikileaks bring to front last days ' Which means CIA and other organisations spy on our devices .

-Monitization : you can monitize and HTML5 and Native app or Both.

-Compatibility : Native app must have a new build for every Operating system , Which means at less two programming languages Java for android Os , and OBJECTIF C for apple operating system , HTML 5 mobile app is compatible with all Mobile Operating system , one build is enough like Java said write once run anywhere .
two another questions : when you should choose HTML5 mobile apps development ?
and when you should choose Native apps development ?

The answer is choose HTML5 mobile apps developemnt when your users dont want to download your app , when your information is constantly updating,and when you dont want apple and google standing on your way . On the other side you need to choose native apps development when you want the better user experiences , monitizing your app , securing your data .


Thats All you need to Know About HTML 5 Mobile apps Vs Native Mobile Apps , So if you decide to develop An HTML5 App Go to build your first HTML5 Mobile App.








Saturday, March 11, 2017

Speed Race Game - Android Game Source Code + Admob Ads

Speed Race Game - Android Game Source Code
Speed Race Game - Android Game Source Code

Speed Race is a racing game source code for android, developed game using libgdx framework. Speed Race build with  stunning and high quality graphics that make it  addictive gameplay for android drive and avoid incoming traffic, collect power-ups, and kill other drivers is like playing death race android game.

- Bullet physic engine support and realistic car physic effect
- High quality gameplay design.
- Fast and Easy controle
- Game source code  can be imported by Eclipse
- Game with Admob Ads
- Tilt phone to control traffic direction 
- Tap screen to accelerate your car.


COMPATIBLE:
Compatible with old android devices from 2.0+
 Source Code Download Links:

http://hfiles.ro/download/speedracing.rar/1594697
http://www.mirrorcreator.com/files/CN1UTSKV/speedracing.rar_links
http://ul.to/xe9fp38f
http://www101.zippyshare.com/v/pLSEkWxV/file.html
https://www.solidfiles.com/v/yq3BANvPrwnrZ
https://userscloud.com/0ck8f4tlo0n6
http://www.mediafire.com/file/a44dbd1qnh8oso7/speedracing.rar
https://www.sendspace.com/file/afbwwj
http://www.megamirror.net/w9uoey4lis7o
https://openload.co/f/ezkMp2OIazI/speedracing.rar

Friday, March 10, 2017

Chat app source code for android

Chatt app source code for android
Complete Chat App source code with rich features and Web version

Qchatt is a Complete Chat App source code with full and rich features,downlod free source code for Qchat mobile version and web version , you can build a chatting app like whatssap and reskin it very easy . find new friends and communicate in real time. Full-featured, responsive website version .

so its time to build your own Instant Messaging App Like Whatsapp and messenger  just download the source code and reskin the Chat App ,app chat built in Android Studio. with a server side built in php MySQL and quick database Installation .


Application  Features:

  • Profile Photo/Cover
  • Profile Information
  • People Nearby
  • Search users
  • Friends System
  • Blocked List
  • Direct Messages with images/photos (Real time)
  • Submitting tickets to support from application
  • Abuse reports to users
  • Facebook login|sign up|connect|disconnect
  • Support Emoji
  • Push notifications
  • Personalize your notifications
  • AdMob banner
  • Multilanguage website
  • Responsive Website and Admin-Panel

Tuesday, February 14, 2017

Fast charging + battery saver : Fast Battery Charger 5X

Battery Charger and Android booster free source code

Battery Charger and Android booster free source code



Fast Battery Charger 5x is an application that provide a great support to your Phone with complete battery information. This amazing battery optimizer app have a Great Easy to Use User Interface and brilliant functions that support your phone by giving 50% more battery life. This optimize battery app will show the battery level as battery information. It can start working and saving battery life on one touch. This is great power manager tool for your device. It provides accurate battery status such as temperature, voltage and level. Provide battery details in a great Graphic interface.

Hey are you bored and tired by smartphone charging time..? No need to worried more just download this new and free fast battery charger for mobiles and tablets. Ultra fast charger just charge your mobile with single click. Very simple and easy to use touch charger. This efficient battery charger just close your network usage and stop all the background process automatically when you turn on fast charging mode. Are you ready to boost up charging and reduce charging time while you are using smartphones for internet, games or any other application. Then use super fast charge as this app will definitely help you with your battery charging problems. This instant battery charger works both on mobile and tablets. Also fast charger works on all android versions. Awesomely designed charging booster comparatively more efficient and easy to use on all battery charging apps that are available in market. Don't need to be fool with fake apps like fingerprint battery charger, solar battery charger or WiFi battery charger. This is real charging helper and ram cleaner when you plugged mobile charger.

Features:

1. Free of use do not need internet connection.
2. Automatically awaken when you plugged charger.
3. Automatically turn off Bluetooth.
4. Reduce screen brightness to minimum while charging.
5. Show alert to turn off mobile data if it is on.
6. Show alert when your mobile is fully charged.
7. Very smooth battery animation while charging.
8. Show battery percentage during charging.


How it works:

1. Just download free charging booster and ram optimizer.
2. Connect your charger and click button for fast charging mode.
3. Your mobile fully charged less than 20-30 minutes.
4. Close and share app when mobile charged fully.



Monday, January 30, 2017

ASO | App Store Optimization - SEO vs ASO

ASO | App Store Optimization
ASO | App Store Optimization


Many of newbie Android apps publishers ask An important question about How To rank an app in app store , The more popular app stores use sophisticated Rank algorithms , Google Play app store , apple app store And other app stores.

Listing of the app on app store isn't sufficient to get crowd, Ask your self before to submit an app to play store , how much apps published in app store , there are over 4 million mobile apps available on the major app stores and getting your app discovered is the nightmare of new apps publishers.

What is ASO - App store optimization ?

Like SEO (search engines optimization) To Rank website to first search results page ,ASO do the some job to Rank app in app stores , Aso or app store search optimization is a set of techniques to get app downloads and grow your app installs , that means gaining top most position in an app store's search results , boosting app downloads, reach a higher number of quality users and to increase revenue and get your app featured in top category results , App stores Rank algorithms focus on Important factors :

  • Ratings Volume
  • Ratings Value
  • Installs Volume 
  • Uninstalls Volume
  • Download growth: in last 30 days
  • App usage frequency - sessions
  • Backlinks To app


ASO vs SEO 

SEO ( Search Engine Optimizing ) is for Websites , ASO ( App Store Optimizing ) is for Mobile Apps.So lets elaborate , SEO is manipulating search algorithm to get better ranks for websites , used by the web developers and web marketers to optimize web site to increase search visibility (SERP) over various search engines like Google ,Yahoo , Bing etc . SEO is the easy way to get more organic traffic without spending a lot for ads. SEO include Backlinks,Blog Posting,Social Media Bookmarks etc

ASO is used to increase rank over app stores ( Google play store , Apple iTunes , Windows stores ) like if you search for ‘ Video Player ‘ #1 , #2 & #3 positioned app will have better chance to get downloaded by the users. Methods of doing ASO are Title Optimization , Descrption optimization , Screenshot optimization , Video etc.



Sunday, January 29, 2017

Snappy Stickers and PhotoFiltre + Admob

Snappy Stickers PhotoFiltre and Photo editor
Snap Stickers PhotoFiltre and Photo editor + Admob



Snap Stickers PhotoFiltre & Photo editor to make custom stickers  Make Funny Pictures ,Snap Stickers PhotoFiltre & Photo editor is one of the best photo editor app For Android For sticker printing and text printing,support all android devices , A set of new emoticons  and text to pictures, add emoticons and print stickers in one Tap , custom stickers and resizable emoticons to make funny pictures and Grow your instargram followers,Funny pictures make more followers and get likes , a set of new custom stickers emoticons and custom emojis we add new snap emojis ,and filters for pictures text to pictures also you can add photo label , using picture editor to add filters for photos - rainbow filter - face stickers - snap photo filters ,snap benefits by using this android picture editor ,free stickers for pictures a hundreds of personalized stickers,to snap funny picture using A rich android photo editor and new custom stickers design.



The picture editor include More than 100 New stickers you can add cartoon dog or dog face - Doggy Face and cute rabbit or morphing face , Just Take photo , crop picture and start editing photo print stickers like smily face - anime eyes  tears - face stickers - text to pictures , photo label ,this photo editor app include also a PhotoFiltre with a set of filters for pictures and photos effects stickers and filters make a an awesome picture and get more like more instargram followers by sharing you funny pictures Rich of stickers and emoticons , lets see how to edit photo using Snap Stickers PhotoFiltre & Photo editor add filters print stickers to make funny pic .

• Open Snap Stickers PhotoFiltre & Photo editor Then choose between Open gallery to start editing photo Or snap pic using selfies camera or camera sticker
• use picture editor to edit picture Zoom in Zoom out rotate pictures , crop it for real picture size or resize picture as your needs Then press select button .
  The photo editor include A tool bar categorized under Stickers Tab select between hundreds of custom stickers design and print stickers  like Love stickers - Monsters stickers -Alien Stickers- Love Text  or Angry emoticons,funny faces and snapchat  Emojis personalized stickers and custom Filters , The Frams Tab containe a set of HD Frames for pictures just snap picture and add Frames , The Filters Tab include A set  of new filters for pictures like smiley filters  in the PhotoFiltre Tab , To add text to pictures use Text Tap ther is a set of predifined texts to use write whats on your mind to add text to pictures .
• Save Pictures locat them in your android Phone or Sd-Card folder Named Camera sticker.
• share your photos on Instagram, Facebook and WhatsApp t or just save them to Camera sticker Folder.

Download

Thursday, January 5, 2017

Root and Unroot Samsung Galaxy Grand Neo Plus ,kingo root+odin3

 Root Samsung Galaxy Grand Neo Step by step
Root Samsung Galaxy Grand Neo Step by step



In this Tutorial you will learn How easily root Samsung Galaxy Grand neo plus,root phone step by step using kingo root,Odin3,KIES,on PC and using a file named boot.tar.md5 , You can also unroot Samsung using this methode to root android device.

Rooting an android device,root phone means that you can add softwares , remove bloatware , install unapproved apps , update android Os , show your sql databases , manage app cash and other folders , root device to record screen and more customizations for your device .
Now before to start root device or root phone download an save those root tool :


- Download Kingo root : [Download ##download##]

- Download Odin3  [Download ##download##]

- Download KIES [Download ##download##]

-Download boot.tar.md5  [Download ##download##]

Root Device step by step

1: Make a new folder on your desktop and name it : root tool past the downloaded root tools.
2: Open KIES3 root tool and connect your Phone by usb after identification success Disconnect USB.
3: Enable USB debugging , GO Settings >Developer option> check on USB debugging

Enable USB debugging







4: Shutdown your phone . (wait at least 8 seconds)
5: Boot into Download Mode , Press and Hold ( Volume Down + home key + power key )


Boot into Download Mode


6: Press Volume up To continue
7: Open Odin3 on your PC and connect the phone
8: click on PDA and choose boot.tar.md5 (the downloaded file )

click on PDA and choose boot.tar.md5

9   : Press Start and wait Odin finish, the phone will reboot Automatically (Wait few minutes).
10 : Install Kingo Root on your PC , Open KingoRoot and connect your phone by usb and wait until finish
11 : Click Remove Root if you want to unroot your phone Or Root Again if you want to root your phone

Remove Root