Upgrading CPU!!!

Previously used cpu was G3258 overclocked to 4.5Ghz, the results were impressive for a so low priced cpu. The new one is i5-4690k with 4 Cores, 4 Threads. A good comparison among them http://cpu.userbenchmark.com/Compare/Intel-Pentium-G3258-vs-Intel-Core-i5-4690K/2434vs2432 http://cpuboss.com/cpus/Intel-Pentium-G3258-vs-Intel-Core-i5-4690K

IntentService Basics

https://code.tutsplus.com/tutorials/android-fundamentals-intentservice-basics–mobile-6183   Android Fundamentals: IntentService Basics by Shane Conder & Lauren Darcey14 Jun 2011 Difficulty:IntermediateLength:MediumLanguages:English Android SDKMobile Development This post is part of a series called Android Fundamentals. Android Fundamentals: Database Dates and Sorting Android Fundamentals: Picking App Components Today READ MORE

maps google

<uses-permission android:name=”ANDROID.PERMISSION.INTERNET” /> <uses-permission android:name=”ANDROID.PERMISSION.ACCESS_NETWORK_STATE” /> <uses-permission android:name=”android.permission.WRITE_EXTERNAL_STORAGE” /> <uses-permission android:name=”com.google.android.providers.gsf.permission.READ_GSERVICES”/> //access location of the phone <uses-permission android:name=”android.permission.ACCESS_COARSE_LOCATION”/> <uses-permission android:name=”android.permission.ACCESS_FINE_LOCATION”/> <application android:allowBackup=”true” android:icon=”@mipmap/ic_launcher” android:label=”@string/app_name” android:theme=”@style/AppTheme” > <meta-data android:name=”com.google.android.maps.v2.API_KEY” android:value=”AIzaSyAqhlJdujwA4_XYCVoDk0t3zG9H_TM3jZ4″/> <meta-data android:name=”com.google.android.gms.version” android:value=”@integer/google_play_services_version”/> </application> layout activity_map.xml <?xml version=”1.0″ encoding=”utf-8″?> <fragment xmlns:android=”http://schemas.android.com/apk/res/android” READ MORE