General :: Disable SD Card Emulation?

May 2, 2013

My phone has alot of build in memory, so it emulates an SD card. But that runs out of space fast.

I have an SD card in it now, but it's mounted as sdcard2.

Can I disable the emulated SD card and make it goto the real sd card?

I can't move apps to the sd card because the sd card is emulated. Programs like link2sd don't give me the option to choose where I want to install to. It just chooses /mnt/sd card, which is the emulated card, not /mnt/sdcard2, which is the real one.

General :: disable SD Card emulation?


General :: Rom Emulation Before Flashing

Oct 9, 2012

Ive been learning to build roms and ive created a few of my own but im tired of taking up so much space on my phone and flashing multiple roms. I want to know if there is an Android ROM Emulator that i can run on windows 7 to test the rom before i flash it,

View 1 Replies View Related

General :: Bluetooth Keyboard Setup For Emulation

Mar 14, 2013

I use a bluetooth keyboard to type papers on, and was wondering if it's possible to use it in say SNES9x+ES or Mupen64AE or emulators in general? I'm currently waiting on a replacement keyboard from Sony so I can't test my emulators with it, if they can be used for emulators.

View 2 Replies View Related

Android :: GPS Emulation

Apr 28, 2009

I am currently trying to simulate GPS fixs with android emulator, but I encountered some problems. I can run the app, clic on the send button in the emulator control, but, only the first click provides a position. I am running an ubuntu jaunty, eclipse and SDK 1.5, on a french system with the locale EN_US

Here is my code :...........

View 4 Replies View Related

Samsung Galaxy S :: GBA Emulation

Jul 6, 2010

What's it like on the SGS? I have an iPhone 3g now and have had an iPhone for 29months, getting a bit old. I'm just playing around with GBA Emulation on it now and really like the idea. I guess the screen on the SGS would be an advantage, it's this or an iPhone 4. Advantage being I can get an iPhone 4 for a 12mo contract, and make a profit over that contract compared to what I'm paying now, even with the cost of the handset. But the SGS seems like a superb phone and I'm a bit bored of iOS. Is there anyway to revert the SGS to stock android? So you could just update to Froyo whenever? What are the really cool things about the phone?

View 4 Replies View Related

Android :: Bad OpenGL Emulation

Aug 19, 2009

I'm developing a new game and have been having inconsistencies between the device and emulator. The biggest one for me right now is that the elements I draw with an orthographic projection work correctly on the device, but are 1/2 the size on the emulator. I've checked and rechecked the code 100 times and I'm positive I've done it right but am confused as to why I'm seeing that result. I suppose I could go forward doing ALL testing on a device - and I may have to, seeing that the emulator's frame rate is horribly slow - but I was hoping that I could do some of the work on it at least.

View 15 Replies View Related

Games :: Best Phone For Emulation

Nov 12, 2010

So it's that wonderul time again for me to renew my tmobile service and get a new phone, and i've narrowed it down to the mytouch slide and the samsung vibrant. Now I just want to get some opinions on which you all think would be better for emulation. The issues I see are:

The vibrant doesn't have a physical keyboard which is much more preferrable than touch controls. On the other hand, it has a really large screen which might make touch controls more usable (i've only played emulators on an iphone 3g)

The mytouch DOES have a keyboard, but has a significantly slower processor (on paper), and therefore might not run emulators as well.

What do you guys think? Anyone with emulator experience on either phone? Is the vibrant touch screen good for controls? If not, is the mytouch powerful enough run emulators as well as the vibrant?

Just as a side note, in all other areas I like the vibrant better, so if the mytouch is overall better for emulation, but only by a small margin, i'll go with the vibrant.

View 9 Replies View Related

Games :: Slow Emulation On G1

Nov 13, 2008

There has been discussion on other boards, but emulators and game ports may take a while and depend on if Android is opened for some native code access. The author of my favorite WM emulator, Smartgear (great multi system emu for NES, GBC and Turbografx and Sega) has told me that the "Java" layer is required, so not only do you have to emulate the game systems, you have to also interpret the "Java" layer and this results in slow emulation even on the G1. He wants to release a port of his emu to Android, but says it will not happen until Android has native code access. Coreplayer is another program that is having issues due to Java on Android. They want to port the their media app but state that there is currently too much cpu overhead because any codec not native to the OS ALSO has to go through the "Java" layer. If all things stay constant, this does not mean there will not be emulators, but it does likely mean that even a Gamboy emu will be slow on the G1 or any other Android device. I put quotes around Java, because the container in the OS is more a hybrid of Java, but the cpu overhead is still the same. We will probably not see Doom, Quake, MAME or any full speed emulator with sound until Google opens the OS up to some native code access. Google demoed Quake, but it apparently did not go through the Java layer restriction. I would like to know if they used the SDK or used code native to the cpu. I tend to believe others that the OS will be opened up more by Google, but how long will this take?

View 4 Replies View Related

Android :: Multiplayer Games Emulation

Aug 17, 2010

