Skip to main content

Posts

Showing posts with the label android

Your android debug keystore file is missing [FIX]

  There must be some other ways to solve this error. But how i solved is simply adding this line of code in FacebookAndroidUtil.cs file System.Environment.GetEnvironmentVariable("G:\android\android-sdks") + @"\.android\debug.keystore" :    The problem was i had %HOMEPATH% environment variable in other drive(In G:/) and unity project in another drive. Then whenever Facebook SDK calls System.IO.File.Exists(DebugKeyStorePath), DebugKeyStorePath is actually wrong. That is because DebugKeyStorePath is searching in System.Environment.GetEnvironmentVariable("HOMEPATH") + @"\.android\debug.keystore" Which is wrong path to find the key. Solution Go to FacebookAndroidUtil.cs file, and on line 62 change the code from System.Environment.GetEnvironmentVariable("HOMEPATH") + @"\.android\debug.keystore" :  To System.Environment.GetEnvironmentVariable(" G:\android\android-sdks ") + System.Environment.GetEnvironm

Problems Switching Platform - No Android Module Loaded [Solved]

A short while ago I updated to 5.3.1 version of Unity and I realized that I now just can't build scenes or simply switch platforms to others and the one i desired to switch to was Android. I've got an android device that I connect to move the app to but it just shows No Android module loaded.   After searching stuff i noticed that i only downloaded unity editor , without its component :P , Then i go back to unity download archive and downloaded unity installer  Run Installer and select platforms you want build game on, simple   Check out its gif  Like and subscribe us for more :)

Google's Android Generates $31 Billion Revenue, Oracle Says

Google's Android Generates $31 Billion Revenue, Oracle Says Google Inc.’s Android operating system has produced income of $31 billion and $22 billion in profit, an attorney for Oracle Corp. mentioned in court while revealing figures Google claims should not have been made general public. An research of the search engine giant’s strongly used financial facts was revealed Jan. 14 by an Oracle lawyer in the repository maker’s lawsuit accusing Google of utilizing its Java software without having to pay for it to develop Android. Google noted in a court filing that the lawyer created her report on information produced by its private internal financial documents. “Look at the extraordinary magnitude of commerciality here,” the Oracle attorney, Annette Hurst, said a federal magistrate judge as she talked about Android revenue and profit, that have not ever been publicly disclosed. “Google does not publicly allocate revenues or profits to Android separ

Hiding the Navigation Bar in Android Unity

There a lots of way available to hide navigation bar from android apps, some are easy and some feels hard for newbies developers here today i am providing you some simple ways to hide navigation bar in android. For unity users i got very easy to use unity free asset to hide navigation bar get this cool asset now. https://www.assetstore.unity3d.com/en/#!/content/21774 After this i hope your problem will solved but if you still need some inside detail to work in script so here are official guide on this. https://developer.android.com/training/system-ui/immersive.html The main code from that official guide is here // This snippet hides the system bars. private void hideSystemUI () {     // Set the IMMERSIVE flag.     // Set the content to appear under the system bars so that the content     // doesn't resize when the system bars hide and show.     mDecorView . setSystemUiVisibility (             View . SYSTEM_UI_FLAG_LAYOUT_STABLE             | View . S

OpenGL Texture Size for Android and Iphone

Users with the unity Pro license can use any texture in the project. How big of a texture is dependent on the target device For IOS, (320x480 pixels for 1–3rd gen devices, 1024x768 for iPad mini/iPad 1st/2nd gen, 2048x1536 for iPad 3th/4th gen, 640x960 for 4th gen iPhone / iPod devices 640x1136 for 5th gen devices Max 4096x4096 iPhone 4S iPhone 5 iPad 2 iPad 3 For Android, Google Galaxy Nexus 2048 Google Nexus One 1024 / 2048 / 4096 Google Nexus S 2048 HTC One S 4096 LG P880 2048 Motorola Xoom 2048 Samsung Galaxy Tab 2048 Samsung Omnia2 2048 Samsung OmniaHD 2048 SonyEricsson Xperia Arc 4096 SonyEricsson Xperia Play 4096 SonyEricsson Xperia S 4096 T-Mobile G1 1024 provided textures can be scaled to match if required.

AdMob Unity Plugin FREE by Google Official

Must see: Latest AdMob Ad Unit ID, Things You Need To Know About AdMob Unity  Plugin AdMob is a mobile advertising company founded by Omar Hamoui.that helps app developers monetize and promote their mobile and tablet apps with ads. The name AdMob is a portmanteau for "advertising on mobile". It was incorporated in 2006 and is based in San Mateo, California. Wikipedia Founder : Omar Hamoui Founded : 2006 you should see these posts too free unity assets unity 2d water best unity plugins Requirements Make sure you have the  latest copy of the Android SDK  and that you're compiling against at least Android  v3.2  (set  target  in  project.properties  to  android-13 ). The Google Mobile Ads SDK for Android requires a run-time of Android  2.3  or later (set  android:minSdkVersion  to at least  9  in your  AndroidManifest.xml ). This means you can develop the latest version of the Android SDK and your app will still run on an earlier Android vers