Search This Blog

Showing posts with label android. Show all posts
Showing posts with label android. Show all posts

Saturday, August 22, 2026

FAY Diary Version 1.0 Released

FAY (Fast And easY) Diary app version 1.0 released !! Writing your private diary and back up on your own phone.

 



Download Free at Google Play ->

https://play.google.com/store/apps/details?id=ataya.p.gadget.faydiary&pcampaignid=web_share 

 

Thursday, August 6, 2026

FAY Random Numbers Version 1.0 Released

FAY(Fast And easY) Random Numbers app version 1.0 released !! Generating Random Numbers as you wish !!



Download Now At Google Play Store->

https://play.google.com/store/apps/details?id=ataya.p.gadget.fayrandomnumbers
 

Sunday, June 11, 2017

FAY Serial Terminal #androidapp released

FAY(Fast And easY) Serial Terminal version 1.0 released !!
Connect your Android Smartphone with Microcontroller through USB OTG cable.

What's New :

1. support USB OTG function.
2. automatic detect USB device.






Download Here ->

Friday, July 29, 2016

Take Photo with ADB

This is how to taking photo with adb command...

# adb shell "am start -a android.media.action.STILL_IMAGE_CAMERA"
# adb shell "input keyevent KEYCODE_CAMERA"


Sunday, June 28, 2015

How to fix export signed application fail [Cannot allocate memory]

After updated the latest ADK, I can't export signed application with Eclipse. I just got this error dialog.


Unfortunately, my machine is an old 32bit with resources that not enough to run AndroidStudio. That means I still using Eclipse for dev the apps. (Why they keep making tools that requires more and more computer's resources anyway ?)

By the way, I finally found the way to fix this problem. 'cause I using Ubuntu, Just type this command in the shell and everything is back to normal.

# echo 1 > /proc/sys/vm/overcommit_memory

Hope this gonna solves your problem too. Cheers !


Thursday, August 28, 2014

How to fix "Android SDK Content Loader" always loading at 0%

I have a headache caused by this problem. After I did update the Android Development Tool (20140702) I have an issue about "Android SDK Content Loader" doesn't load anything. I have tried many thing as they said on the internet but it just a temporary fix. Here is what I found out how to fix this problem.(I using Ubuntu Linux )

1. First, when  "Android SDK Content Loader" is loading at 0% then kill adb and eclipse process at your terminal.
# ps aux | grep adb
# kill -9 XXX  
where XXX is adb process id.

#ps aux | grep eclipse
#kill -9 YYY
where YYY is eclipse process id.

2.Move the Android SDK folder to be temporary folder.
#mv android-sdk android-sdk-backup

3.Execute the Eclipse, this time it will ask for the SDK folder. Just point to  another SDK folder. (I downloaded another SDK)

4.When Eclipse has finished all loading process. Move the temporary folder back to normal.
#mv android-sdk-back android-sdk

5.Then set the preference path of the SDK back to normal setting. It should work again.