Anybody know if there is anyway of having multiplayer games on android emulators? i have seen that it is possible on the pc emulators... surely is do-able on android?

View 1 Replies View Related

Games :: HD2 Has PSX Emulation - Android's Turn

May 26, 2010

Just found out that there's a working PSX emulator for the HTC HD2:

http://www.youtube.com/watch?v=raLRAP9KuPk

View 9 Replies View Related

Games :: ScummVM And 2.2 - Emulation Projects

Jun 2, 2010

There should hopefully be a working version out soon that will carry on working when my Desire gets the 2.2 update in the next couple of months. There's not loads of games out yet for ScummVM, but one in particular I'm really looking forward to is Full Throttle. A really cool game at the time and to be able to play on my Desire will be totally awesome. Any one else looking forward to ScummVM? or if you know of any other Android Emulation projects?

View 3 Replies View Related

Android :: SurfaceView Fast Enough For Emulation

Sep 11, 2010

For years now I've maintained a Tandy Color Computer Emulator applet on my home page. With the purchase of an Incredible I decided to do a port. Getting it going in Android didn't take long but I'm really surprised how slow it runs. You can literally see the pixels painting. I know there are other successful Android emulators so I must be doing something wrong.

My approach was to use a SurfaceView for rendering. There's a separate thread that runs a virtual 6809 CPU. Whenever that thread updates the emulated video memory, it calls SurfaceHolder.lockCanvas() with a Rect describing the part of the screen requiring a repaint. Then it calls the gfx routines with the resulting Canvas...this is where I did a repaint() in AWT/Swing. The gfx routines are smart enough to just render what's in the clipRect. Perhaps I'm still stuck in AWT but I can't think of any way to make this thing run at an acceptable speed. I tried to coalesce the gfx calls but that didn't work either. Any thoughts?

View 1 Replies View Related

Games :: Guide To Emulation On Android

Jun 4, 2010

I just finished what I hope is the ultimate guide to emulation on Android. I've basically fine-combed the Market and done my best to map out what the Android platform currently has to offer when it comes to retro video game console and home computer emulation. Various Nintendo consoles are covered, of course, as well as Sega, C64, Amiga, ZX Spectrum, TurboGrafx-16 et cetera.

The only emulators I've ignored are those with an average rating below 3. Now to my question: did I miss any good emulators? There might be emulator projects for Android on the web that are not available on the Market? Such as ScummVM, for example, although technically it might not qualify as an emulator. Is there a PlayStation emulator for Android?

Here's the link to the guide if you want to check it out:

The Definitive Guide to Emulation on Android: Play Nintendo, Sega, C64, Amiga and More

View 2 Replies View Related

Games :: Way To Go For Good Emulation On Droid?

Dec 11, 2009

As I am new to the Droid world are these apps the way to go for good emulation on the Droid? is the developer coming out with regular updates for these as needed and such?

View 19 Replies View Related

Motorola Droid :: Disable Auto-mount SD Card When Hooking Up To PC

Jun 10, 2010

I hope this question hasn't been addressed before; I've tried searching google but I may not be searching with the right keywords:

My Droid (running NexFro 1.01 - about to install BB with NexFro in ~20 mins) has been automatically mounting my SD card to my PC since installing Froyo last Saturday. I didn't have this feature enabled before flashing to Froyo, and I've tried a few roms since Saturday and they all have this feature auto-enabled.

This normally wouldn't be an issue, but this week I have been traveling with my job and I have been using tethering quite a bit, and would like to be able to charge my phone from my laptop without mounting my SD card every time.

Is there a way to disable this feature? Also I'm not sure that it is a feature at this point, as I haven't seen any other forum posts about this one any of the Android forums and I can't be the only person who doesn't want this feature enabled by default.

View 10 Replies View Related

Android : Setup An Emulation Of Motorola Droid Within Eclipse?

Feb 1, 2010

Please could anyone tell how to best set up an emulation of the Motorola Droid within Eclipse?

View 7 Replies View Related

Android :: Having Trouble To Use Network Speed Emulation In Android Emulator

Feb 22, 2010

I'm trying out the network speed emulation as described in the following link: http://developer.android.com/guide/developing/tools/emulator.html#net...

But is doesn't work, although "network status" command shows the correct values... I know it doesn't work by writing code to monitor the eth0 device in /proc/self/dev/dev, whatever speed I set, it seems always use maximum speed available to the host machine.

View 12 Replies View Related

General :: Phones SD Card Folder Isn't Connected To Removable Card?

Dec 13, 2011

one is clearly the folder for my actual sdcard (sdcard2) and the other (sdcard) seems to be where all my apps and downloads go. this creates an unreliability being that the phones sdcard folder isnt connected to my removable card and thus making backups useless.

View 8 Replies View Related

General :: Formatted Internal SD Card Through CWM And Now SD Card Not Be Detected

Mar 23, 2013

