{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
myA - Develop your assistant
myA lets you download and customize mobile assistants (known as “A’s”) to automate your daily tasks and connect you with your devices.
Simply install the myA app to start using A’s on your Android device
What are A's?
A’s are digital mini-programmes, which simplify and automate your everyday. Whether it’s finding nearby cafés, sending messages automatically
to your loved ones, or managing your devices remotely, A’s integrate with all your services to make life easier.
Here are just a few examples of how A’s can help you:
myA offers a full API that lets you program your own scripts!
See our API Documentation at mya.me/api
Boost your productivityAutomatically mute your mobile at night,
Receive smart notifications,
Control your phone by voice.
Be closer to the people that matterAutomatically send messages to your loved ones,
Know what to give your friends on their next birthday,
Find out which of your friends are single.
Discover the world around youGet restaurant suggestions for dinner after work,
Find great deals when visiting a new city,
Never miss your favourite bands when they are in town.
Get started now!
Learn how to make myA your own at http://mya.me/learn
Discover myA at mya.me
Download
or download APK from lnk.to/myA-APK
Code Examples
You can develop A's with JavaScript using our API
See Code Examples by visiting our Blog
PHP:
/*********************************************************
* Setup
*********************************************************/
var baseUrl = "http://api.jamendo.com/v3.0/radios/";
var avatarIcon = "http://icdn.pro/images/es/j/a/jamendo-icono-7192-128.png";
icon = avatarIcon;
var isVoice= false;
var askedRadio;
/*********************************************************
* Setup
*********************************************************/
function getRadio(radio){
var uri = web.makeUri(baseUrl+"stream")
.param("client_id","5728989a")
.param("format","json")
.param("name",radio)
.build();
log.info(uri);
return web.readJson(uri);
}
function getCategories(){
var uri = web.makeUri(baseUrl)
.param("client_id","5728989a")
.param("format","json")
.param("limit",50)
.build();
log.info(uri);
return web.readJson(uri);
}
function checkRadio(said){
var list = t.text.list.split(",");
for (var i in list){
if (said.indexOf(list[i])>=0){
return list[i];
}
}
}
Thanks!
Thank you!
Galaxy Latino said:
I download the app from the Play Store but when i open the app is givin me FC
LG G2 with Android 4.4.2 Mahdi Rom [AOSP]
Click to expand...
Click to collapse
We'll check that!
Thanks for your response!
Fixed
Galaxy Latino said:
I download the app from the Play Store but when i open the app is givin me FC
LG G2 with Android 4.4.2 Mahdi Rom [AOSP]
Click to expand...
Click to collapse
A new version was deployed to play. In the meantime: please use the following link to directly load the APK.
https://xndme-static.s3.amazonaws.com/releases/latest.apk
Thank for your help :good:
https://xndme-static.s3.amazonaws.com/releases/latest.apk
Thanks!
Does it work now?
Galaxy Latino said:
Thanks!
Click to expand...
Click to collapse
Is the issue fixed now?
Does it work now?
Interesting! I will continue to follow your project for sure
Limit8 said:
Interesting! I will continue to follow your project for sure
Click to expand...
Click to collapse
Nice to hear that, thanks!
Can someone post a mirror? I can't get the download to go thru..
Related
Hi there, need some help coding an app, it's similar to somekind of "who wants to be a millionaire?"
The base is that there is a question and 4 variants each page(window), answering one question leads you to the next one, the problem is that i don't know how to connect the windows.
i have kind of
Q1.cs
Q2.cs
....
Q10.cs
------
form1.cs - which is the main window
the code is
private void button1_Click(object sender, EventArgs e)
{
MessageBox.Show("Right! go to the next", "Information");
?????????????? // for example Q3 is next which is in other window with other image and style, and which is already created as Q3.cs in same project
}
i don't know what to put inside to call for example next question(window) same with menu items like About and Settings...
Please help. maybe somekind of link with tutorials.
msdn i know, didn't found this moment there.
Thanks.
private void button1_Click(object sender, EventArgs e)
{
if(MessageBox.Show("Right! go to the next", "Information")==dialogresult.Ok)
{
//<other formname> maybe q1
q1 = new q1();
if(q1.showdialog()==dialogresult.ok)
{
//whatever
}
}
?????????????? // for example Q3 is next which is in other window with other image and style, and which is already created as Q3.cs in same project
}
your problem is not really a spc mobile problem
so any c# net examples you can dig up can help you
to be more precise
Rudegar thank you, but it isn't quite what i am searching for,
here is the image which probably will explain better what i ask/search.
hope somebody can help with code.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
there is Form1.cs and Form2.cs, how to pass from one to another using button_click event?
private void options_click(blablabla bla)
{
form2 myform = new form2();
myform.showdialog();
}
private void back_click(,,,,,)
{
Close();
}
Without knocking your method, why have you not got one page that has the buttens etc set up and change them when the questions change, rather then have 10 forms that are exactly the same?
Rudegar THANK YOU! that was it! it works perfect! RESPECT for your help!
MrRalphMan well because there will be different forms - ones with textbox to fill in, others with guess the image, others with sound to recognise and so on...
the purpose of the programe should be E-Learning - foreign language learning app, it will help user study new words of the new language.
Rudegar Thank you!
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
What is DroidCat?
DroidCat is inspired by firecat and aims to be a one stop solution to finding all
ethical hacking / information security related application published in android domain.
This Application is also a part of HaXdroiD suite which aims to empower the
Android handset for Penetration Testing purposes.
Home Page : http://cat.haxdroid.com/
Download :
Feature enhancement under consideration.
Add support for non google markets like amazon,slide me,YAAM etc
Add more applications and categories.
Changelog
1.0
Initial Release
Thank's for the app, i will test this !
Thank you, I am always looking for apps like these even had an idea about helping working with some devs on creating and or testing a pentest focus custom rom.
Cheers
infolookup said:
Thank you, I am always looking for apps like these even had an idea about helping working with some devs on creating and or testing a pentest focus custom rom.
Cheers
Click to expand...
Click to collapse
I am working on something simmilar...
We can sync up on PM then.
good and useful app, needs more attention of developer tho
tayfuntb1393 said:
good and useful app, needs more attention of developer tho
Click to expand...
Click to collapse
hi,
i agree i have not been able to give much love to this baby of mine. however there are large number of changes that are happening now.
including change in google app store policy which might make all the tools listed in this app as non conforming and lead to there removal i am trying to find a way out for the scenario.
As of now i am trying to setup a aptoide repository and see if i can get permission from all the tool owners to upload a version there.
Am interested
Where can I download it? Please give a link
Soo more specificly, what does this app do?
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Life. Simulated.
Start from the lowest end of the society and work your way up. You have the hunger, mood and energy to do things, but you start with nothing else. You are free to do whatever you want. Experience life. On your device.
Develop your character, achieve objectives, buy and sell items, enhance your skills, and just live life. Find a job or start your company, it's all in your hands. Here, you decide how you live your life. Nobody except you is in control. Succeed, and you'll realise the purpose of life at the end.
Click to expand...
Click to collapse
Requires : Android 3.0 and up
Requires :
full network access
view network connections
Content Rating : Everyone
Size : 19M
So, what are you waiting for? Download the app now!
Click to expand...
Click to collapse
Screenshots :
Click to expand...
Click to collapse
Google Play : https://play.google.com/store/apps/details?id=com.qizz.life
Click to expand...
Click to collapse
Beta Test the app at https://play.google.com/apps/testing/com.qizz.life
Google Plus Community : https://plus.google.com/communities/108954822038756208532
Click to expand...
Click to collapse
[QRCODE]https://play.google.com/store/apps/details?id=com.qizz.life[/QRCODE]
Note : Feedback, Suggestions, Bouqets and Brickbats will be welcomed, as long as they contain relevant information. I am not the owner of this app, but I am publishing it here for him.
Click to expand...
Click to collapse
Created by :
Alexey Gogol of Qizz Inc.
Get in touch at Google + : +Alexey Gogol / https://plus.google.com/+OleksiiHohol/posts
Get in touch at Twitter : https://twitter.com/lifesimgame / @lifesimgame
Email ID : [email protected]
Reserved.
Hi. First, I have to admit that i really liked the app. I'm playing it about 2 days long. But i have faced just one issue. And it is not Saving. It doesn't save the progress if ı close the app completely or restart my phone. Please fix this.
Have a good day.
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Are you looking to Create Android App for your Website @ FREE of cost? Here is a solution for you. Download this App to Convert your Website into Android App. It will Convert your Website into Android App within 1 minute. You can publish your Android App in Google Play Store. Its fully free of cost.
Its very easy to use, with no coding knowledge required.
Step:
1) Just fill the form (required fields -> app name,app description)
2) upload lcon for app
3) upload splash screen image That\’s all.
Main features:
1) Enable your mobile users to access your mobile site from their mobiles.
2) Convert All Websites into Android App
3) Display your images and galleries in a mobile App
4) Playing video and audio using mobile players.
5) Upload photos & videos.
6) Use Adsense ads for mobile to monetize your Apps.
7) Push Notification
8) Track app usage using google analytic
9) Compatible with Woocommerce powered shop.
10) Compatible with BuddyPress
11) Earn money via google Admob
13) Upload Documents via App
Thanks, I'll try
MIKEMON said:
Thanks, I'll try
Click to expand...
Click to collapse
Most welcome bro
Sent from my Honor 3C using Tapatalk
Thanks, I tried success
canhohanoi said:
Thanks, I tried success
Click to expand...
Click to collapse
[emoji41]
sounds nice ... ill give it a try.
"Invalid coupon" any ideas ?
mrklintscher said:
sounds nice ... ill give it a try.
Click to expand...
Click to collapse
I encourage you to try it because I had to try. I am quite satisfied
:good: Niece
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Note : This app won't help you solve CAPTCHAs
Are you bored having to wait for 5 seconds every time you try to visit a web page? Do these annoying popups ads in these shortened URLs spoil your browsing time? Never wait again. Just download this app, make it default for supported domains, and enjoy.
Note about the banner : We hate ads too, but we need these small banner to help us continue. Thanks
DOWNLOAD
Amazon App Store: Temporarily offline
Google Drive: https://goo.gl/F4z38W
Thanks
Good app
Well done
DE SEXIEST said:
Good app
Well done
Click to expand...
Click to collapse
Thanks for your support
More features and optimizations are coming soon
New Update v1.1.0 - Change Log
Note: Package name changed, so you need to remove the previous version manually
- Fix a bug causing 'Unshorten it now!' dialog sometimes to display a previous link instead of unshortening a new one
- Support 'Shortest' links
- Support unshortening via Share action
- Support Auto Backup (Android 6.0+)
- Support Adaptive Icon (Android 8.0+)
- UI & general improvements
Can't you publish on Google Play?
OSheden said:
Can't you publish on Google Play?
Click to expand...
Click to collapse
Sadly, I've tried but they rejected it because it is considered as an ad blocker.
MSDarwish said:
Sadly, I've tried but they rejected it because it is considered as an ad blocker.
Click to expand...
Click to collapse
Then you should consider XDA Labs or F-Droid (if it's a FLOSS app and if you plan to publish the source code).
OSheden said:
Then you should consider XDA Labs or F-Droid (if it's a FLOSS app and if you plan to publish the source code).
Click to expand...
Click to collapse
Thanks for your recommendation, but currently I don't intend to release the source code of the app. I've submitted it to Amazon App Store and I'm waiting for the response