Skip to main content
spy recorder app using Rfo-basic
Nowdays everyone think about security,
survelliance or spying to someone.
its good idea but today i will show you how can you create your own spy recorder app using basic programming .
Basic is simple programming language in which you can develope any app fast without doing any hard work.
download rfo basic from play store.
Open it and type the program given below.
And run the following program-
gr.open 200,30,70,120,0
gr.orientation 0
gr.screen w,h
cx=w/2
cy=h/2
qx=w/4
qy=h/4
unit=w/20
time y$,mn$,d$,h$,m$,s$
file$=y$+mn$+d$+h$+m$+s$
path$="../../"
folder$="spy recorder"
file.exists s,path$+folder$
if s=0
file.mkdir path$+folder$
endif
gr.color 200,200,200,200,1
gr.bitmap.load b,"spy/space.jpg"
gr.bitmap.scale bm,b,w,h
gr.bitmap.draw space,bm,0,0
gr.bitmap.load sa,"spy/sat.png"
gr.bitmap.scale nsa,sa,qx,qy
gr.bitmap.draw nasa,nsa,0,qy+2*unit
gr.render
gr.color 200,50,150,200,0
gr.set.stroke unit/5
gr.text.size 2*unit
gr.text.align 2
gr.text.draw genius,cx,cy-unit,"GENIUS LABORATORY"
gr.render
loop:
inkey$ s$
if s$="key 24"
audio.record.start path$+folder$+"/"+file$+".mp3"
!print"recording"
for x=1 to w
gr.modify nasa,"x",2*x
gr.render
if x>600 then x=0
next
endif
if s$="key 25"
audio.record.stop 
endif
gr.touch2 t,x,y
if t
popup" this app is developed by GENIUS LABORATORY"
endif
gr.touch tx,x,y
if tx
tone 100,200
endif
goto loop
gr.render
do
until 0
!  adb shell rm /data/system/gesture.key
 programming

You will see something like this
Now press volume up button to start recording audio
you will notice satellite start moving it show that audio is recording.when you have to stop recording just press volume down button and audio file will saved in 
Spy recorder folder which will create in your phone while recording.

If you have any problem please inform me.


Comments

Popular posts from this blog

Stephen Sunny

          Stephen Sunny  he is software developer,researcher,at the field of technology and quantum physics. he dedicated his whole life in research and experiment.whole time he try to create something new technology. Currently he is being researching in Genius Lab. you can contact with him. Email genius.lab10@gmail.com.       stephensunny@geniuslabtech.com.

How to root your android

Root   your android device  hello friend..s when we think how can we use our android as advance user or use it advance like pc or using smart application.only one that comes in our mind is  First how can we root our android. so Let's get started. First of all download an application  Kingo root . kingo root is not available on play store  You can download it from google search. Click on button "One Click Root" And wait for a minute. After  some time it will show "ROOTED" Congratulation ........ Your device get rooted.

create android app in easy way with rfo-basic

Programing in android app in rfo-basic hello Today i will explain you how can you build android app using rfo basic in android. So.lets get started.. first download rfo basic from play store. Open it you will see screen look like below. now paste the following code in editor. open menu and select run . You will screen look like this. Speak anything it will convert into text. Congratulation........ you completed your first program using rfo basic. for  programs and source code contact me   genius.lab10@gmail.com   Thank You.