I formatted the internal SD card through CWM and now the card cannot be recognized by Win7 and it's stated as a linux file-CD Gadget USB Device, and the drives are greyed out. How do I revert the SD Card back to FAT32 format?

I'm also unable to mount it as USB storage in CWM recovery giving an error of cannot write to lumfile (no such file and directory). However, I'm able to still format the sdcard in cwm but it does not solve the problem.

View 1 Replies View Related

General :: Partitioning SDHC Card Without Card Reader

Sep 8, 2013

I successfully rooted my Samsung Galaxy Blaze phone, installed Titanium BackUp and now would like to send my app data to my nice 16GB SDHC card. The problem is, I can't get it partitioned probably because my laptop's card reader can't really read SDHC cards, even in adapters. It recognizes that the card is there, but then wants to format it and won't format it. I tried using the Mini Tools Partition Wizard, but each attempt failed, claiming I had a bad card. The card works beautifully in the phone, so I don't think that's the problem, especially since brand new cards get the same reaction.

Is there a way to partition the card from my phone? I have good reason to believe that my memory problems have a lot to do with the boatload of email I have saved in GMail, or the fact that Google+ somehow decided I really needed *all* of my photos on my phone, via Picasa (another source of angst and muttering).

View 1 Replies View Related

Android :: Speed Up Android Emulation

Dec 17, 2009

I'm trying to get started with Android development.

I'm using eclipse on Linux and using a Pentium IV @3.2Gh with 1GB of ram.
I've just followed the "hello android" howto, with just one sad result: the virtualization is too slow.

It seems that launching the virtual machine has to be slow, and it will be slow even if I'll use a better computer.

With slow I mean it takes almost 10 minutes to see "hello android" and if I change it to "hello world" it takes an other 10 minutes...

How can I solve it? Is it possible to make eclipse load again my app in the current and running virtual machine without opening a new one?

View 3 Replies View Related

General :: How To Disable Magazine UX On Tab Pro 8.4

May 29, 2014

I don't really use it and i prefer the normal Android home sceens way better than Magazine UX and it is very limited and have no use for it.

I would like to disable the Magazine UX on my Tab Pro 8.4.

And i don't really want to root/custom ROM the Tab Pro 8.4 just to remove Magazine UX.

how to disable Magazine UX on my Samsung Tab Pro 8.4? How to remove Magazine UX?

If i can't disable Magazine UX then it won't be a big deal breaker anyway because it does not slow down my Samsung Galaxy Tab Pro 8.4.

View 2 Replies View Related

General :: How To Disable Google Now

Oct 3, 2013

I've recently switched from an iPhone to a Samsung Galaxy 4. While there are a few issues in adjusting, one major annoyance I am finding is something called 'Google Now' popping up wanting setup. Frankly I'm sick of this doing so and want it to go away, but I don't know how. I've disabled Google notifications and push, but it still keeps coming up - it just seems random with no pattern as to what I am using or doing. I can't delete it because it's not in Apps. There seems to be nothing about how to get rid of it on the 'net unless it's installed - which it's not.

I throw this phone into a wall. I'm loving 90% of it, except for all the maddening and idiotic notifications, prompts, and insistence to install useless rubbish I don't want... such as Google Now.

View 14 Replies View Related

General :: Disable Certain App Notifications

Sep 20, 2013

how to disable certain noti.? All i can find is how to disable them if you have jellybean and i dont.

View 24 Replies View Related

General :: How To Disable Logcat

Jun 21, 2013

i`m using galaxy s,and i found that logcat casue bad batterylife,so how can i disable logcat on my phone?

View 1 Replies View Related

General :: 4.2 - How To Disable App Verify

Jan 14, 2013

On 4.2, I'm batch restoring apps in titanium backup. Every app restored requires a "Do you want to install this application?" prompt which requires me to click "Next" one or more times, then "Install" before it'll restore that app. This becomes tedious. Back on 4.1 it would just do all my apps without my intervention. I have unticked Settings>Security>Verify apps.

View 3 Replies View Related

General :: Disable Screen Dim On ICS / CM9?

Sep 13, 2012

Any way to disable the screen dim that occurs a few seconds before the screen off occurs?

The screen dims even when it is plugged into the charger. Gets annoying when I have it mounted as an MP3 player in the car for example, or even if I'm just using it in bright light.

The maximum screen dim level setting is too dark to see.

View 2 Replies View Related

General :: Any Way To Disable Logcat?

Oct 10, 2012

Is there any way to disable logcat? I tried the build.prop entry method but it still runs. I was just trying to see if there are any other methods? SPH-D710

View 1 Replies View Related

General :: Any Way To Disable Certain Services?

Mar 11, 2014

Is there any hack/way/XPosed module/whatever disable/blacklist certain services?

View 1 Replies View Related

General :: Disable AT&T / HTC OTA Update?

Apr 29, 2013

My OneX is rooted and working just fine. I'm getting the pop-up notifications from AT&T about updating. This last time I postponed it, it said (basically) I'll be forced to update in 8 hours.

is there any way to disable this?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved