Skip to content
Advertisement

Tag: android

Can an archive file store external links?

I am trying to link my Android app with a third-party archive. This archive, libvpx_new.a,is one among many archives that are being created as part of building webrtc for Android (on Ubuntu). I copy this archive and the header files into C:ThirdParty directory on Windows. My Android app tries to link with ThirdParty/libvpx_new/libvpx_new.a. When the build runs, I get link

How can I run command line FFMPEG and accept multiple pipes (video and audio) without blocking on the first input?

I’m trying to mux h264 and aac created with MediaCodec using FFMPEG, and also use FFMPEG’s RTMP support to send to youtube. I’ve created two pipes, and am writing from java (android) through WriteableByteChannels. I can send to one pipe just fine (accepting null audio) like this: YouTube streaming works perfectly (but I have no audio). Using two pipes this

How to install Android SDK on Ubuntu?

For my Ubuntu machine, I downloaded the latest version of Android SDK from this page. After extracting the downloaded .tgz file, I was trying to search for installation instructions and found: To get started on Linux: Unpack the .zip file you’ve downloaded. The SDK files are download separately to a user-specified directory. Make a note of the name and location

Using repo with goldfish Android kernel

I was trying to configure repo with a local_manifest.xml file to get the goldfish Android kernel available at: https://android.googlesource.com/kernel/goldfish.git I have written the following local_manifest.xml file that I copied in .repo/manifests/local_manifest.xml: Giving the following command: repo init -u local_manifest.xml I get the following error message: I believe there is something wrong in my local_manifest.xml file but I’m unable to understand

How to I create a folder just like /data in arm Android devices?

I want to create a folder in android arm targets which will be like /data which has has read-write permission? I followed following steps in init.rc:- mkdir /home 0771 system system chown system system /home chmod 0771 /home After these commands folder created has following permissions : – drwxrwx–x system system 2012-01-01 00:42 home but when I Create folder in

android Use Linux tools stored at assets folder

I want to use tools from Linux which not available in Android by default such as iw and iperf. I saw Android applications that use this tools (like this). There are two ways to do it. First: get root rights on device and put file of the tool to the system/bin/ folder. Second: put file of the tool to assets

Advertisement