So it turns out we need remove the [java] <item name="android:statusBarColor">@android:color/transparent</item>[/java] in styles.xml(v21).
Continue ReadingGoogle Admob implementation : Interstitial
Before Follow this tutorial please first complete the project configuration about how to integrate admob in android . GOOGLE ADMOB…
Continue ReadingUnity touch to swipe left right forward and back(down) : mobile input for android and IOS – Complete Script
[java] using UnityEngine; public class Swipe : MonoBehaviour { private Vector2 fingerDown; private Vector2 fingerUp; public bool detectSwipeOnlyAfterRelease = false;…
Continue ReadingExecution failed for task
‘:app:transformDexArchiveWithExternalLibsDexMergerForDebug’. > com.android.builder.dexing.DexArchiveMergerException: Unable to merge dex Error:Execution failed for task Solution : Step 1 : Clean Step 2 :…
Continue ReadingError:Execution failed for task
Error:Execution failed for task ‘:app:transformDexArchiveWithDexMergerForDebug’. > com.android.build.api.transform.TransformException: com.android.dex.DexException: Multiple dex files define Lcom/google/android/gms/internal/measurement/zzws; update the google-service plugin to: classpath…
Continue ReadingError:Execution failed for task ‘:app:processDebugGoogleServices’. > Please fix the version conflict either by updating the version of the google-services plugin (information about the latest version is available at https://bintray.com/android/android-tools/com.google.gms.google-services/) or updating the version of com.google.android.gms to 11.4.2.
Solution : Check all google version is same. If google play service is different then others then there may create…
Continue ReadingGoogle Admob implementation on android project
All are described here here https://developers.google.com/admob/android/quick-start. I am only arrange step by step procedure- Step 1 : Example project-level build.gradle…
Continue ReadingAndroid multiple runtime permission
Step -1 : Add the permissions on Menifest. [java] &amp;amp;amp;amp;amp;lt;uses-permission android:name="android.permission.RECORD_AUDIO" /&amp;amp;amp;amp;amp;gt; &amp;amp;amp;amp;amp;lt;uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /&amp;amp;amp;amp;amp;gt; &amp;amp;amp;amp;amp;lt;uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"&amp;amp;amp;amp;amp;gt;&amp;amp;amp;amp;amp;lt;/uses-permission&amp;amp;amp;amp;amp;gt; [/java] Step 2…
Continue ReadingUnity google admob implementation
Part 1 : Go to the git repository and download/clone it https://github.com/googleads/googleads-mobile-unity Part 2: Download unity google admob latest plugin…
Continue ReadingUnity play background music without restart the music when scene reloaded
Step 1: Create an empty game object named like BackgroundMusic. and add a tag name like “BackgroudMusic”. Step 2: Add…
Continue Reading