Questions tagged [android-x86]

Android-x86 is an open source project with the purpose of porting the Android system to x86 platforms. It is formerly known as "patch hosting for android x86 support".

Android-x86 is an open source project with the purpose of porting the Android system to x86 platforms. It is formerly known as "patch hosting for android x86 support".

214 questions
2
votes
1 answer

what exactly happens when I compile instruction __atomic_add_fetch

I have a instruction in my code calling function __atomic_add_fetch. When I compile this code, I am getting compilation error as below error: undefined reference to '__atomic_fetch_add_8' I really could not understand why it is throwing undefined…
Pendyala
  • 585
  • 1
  • 6
  • 17
2
votes
0 answers

Android 7.1 for x86_64 booting to cmd line but not displaying the GUI on AMD PC

I have build the Android 7.1 for x86_64 and installed on an AMD64 machine. I need to install some custom apk on the Anroid PC (AMD). Tried using the Android PC as device for ADB but it is not getting listed for "adb devices". Seems required to set…
Alok
  • 21
  • 2
2
votes
0 answers

Fatal Error: Bad Primary Partition 0: Partition ends in the final partial cylinder, press any key to exit cfdisk

to fix this issue, i follow these steps 1,after “Warning!! Unsupported GPT (GUID Partition Table) detected. Use GNU Parted” , press alt+F2 2,command shell: parted /dev/sda mklabel msdos yes quit 3,reboot,and you can install android-x86 with offical…
12343954
  • 2,451
  • 3
  • 18
  • 18
2
votes
0 answers

Android-x86 on VirtualBox restarts whenever an app is closed

I am using Android-x86 6.0 on VirtualBox. Since I have changed the screen resolution using the method described here: https://stackoverflow.com/a/8273560/6110243 Android restarts whenever an open app is exited through the home or back button. This…
nulldozer
  • 45
  • 1
  • 7
2
votes
1 answer

Is there a way to distinguish Android Arm os from the Android x86 os in JavaScript?

To detect the Android OS, we could search the navigator.userAgent string for the 'Android' key word. However, my question is how to detect whether it's an Android Arm device or an Android X86 device?
Fiona
  • 904
  • 1
  • 8
  • 17
2
votes
1 answer

Using android 86 with virtual box as a smartphone instead of a tablet

I am using android-x86 with virtual box . It comes preinstalled with google play store and other services but i can use that iso file with VirtualBox as only as tablet and therefore cannot download some apps from the play store . I tried changing…
dongri
  • 23
  • 4
2
votes
1 answer

How can I check if an android device has hardware acceleration capabilities?

I am working on an Android app and it crashes on a certain x86 device (API 21)which is not happening after turning off hardware acceleration. After a bit of research I found that x86 android devices have hardware acceleration capabilities only in…
2
votes
0 answers

What are needed when running an elf like running dalvikvm on debian?

I wanna run dalvikvm on my debian just for try. I installed android x86 and copied all /system/ files to my debian make ln -s /system/ /system/system readelf -d dalvikvm and ldd to make sure the dependencies are okay make sure linker is ok…
Henry
  • 531
  • 3
  • 12
2
votes
0 answers

ASUS ZenFone 5 doesn't load correct so files

My Android app, within NDK built .so files, crashes on the ASUS ZenFone 5 device just like the issue in this link (Android) Native crash at /system/lib/libhoudini.so on Asus Phone It seems the libhoudini.so, the ARM to x86 translator, can not work…
jayatubi
  • 1,972
  • 1
  • 21
  • 51
2
votes
0 answers

How to use Android Shared Library (.so) in Linux PC by Java

I decompiled an APK file, and that app have native codes in a .so file. Now I want to load that .so file in my java program in linux pc. I want to use some function written in the native code. Is there any way to use the Shared Lib (.so) in java…
Sakil Alam
  • 51
  • 6
2
votes
1 answer

What would be the point with different jars in android?

I know the difference of the native library between x86 and armeabi-v7a. However, I found an app containing different jar library in x86 and armeabi-v7a folder. As I know, Java programs are cross-platform or platform independent. So what would be…
Jerikc XIONG
  • 3,517
  • 5
  • 42
  • 71
2
votes
1 answer

VirtualBox access virtualhost from guest (android x86)

I created a VM in VirtualBox with Android 4.4 as OS (image downloaded from android-x86.org). I wanna use it for testing web projects, stored on my local machine (Mac OS X 10.9). On that machine a web server is running and a project url could be…
iwanuschka
  • 436
  • 1
  • 5
  • 18
2
votes
2 answers

Is BlueStacks really an emulator?

I know that using Bluestacks App Player we can run android application on Windows. What I want to know that is, "Is BlueStacks an emulator or a stripped down version of android operating system or a stripped down version of android-x86? Because it’s…
s.m
  • 209
  • 2
  • 7
  • 17
2
votes
0 answers

Can't create AVD with Google APIS 19 with CPU Intel even though i have downloaded the image

My SDK manager shows: I can create AVD with the non Google API image : But cannot create a AVD with Google APIs of Intel CPU even though I have it downloaded: I have HAXM installed and working.
Nezam
  • 4,122
  • 3
  • 32
  • 49
2
votes
1 answer

dalvik.system.PathClassLoader can't find jni on Intel devices

I'm having an issue where the dalvik.system.PathClassLoader can't find my jni file on Intel devices. I think it has to do with the structure of an aar dependency I have because once I removed that dependency, the jni file is found without issue. My…
Bryan
  • 367
  • 3
  • 11