I have smartwatch K88H and using app MediaTek SmartDevice. Standard vxp file for Yahoo Waether doesnt work for me (always error when i search city). Someone know where i find this (or this and more) correct vxp file for this smartwatch?
Did you have luck finding the answer? I have the same problem. I realised sniffing the requests that my phone does that it tries to use a very (very) old yahoo weather API. This is why it fails. I was thinking maybe I could somehow redirect that URL to a working one with the same format and trick it but I need to know the format it's expecting, so I don't know...
naahuel said:
Did you have luck finding the answer? I have the same problem. I realised sniffing the requests that my phone does that it tries to use a very (very) old yahoo weather API. This is why it fails. I was thinking maybe I could somehow redirect that URL to a working one with the same format and trick it but I need to know the format it's expecting, so I don't know...
Click to expand...
Click to collapse
Easiest way is making own app. I creating some app but i dont know how work POST/GET request in smartwatch that dont have SIM card.
The yahoo weather api code i have in my other app on pc wrote in c#.
Hardest thing is compile/modify app on watchface format. None one company wanna help
kadeshar said:
Easiest way is making own app. I creating some app but i dont know how work POST/GET request in smartwatch that dont have SIM card.
The yahoo weather api code i have in my other app on pc wrote in c#.
Hardest thing is compile/modify app on watchface format. None one company wanna help
Click to expand...
Click to collapse
That's the easiest way? haha I think what this app really does is get the weather info from the phone. I don't think the requests are made on the watch. Man I'd love to make it work. As soon as I have time I'll see if I have a workaround for this issue.
naahuel said:
That's the easiest way? haha I think what this app really does is get the weather info from the phone. I don't think the requests are made on the watch. Man I'd love to make it work. As soon as I have time I'll see if I have a workaround for this issue.
Click to expand...
Click to collapse
Ofc by phone using bluetooth. For example the city id is stored in file on storage but place is write protected for normal pc connection I suppose that watch making request and phone is only gateway
First question is: that MRE SDK realize GET/POST request by bluetooth using own library?
If yes that easy peasy app for someone who knows C language (not me ).
the yahoo weather app part is using the old yahoo api, which is dead. (at least in fundo app)
so even if you put in the city name it will not give you anything back as it gets a "ERR_NAME_NOT_RESOLVED".
app (on the apk) needs update from weather.yahoo to query.yahoo
sample: ( Working) ( select complete statement and paste into browser - took vienna, metrics for example)
query.yahooapis.com/v1/public/yql?q=select * from weather.forecast where woeid in (select woeid from geo.places(1) where text="vienna")and u="c"&format=json
not working ( as i can see it when i look into the yahoo apk:
weather.yahooapis.com/v1/public/yql?q=select * from weather.forecast where woeid in (select woeid from geo.places(1) where text="vienna")and u="c"&format=json
the data i can see on my watch is a "leftover" from someone testing this functionality 2014..
your watch should get the actualy city from time / weather sync between watch and phone.
the real way would be to unpack fundowear / or whatever apk you use on your smartphone, and check if they even use the right api. if the format you get wih th right api is the same as it was back in 2014, your watch should sync weather just fine.
kapsubm said:
the yahoo weather app part is using the old yahoo api, which is dead. (at least in fundo app)
so even if you put in the city name it will not give you anything back as it gets a "ERR_NAME_NOT_RESOLVED".
app (on the apk) needs update from weather.yahoo to query.yahoo
sample: ( Working) ( select complete statement and paste into browser - took vienna, metrics for example)
query.yahooapis.com/v1/public/yql?q=select * from weather.forecast where woeid in (select woeid from geo.places(1) where text="vienna")and u="c"&format=json
not working ( as i can see it when i look into the yahoo apk:
weather.yahooapis.com/v1/public/yql?q=select * from weather.forecast where woeid in (select woeid from geo.places(1) where text="vienna")and u="c"&format=json
the data i can see on my watch is a "leftover" from someone testing this functionality 2014..
your watch should get the actualy city from time / weather sync between watch and phone.
the real way would be to unpack fundowear / or whatever apk you use on your smartphone, and check if they even use the right api. if the format you get wih th right api is the same as it was back in 2014, your watch should sync weather just fine.
Click to expand...
Click to collapse
Yeap. Still i dont wanna repair old one only write new
In my code i dont using only city name (sometimes there as 2 cities with the same name).
My code from other app:
string url = Uri.EscapeUriString(city);
url = url + "%2C%20" + countrycode;
url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22" + url + "%22)&format=xml&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
Maybe i try do it in my project ( https://plus.google.com/113505769589718167080/posts/ZwAFFuxTqZr )
kadeshar said:
Yeap. Still i dont wanna repair old one only write new
In my code i dont using only city name (sometimes there as 2 cities with the same name).
My code from other app:
string url = Uri.EscapeUriString(city);
url = url + "%2C%20" + countrycode;
url = "https://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid%20in%20(select%20woeid%20from%20geo.places(1)%20where%20text%3D%22" + url + "%22)&format=xml&env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys";
Maybe i try do it in my project ( https://plus.google.com/113505769589718167080/posts/ZwAFFuxTqZr )
Click to expand...
Click to collapse
if you could repair the old one, it would benefit more users, bcause the apk has much more functionality, pedometer, heartrate sync, time sync, watchface upload etc ... only weather does not work. i also think you might not even have to change the watch part.
(depends on watch i guess) but at least on my 2502D i have not even a place where i can add a city. btw.: in my sample you could add country after the city. Apart from format the is not much differenc i guess.
kapsubm said:
if you could repair the old one, it would benefit more users, bcause the apk has much more functionality, pedometer, heartrate sync, time sync, watchface upload etc ... only weather does not work. i also think you might not even have to change the watch part.
(depends on watch i guess) but at least on my 2502D i have not even a place where i can add a city. btw.: in my sample you could add country after the city. Apart from format the is not much differenc i guess.
Click to expand...
Click to collapse
Cant repair without source code
And Yahoo weather vxp app have more functions? Where? I only see city not selected. Thats all.
kadeshar said:
Cant repair without source code
And Yahoo weather vxp app have more functions? Where? I only see city not selected. Thats all.
Click to expand...
Click to collapse
for the apk just unzip it with 7zip for the sources
as for the vxp, that might not be so easy, as its compiled, not only packed-
if you need the lefundevice apk, downlaod the chinese one, as it is far better looking then the one on google play
(for my watch actualy the only really working ( apart from weather ) one ... )
edit:
http://ledong.boyu199.com/download/
But we speaking about vxp (LinkIt app) not apk (Android app)
I tried use some extractors from mediatek and some others stuff dont work
//sry for first post. My internet or xda works slow. I thought that first post didnt upload correct
EDIT:
For first view Lefun Device have crappy notification system for my app/android version and dont have install vxp feature
kadeshar said:
I tried use some extractors from mediatek and some others stuff dont work
//sry for first post. My internet or xda works slow. I thought that first post didnt upload correct
EDIT:
For first view Lefun Device have crappy notification system for my app/android version and dont have install vxp feature
Click to expand...
Click to collapse
that is interesting, the chinese version does have the vxp install feature, note: the google playstore version of it does not have it.
in fact the chinese and the playstore version do look like 2 complete different apk's . That's why i told you to try it.
edit: on my mtk2502 i could install the yahoo weather apk, but the only thing it does is reading data from the nor
extracting the vxp file could only extract images and a bit of text, i could extract the text "shenzen" with some weather information along, which seems to be the default city. It shows on my watch, but that is pulled of a table/text segment that has allready weather information in it (same information as is stored in the watch dump - (from 2014) - that leads me to the idea, that it *could* be possible that the watch pulls allready data from the apk, and if there is no actual data /data with errors - it uses the data which was allready pulled in 2014. (no overwrite watchside on error). so my hope is, if the apk has current data, the vxp pulls / or gets the data from the APK on the smartphone. Thus would show correct city / weather information if the apk has it. (i have no confirmation, but the link between apk and vxp should work allready -if the apk has the correct data - when i try to sync weather on the apk i only get the message searching for GPS. I can not confirm that if the apk pulls actual data it would be transfered to the watch as i was not able yet to change the apk. (note on image3 it shows actual date and time , but weather from 2014 )
{
"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 smartwatch do you have? My dont have this weather feature. The "only" weather is that from yahoo weather and its broken and showing (No city selected).
Yes mine doesn't look like that either. I have a Yahoo weather icon that when I click it says "no city selected" and I can't select a city from the fundo wear app because it fails to find any city.
Maybe you're onto something though, kapsubm ... Good job!
kadeshar said:
What smartwatch do you have? My dont have this weather feature. The "only" weather is that from yahoo weather and its broken and showing (No city selected).
Click to expand...
Click to collapse
it's a MTK2502D watch, no real brand, but model number says Y1 Plus
(it's a 4/32 MB Nor flash) i did a rom dump, but i am not able to create flashable files for the mtk tool yet, might be a "new" one.
kadeshar said:
What smartwatch do you have? My dont have this weather feature. The "only" weather is that from yahoo weather and its broken and showing (No city selected).
Click to expand...
Click to collapse
Hi Kadeshar - any solution to this issue?
Are you able to select city in yahoo weather app?
---------- Post added at 05:56 AM ---------- Previous post was at 05:53 AM ----------
naahuel said:
Yes mine doesn't look like that either. I have a Yahoo weather icon that when I click it says "no city selected" and I can't select a city from the fundo wear app because it fails to find any city.
Maybe you're onto something though, kapsubm ... Good job!
Click to expand...
Click to collapse
I tried with FundoWear and Mediatek SmartDevice. I did give a try by installing all the older version APK of these app but it's not working.
I do remember 3 months back my yahoo weather app was working but when I check now - it fails to find city
abhisek.bht said:
Hi Kadeshar - any solution to this issue?
Are you able to select city in yahoo weather app?
---------- Post added at 05:56 AM ---------- Previous post was at 05:53 AM ----------
I tried with FundoWear and Mediatek SmartDevice. I did give a try by installing all the older version APK of these app but it's not working.
I do remember 3 months back my yahoo weather app was working but when I check now - it fails to find city
Click to expand...
Click to collapse
It's a shame because it would be actually useful. If only there was a way for us to create our own little apps. I can't believe how closed these Chinese watches are...
Related
Data Connection 2G/3G/H
This phone when used on Bell's own network, it can only do 3G & H
(this is not a hardware issue but rather a network issue, there is a topic about this discussion, link coming soon)
However once unlocked the have full 1G(Cuba!)/2G(EDGE)/3G/H on Fido, Rogers, AT&T and any other network that supports the 850/1900/2100 band for data communication
Pre-installed Apps:
TeleNav GPS Navigator if you are not online via 3G or WiFi, you'll get an error message "This application is not available" or something along those lines
The application is not free, it wants you to register for $10 a month, it's safe to uninstall after rooting
BellTV Remote PVR only works if you have a Bell digital cable box for TV, it's safe to uninstall after rooting
Tunes & Apps it's just an Advertisement URL link, it tries to go
Code:
ads.bwanet.ca/getnew.jsp?request=PDAdownload
the link is dead anyways, it's safe to delete after rooting
TV & Radio supposedly to Watch Live TV, Listen to Music and Talk Radio... but it doesn't work.
It might be only available to people on Bell network, the error messages says
> Error
There was a problem
connecting to the service.
Check your data connection.
Click to expand...
Click to collapse
my recommendation uninstall it if you are rooted, there are better Apps in Android Market that offers the same feature & service
Kobo it comes included with the latest official ROMs. You might want to keep it if you are an e-book reader. It channels you to their online catalog of e-books. Depending from each point of view, it can be categorized as another Advertisement or a Tool.
Personally I'll uninstall it (you'll need to be rooted), the only thing I'll ever read in my phone are PDF files, for everything else i got RSS feeds, tons of e-mails/SMS to go through an lots of websites to keep me busy and relaxed.
AllShare a simple to use App to share your files in the phone to other devices wirelessly.
Worth keeping? Yes
Layar is more of a fun tool than a real utility, it lets you catalog and get info of nearby places where you are standing, it requires the GPS to be ON-line. This App is based on the Anime feature in Eden of the East.
Worth keeping? Yes
Navigation Google Maps Navigation, a simple to use Navigation tool that works out of the box.
Worth keeping? Yes
ThinkFree Office requires activation, but it's completely Free as the name implies (unlike other Apps which claims to be "free" but is crippled one war or another, or with Ads.) you can open and create Microsoft Word Doc, Spread Sheet, and PowerPoint slides, all from the tips of your fingers.
It takes a bit to get used to navigating around the software to do what would normally have been a simple task in the PC.
Worth keeping? Yes
Samsung Apps List of available freebies:
- eBooks by Kobo (the other piece of the forced on ROM Kobo eBook Market)
- Social Hub Push Email and IM (as the name implies it does everything, it's quite good infact, it adds additional supported services to the original version, now it can do Google Accounts, Hotmail/Live Accounts, Yahoo Accounts, Facebook Accounts, Twiter Accounts, MySpace Accounts)
- RoadSMS (SMS that lets you see behind the phone, the road or whatever your phone camera seems to be pointing... great App to check out on girls on the restaurant table in front of you )
- Robert Parker (wine guide)
- Radio Companion (i find it rather interesting, it lets you sing karaoke to the radio station you are listening to... well sort of, it will scroll and display the lyrics as the song plays on the radio station)
- Asphalt5 (racing game, full version, completely free, notice this is not the Asphalt5 HD)
- Vlingo Voice (voice control your phone, dictation, launch apps, etc)
- Krazy Kart Racing (from Konami) cartoonish kart racing game, fun!
- Facebook for Samsung the name says it all it's a new facebook apps from Samsung
- Movies App for movie show times, trailers and reviews
{
"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"
}
- Blinkx Beat
- ComedyTime
You may want to add something in here about Bell's lack of a 2g GSM network and checking if your phone has the download mode disabled or not. These seem to be 2 common questions on these forums about the Canadian I9000M.
Thanks for the reminder, yes this FAQ is a work in progress
The TV & Radio app is worth keeping if you are a Bell subscriber and into the idea. Basically it is a premium app, you have to pay for subscriptions to channels. But you can access content like live NHL games, HBO, etc.
It also lets you subscribe to and listen to Sirius sat. radio.
But if you don't have a 6GB plan it's a total non-starter.
For someone in the United States, where's the best place to purchase an unlocked one? I can't find any on US ebay and only like 3 on CA ebay.
AllGamer said:
... safe to uninstall after rooting
Click to expand...
Click to collapse
Silly question: how do you uninstall apps after rooting? (I'd appreciate teaching me how to do that using Root Explorer.)
INeedYourHelp said:
For someone in the United States, where's the best place to purchase an unlocked one? I can't find any on US ebay and only like 3 on CA ebay.
Click to expand...
Click to collapse
The states ones are all carrier exclusive, not sure when they'll have unlocked ones available?
Aqua1ung said:
Silly question: how do you uninstall apps after rooting? (I'd appreciate teaching me how to do that using Root Explorer.)
Click to expand...
Click to collapse
i do it via busybox or any other terminal app
using command lines:
cd /directory/where/apps/reside
rm WhateverName.apk
there is a topic in one of the 23+ SGS sub forums with a full list of all the Apk safe to remove, but i can't find it because i forgot which of the so many forums we have are storing it
this is why we need this to happen
http://forum.xda-developers.com/showthread.php?t=764084
AllGamer said:
i do it via busybox or any other terminal app...
cd /directory/where/apps/reside
rm WhateverName.apk
Click to expand...
Click to collapse
So is this just a matter of deleting the corresponding .apk file? Or is there something more to it? If the former holds, then how can I tell where the undesired (i.e. stock) applications are located for the I9000M?
found it, here's the topic you want to remove the stuff you don't want
http://forum.xda-developers.com/showthread.php?t=712546
AllGamer said:
found it, here's the topic you want to remove the stuff you don't want
http://forum.xda-developers.com/showthread.php?t=712546
Click to expand...
Click to collapse
Thanks. Where would I find the apps that you listed as safe, such as Tunes and Apps and the rest? Those look to me to be better deletion candidates.
Look, I know this isn't the right thread to be posting in, but I have a dying question to OP.
How did you root your i9000m? I cannot seem to root mine! Nor can I find a confirmed method of doing it.
roma17 said:
Look, I know this isn't the right thread to be posting in, but I have a dying question to OP.
How did you root your i9000m? I cannot seem to root mine! Nor can I find a confirmed method of doing it.
Click to expand...
Click to collapse
follow step one
http://forum.xda-developers.com/showthread.php?t=747235
and if you want to unlock you phone too
follow step two
AllGamer said:
follow step one
and if you want to unlock you phone too
follow step two
Click to expand...
Click to collapse
and you're absolutely sure that if i follow step one correctly, that the phone will be rooted? (Yes I know nothing is sure, but I just need to hear it from you).
roma17 said:
and you're absolutely sure that if i follow step one correctly, that the phone will be rooted? (Yes I know nothing is sure, but I just need to hear it from you).
Click to expand...
Click to collapse
those are proven steps that i used on my phones
Before this thread gets hijacked, would you mind answering my question above: Where would I find the apps that you listed as safe, such as Tunes and Apps and the rest? Those look to me to be better deletion candidates.
Thanks.
Edit: alright, I think I found'em. What's tn55-android-blur.apk? The TeleNav application by any chance?
updated
- Krazy Kart Racing (from Konami) cartoonish kart racing game, fun!
Any chance of an apk dump of "Social Hub Push Email and IM" and "Radio Companion" apps? (assuming that they are legal to share, these aren't in my JP3 app store).
I would also ask for Krazy Kart Racing, but pretty sure thats a paid app and I don't wanna break any rules lol..
Otherwise, if no-one can share anything... what firmwares are these apps available for? just the non-beta ones? or just for the bell i9000?
Yes, bell i9000m JH2 is the latest official ROM from Kies
it is compatible with I9000 international, but you will need Odin to flash it
or do the KIES cheat as mentioned in another topic, to make the changes in the registry, so it will download Bell JH2 for you.
But as far as i know, if they are included as freebies inside Samsung Apps, it should also be available to the international i9000 ROMs with Samsung Apps
Thanks for the reply AllGamer
Sorry that I'm a little confused, are the radio and social hub push email included in the firmware or downloadable from the samsung apps store?
Do you know how samsung app store determines phone version? Can we fake this through build.prop or something to download the latest apps, or does it have a more complicated check?
Only cause it seems that the number of apps available to JP3 is limited (and I wanna stick to this firmware for now, it's awesome )
Hello all,
When I first booted my tablet I really couldn't wait to see how my games looked on it, but it wasn't long before I discovered that applicationdata wasn't shared between devices logged in with the same google account. That's where DataSync comes in. DataSync lets you share applicationdata and files/folders on your phone with other Android devices like your tablet, so that both devices have the same settings and games on both have the same levels unlocked. Syncing to and from Dropbox or Box is supported as well in case there's no WiFi network available. DataSync+ also supports automatically syncing/backing up applications either on the SDcard or cloud, Bluetooth synchronization and local backups of apps and their data, scheduled and real-time as you open and close your apps.
DataSync features:
- Parallel file/appsync
- Holo-themed and tablet-optimized UI
- Automatic multicast device-discovery
- Optional Dropbox and Box sync
- Quick Sync shortcut to sync data in two clicks
DataSync Beta features:
- Completely rebuild from scratch, it's faster, more efficient and more intuitive
- Brand new UI, holo themed for all devices
- Background syncing support, with Jelly Bean notifications on 4.1+ devices
- Safe app syncing (choose to up/download per app, free feature)
- FTP support
DataSync+ adds:
- Schedule automated syncs of your apps
- Real-time syncing as you open/close your apps (Beta)
- True two-way syncing
- Syncing via Bluetooth
- Syncing via NFC (Beta)
- Create and restore local backups
{
"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"
}
https://market.android.com/details?id=com.quintstoffers.DataSync
Good luck with your app!
Sent from my Xoom using Tapatalk
Hey all,
I just wanted to let you all know that I've updated my application so that you can now also send and receive files or folders stored on your SD-card. You don't need SU rights for that, so pretty much anyone will be able to use it .
Quipeace
hi there, just discovered your app and it seems to be just what I've been looking for
But i have some questions:
1. is there a way for automaticly run the queque, for example with tasker (with an action-intend or something similar)?
2. how can a quoque be saved as default without using a shortcut?
3. are there any problems if i sync game data from my phone to my tablet? in the market a comment mentionet a fc problem after syncing to xoom (which is also my tablet).
Hi,
I already replied per e-mail, but i figured a reply here would be useful to others as well.
1. At the moment there's no way to schedule a queue for up/download. I am however working on both scheduling via DataSync and other apps (like tasker).
2. Yes, just save a queue without ticking the "create shortcut" box .
3. There's an issue with the app's libraries dissapearing. It's similar to what sometimes happens with TitaniumBackup. I'm working on a fix that backup's the app's libraries and copies them back to where they belong after the sync, so that should resolve the FC issues.
A logcat is very useful, so just e-mail me one if you have an app crashing after syncing .
Quint
Great software!
I have two questions:
1. How can I restore a backup tar file (I have sent you an email about this already, sorry)?
2. How can I load a saved queue after I have closed DataSync?
Thanks in advance!
Dude I love datasync exactly what I need fast and easy just Make sure your port 4444 is open
You shouldn't need to open the port, since it's all done locally over your own network, if for some reason DataSync can't connect, change the ports in the settings .
You can restore a backup by long-pressing an app's entry, if nothing pops up there's no backup to be restored. You can load a saved queue by tapping the queue's entry at the top of the applist . (Already replied by e-mail, but as usual I'll post the answers here as well)
Can you please make it work with Temple Run and Death Rally?
Thanks!
What about files that already exist? Are they completely copied again?
Because I would like to keep the Camera folders on both my phone and tablet in sync, kinda like Apple's iPhoto
Hi there,
At the moment it will simply overwrite existing files. I originally wrote the file sharing feature for appdata sharing only, there overwriting the files makes sense. I'm planning to release another update soon so you'll be able to choose whether to overwrite or not .
As for Temple Run (and probably Death Rally as well), it stores it's data on the SD-card at /android/data/TEMPLE_RUN_PACKAGE. For now you'll have to manually sync that data. I'm working on including data stored on the SD-card as well .
Thanks....currently yours is the only one that can sync between tablet and phone on wifi without going through an intermediary like Dropbox, so being able to keep media in sync without having to do the entire cycle again is a boon.
I'm guessing it's a per folder setting? And will we be able to sync different folder structure according to device, instead of the current method of forcing the same folder structure? Because on my S2 it's sdcard/external_sd, while on Tab 7.7 it's sdcard/ExtStorages/sdcard - irritating.
For now it's a global setting, I'm pretty busy working on other features (including scheduling), so it's pretty low priority at the moment. I added the per-folder thing to my to-do list though! The next update will also work with multiple storage locations, providing they're mounted at /mnt on your device
Great, thanks for the replies. Will wait patiently for the updates.
Just bought Datasync+ to support ya, but did not see the overwrite or not option in changelog. I assumed it's not in this update yet?
Edit : nvm, saw it in settings! Much thanks! Good job!
kenkiller said:
Just bought Datasync+ to support ya, but did not see the overwrite or not option in changelog. I assumed it's not in this update yet?
Click to expand...
Click to collapse
Oh it is.in there, I just forgot to add it to.the changelog . Thanks for thr support!
Quipeace said:
Oh it is.in there, I just forgot to add it to.the changelog . Thanks for thr support!
Click to expand...
Click to collapse
Looking forward to more stuff - no pressure.
And an easily accessible overwrite or not toggle would be nice, without having to dig in settings every time I switch between syncing media and syncing saved data.
Yeah, it was a pretty quick fix, just so you can stop overwriting in the first place. I'm going to make that more user-friendly soon. I'm now working on having a dedicated SMS/MMS/WifiAP/etc backup entry .
Aside from the little Dropbox issue last night the release of DataSync+ went pretty smooth. There seems to be a nice demand so far ^.^
Is there any way to see what's on the queue without actually doing a sync?
EDIT: Ah, swipe up will show it! I guess I didn't pick up on the visual cue of the triangle at the bottom. But one thing I notice is if I start the sync then swipe down to hide the queue then swipe up again to show the queue, there's nothing there. Have I cleared the queue or is it just a display thing?
It automatically clears the queue after synchronization so you don't have to remove the synced apps from the queue after syncing. You can turn it off in the settings menu
Question to EVERYBODY:
do you have an idea to recognize any ROM easily? I already use the SDK function, it is not enough I think.
Description
2BOrange provides an easy way to install ROM or any package on a device, get push notification of the updates, a powerful GPS device localizer which resist to hard reset, and few other tools to improve your device experience (system app uninstaller, task killer...).
https://play.google.com/store/apps/details?id=com.pommedeterresautee.twoborange2
What you can do:
As a user:
- download a ROM / Kernel... from our server and install it with two click
- get push notification when update are available
- Protect your phone against loss with a GPS localizer.
- Backup / Restore your phone
- Uninstall system application
- Kill background tasks
- get some technical information about your device
As a developer:
- upload your stuff on www.2borange.com server OR make a link to your server / Dropbox
- create your own script to manage your ROM
- add some add on package easily
What is improved compared to other ROM Manager:
- easy and quick to create an account on the server
- easy way to implement your own script to manage your ROM
- push notification to users when you upload your stuff (use the C2DM Google technology -> don't use any extra battery)
- a very beautiful interface (original + follows Google UI guidelines)
- you can have download from a link to your personal server, or even a Dropbox account!!!
- Add Md5Sum Check (file integrity check)
How Does ROM Manager part works?
Short version:
You can post on the server a zip plus the shell script to install the zip on the device.
Long version:
There are 2 parts in the project, a website, and an Android application.
Android application download files and execute it on the phone.
The website is used to upload the package.
A package is composed of two parts:
- a mandatory text file which contains the shell commands to execute
- an optional zip file which contains any file necessary to the execution of the command, like a ROM to install.
The website address: http://www.2borange.com
ROM Supported:
- SLIM (Samsung i9000, SG2, Vibrant, Nexus, Crespo, Crespo 4G)
- Tiramisu (Samsung i9000)
- Sedan Class (Samsung Vibrant)
MOD Supported:
- Beats Audio&Xloud (any phone) What is different from other GPS localizer available on Google Play:
- uses Google C2DM technology, it means that even s your phone is always ready to send its GPS position to you, it doesn't use any extra battery
- if your phone is rooted, the application will resist to a hard reset, as soon as the phone is reused (registration with Google server) the application is able to send its GPS position to you.
- if GPS is not available, application uses GSM triangulation (less precision but works almost everywhere)
Is it Free ? Is it Open Source?
It is totally free.
Android application is open source (GPL 2 License), no paid version to come.
I have tons of ideas for the next steps, but I want your opinion, don't hesitate to ask me to add some functions, I will be happy to program it.
Give it a try and share your opinion here.
Regards.
{
"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"
}
Version:
5/02/12: remove some categories to simplify things
5/02/12: rewriting of important part of the source code
4/23/12: improve support of external server + fix bunch of bugs
4/20/12: add support of external server
4/15/12: fix 1 bug + change comportment of search box (thanks to Misterjokerboy )
4/14/12: fix 2 bugs + possibility to have another background on the app (file to put: /sdcard/bg.jpg)
4/12/12: fix the first public bug relative to GPS localization on ICS
4/10/12: First beta
Ohh yeah, you release a new version ?
Yep!!!
Totally new interface, rewrite almost everything.
I hope people will love it, what do you think about the new UI?
just try the GPS localizer, it works well, that s cool
however put some color in the email you send
ponpadour said:
just try the GPS localizer, it works well, that s cool
however put some color in the email you send
Click to expand...
Click to collapse
Thanks, for the moment I want things to work well, and I am glad to know it is the case for you.
Have you tried the scripts?
Happy to see your project back!
Tried one script, execution is Ok on my SG 2
How does work your app?
Iloveyouandroid said:
How does work your app?
Click to expand...
Click to collapse
Lol! Which part?
The 'Find my phone' part of the applications doesn't work on Galaxy Tab p1000 with unofficial CM9 4.0.3.When I reqest location on the webpage,the application on the tablet force closes and nothing happens...no email and nothing. Please fix it,and if I can help on anyway then please let me know (log file on the tablet or anything).
Thank you!
t.benedek92 said:
The 'Find my phone' part of the applications doesn't work on Galaxy Tab p1000 with unofficial CM9 4.0.3.When I reqest location on the webpage,the application on the tablet force closes and nothing happens...no email and nothing. Please fix it,and if I can help on anyway then please let me know (log file on the tablet or anything).
Thank you!
Click to expand...
Click to collapse
Hi benedek92,
The good news is that your tablet FC after you request the position, it means the notification arrives to your tablet.
My guess is that the bug is due to the localization process, as it uses both GPS and GSM. Because your tablet have no GSM connection, the request to this function probably creates the FC.
You can help me easily, can you install the application "alogcat". It shows a log of your phone. After installing it, ask for a GPS localization. It will FC. After the FC, goes in alogcat, and in the text, you will see red text. It is the error.
In alogcat, you can share the log (option button), send it to me to this email: contact[at]2borange.com (please replace the [at] by @) or post it in this thread.
It should be not so hard to fix.
Thank you for your help!
snoopy33 said:
Hi benedek92,
The good news is that your tablet FC after you request the position, it means the notification arrives to your tablet.
My guess is that the bug is due to the localization process, as it uses both GPS and GSM. Because your tablet have no GSM connection, the request to this function probably creates the FC.
You can help me easily, can you install the application "alogcat". It shows a log of your phone. After installing it, ask for a GPS localization. It will FC. After the FC, goes in alogcat, and in the text, you will see red text. It is the error.
In alogcat, you can share the log (option button), send it to me to this email: contact[at]2borange.com (please replace the [at] by @) or post it in this thread.
It should be not so hard to fix.
Thank you for your help!
Click to expand...
Click to collapse
Hy, I put SIM card in the Tab,but still force closes.Here is the log.
Thanks for quick response Keep up the good work!
t.benedek92 said:
Hy, I put SIM card in the Tab,but still force closes.Here is the log.
Thanks for quick response Keep up the good work!
Click to expand...
Click to collapse
Ok, there are 2 bugs:
- you did not get your notification because you have no phone number!
- the second is about new strict mode policy of Java application, it makes the app crash
Both are easy to fix I will do it tonight as now I am at work
Thank you a lot for your bug report, I will post here a beta beta version p) tonight.
Regards
snoopy33 said:
Ok, there are 2 bugs:
- you did not get your notification because you have no phone number!
- the second is about new strict mode policy of Java application, it makes the app crash
Both are easy to fix I will do it tonight as now I am at work
Thank you a lot for your bug report, I will post here a beta beta version p) tonight.
Regards
Click to expand...
Click to collapse
Awhh,you are awesome. But what do you mean under that I have no phone number? I use my Tab as a phone
t.benedek92 said:
Awhh,you are awesome. But what do you mean under that I have no phone number? I use my Tab as a phone
Click to expand...
Click to collapse
If your phone is stolen or lose, having the GPS is good, but having the phone number of the inserted SIM card could be cool also (you can call directly the new "owner" of your phone).
That is why I included the phone number in the GPS localization Email.
I have not thought to the tablet which have no phone number (SIM card for tablet are just for data).
How do you use your tablet as a phone? Through Skype or directly like any phone? I mean you have a phone number where people can call you on your tab? As per the log you sent me there is no phone number associated with your tab!
snoopy33 said:
If your phone is stolen or lose, having the GPS is good, but having the phone number of the inserted SIM card could be cool also (you can call directly the new "owner" of your phone).
That is why I included the phone number in the GPS localization Email.
I have not thought to the tablet which have no phone number (SIM card for tablet are just for data).
How do you use your tablet as a phone? Through Skype or directly like any phone? I mean you have a phone number where people can call you on your tab? As per the log you sent me there is no phone number associated with your tab!
Click to expand...
Click to collapse
The original Galaxy Tab can be used as a GSM phone. So yes,I have a phone number where people can call me.This is my 'mobilephone'.
But here is another log,I hope it can help
t.benedek92 said:
The original Galaxy Tab can be used as a GSM phone. So yes,I have a phone number where people can call me.This is my 'mobilephone'.
But here is another log,I hope it can help
Click to expand...
Click to collapse
In this log too there is no phone number! Means probably that there is probably a special API for your tablet.
I will fix the 2 bugs I ve discovered in your logs so you will be able to localize without crashing (but no phone number in the email), and after I will try the app on the emulator with the Samsung tablet image to see how I can fix that.
Regards
Well, thank you. It would be great when I would be able to recieve the location via email. Thank you for this app
Can the custom ROM be the problem?
BTW,if I remember well,in Eclipse there is Samsung Galaxy Tab emulator but with Froyo.
Sent from my GT-P1000
t.benedek92 said:
Well, thank you. It would be great when I would be able to recieve the location via email. Thank you for this app
Can the custom ROM be the problem?
BTW,if I remember well,in Eclipse there is Samsung Galaxy Tab emulator but with Froyo.
Sent from my GT-P1000
Click to expand...
Click to collapse
Ok, I think I have fixed everything.
Can you try with this file?
snoopy33 said:
Ok, I think I have fixed everything.
Can you try with this file?
Click to expand...
Click to collapse
Awesome! Everything works
Thank you!
Sent from my GT-P1000
t.benedek92 said:
Awesome! Everything works
Thank you!
Sent from my GT-P1000
Click to expand...
Click to collapse
Glad to hear!!!
I have pushed the update on the market.
Because the version I have posted for test on the forum was not signed with my Google certificate, you will have to uninstall it before installing the market version.
Regards
just brought this to help out optimus users
1.Requires root: SD Maid Next 1 can free up your memory
https://play.google.com/store/apps/details?id=eu.thedarken.sdm
2.7zipper- You can use to decompress 7z files (ps1 games are usually compressed liked this) fpse won't play the games in this format so you need to decompress them you can just use a pc but if you don't have 1 and own a ps1 game this is a great tool https://play.google.com/store/apps/details?id=org.joa.zipperplus7
3.Multi Picture Live Wallpaper- great live wallpaper that allows you to set various a wallpapers per homescreen it has many customisation features to many to list here
https://play.google.com/store/apps/details?id=org.tamanegi.wallpaper.multipicture
4.Scan Media-simply runs the phones media scanner which I was astonished that really the only way to do this (at least with my phone) was by unmounting and remounting the sd card you have to do this sometimes especially if u download something after you turn on your phone some applications won't find the media unless you do this
https://play.google.com/store/apps/details?id=com.dcd.scanmedia
5.Easy Downloader- it speeds up downloads and can be used to download videos
https://play.google.com/store/apps/details?id=com.et.easy.download
6.Utorrent- from the same people who made the PC version also who invented the protocol anyways it can be used to download torrents directly from your phone it is the only torrent app I used that actually works on my phone
https://play.google.com/store/apps/details?id=com.utorrent.client
7.Pirate Bay Browser- it can be used to search an find torrent files (from pirate bay) it has a very nice interface and works great with utorrent making it very easy to find and download torrents when coupled together
https://play.google.com/store/apps/details?id=net.caffeinelab.pbb
8.Requires root: Links2sd- a must have it can be used for uninstalling system apps moving apps to system memory it makes every app able to move to the sd card it can do lots of things
https://play.google.com/store/apps/details?id=com.buak.Link2SD
9.Mx Player- it is the best video player I've used great if your having problems playing videos and a million times better than the system player
https://play.google.com/store/apps/details?id=com.mxtech.videoplayer.ad
10.Tiger Arcade- it can be used to emulate mame and neo geo games it can also be used for cps1 and 2 and d mame also you'll need a bios file called neo geo.zip to emulate neo geo games (Google it) anyways this is the free version in order to enable saving you'll need to buy it anyways this app isn't on the play store anymore so I put it on drop box
http://db.tt/xDIi4eUO
11.Whatsapp- if you don't have it WTH r u waiting for best instant messaging app on android it's cross platform (android IOS BlackBerry Windows etc) lots of features is just great
https://play.google.com/store/apps/details?id=com.whatsapp
12.Voxer- it's a PTT (push to talk) app basically kinda like a walkie talkie you basically hold down a button start talking and that's your friend receives it and the cycle continues no more need to type that's old school lol
https://play.google.com/store/apps/details?id=com.rebelvox.voxer
13.Viber- you can use it to make voice calls over the internet yes you can use it to make FREE calls over the internet the call quality is great (much better than regular calls) as long as you have a good connection it also doubles as a messaging app though no where near as full featured as whatsapp the main draw is that messages pop right up on the screen so you can reply without actually entering the app
https://play.google.com/store/apps/details?id=com.viber.voip
14.Smileys for Chat- So you got your social apps down what u need now is a smiley app lol this app is a collection of images memes etc that you can use to spice up some chats
https://play.google.com/store/apps/details?id=com.androidsx.smileys
15.App Lock- it's used to lock applications you select with pin patterns etc has features including widget for toggling locks on and off
https://play.google.com/store/apps/details?id=com.domobile.applock
16.Simple Text- Used to create widgets using text and shapes pretty good if you know what your doing
https://play.google.com/store/apps/details?id=com.redphx.simpletext
17.Stick Fighter- can be used to make stick man animations directly from your phone this app uses a method where u get some figures and adjust joint and placement etc to create animations
https://play.google.com/store/apps/details?id=com.tweber.stickfighter.activities
18.Stick Draw- It's also used for stick man animations with this app u have to actually draw the figures though that sounds bad it really isn't this has a lot of features and I prefer this to stick fighter but everyone might not feel that way so I put em both
https://play.google.com/store/apps/details?id=com.bingzer.android.stickdraw
19.Opera mini- this is the extra mini version (there two versions this 1and the full-fledged browser) that I use when I want to get something quick and I don't wanna go into dolphin
https://play.google.com/store/apps/details?id=com.opera.mini.android
20.Requires root:Ad free- Best app ever it removes ads from applications
https://play.google.com/store/apps/details?id=com.bigtincan.android.adfree
21.G-Reader- u can use it to subscribe to feeds and read then right on your android device I use it to keep up with my tech news all my friends wonder how an so informed lol
https://play.google.com/store/apps/details?id=com.noinnion.android.greader.reader
22.Crack your screen- fool your friends into thinking you cracked your phones screen even better if your can somehow get it installed on their phone
http://market.android.com/details?id=mk.g6.crackyourscreen
23.Dropbox- cloud storage application use your upload files to a cloud comes with 2gb free storage also has a desktop so you can use for immediate integration
http://market.android.com/details?id=com.dropbox.android
24.ImageSearch- image search application can search images by file type size etc great if you wanna download done pics quick without entering a browser
http://market.android.com/details?id=com.wagachat.imagesearch
25.My Data Manager- use to monitor you data usage can use to a data plan view how your using data view what apps are using data on pie chart graph and other forms it's great if your on a limited data plan
http://market.android.com/details?id=com.mobidia.android.mdm
26.Speed Test- use to test the speed of your internet connection can test Wi-Fi or mobile network connection
http://market.android.com/details?id=org.zwanoo.android.speedtest
27.XDA-needs no introduction a mobile app for connecting to XDA
http://market.android.com/details?id=com.quoord.tapatalkxda.activity
28.WiFi kill-can kill the connection of people on a Wi-Fi network can only be legally used on your network
http://db.tt/gV5gUqyj
29. Wi-Fi Mac address changer- can use to change your Wi-Fi Mac address and browse anonymously or another example would be this network that I own in which this app may be used I set it up in a way (just 2 test d app) where you can connect but if you try to go online you get a page with a prompt asking for your password so what I did was use Wi-Fi kill to find out the mac address of pc currently connected to the Wi-Fi networks Mac address then change my Mac address to that and presto chango I could use the network
http://db.tt/v0LWFxJp
30. Network Spoofer- can do various things to a network your connected to like change all pictures to a pre selected 1 blur images flip images redirect to a particular website change text in Google searches change all YouTube videos to a pre defined one ETC but can only be legally used on your network
Netw
http://db.tt/13r2QZKz
31. Requires root : DroidSheepGuard FREE- guards against those attacks apps above use when connecting to public Wi-Fi networks it also comes automatically when connecting to Wi-Fi networks
http://market.android.com/details?id=de.trier.infsec.koch.droidsheep.guard.free
32.Quickpic-stock gallery app alternative http://market.android.com/details?id=com.alensw.PicFolder
33.Zedge- The app for zedge's mobile site it has games wallpapers live wallpapers but what I mostly use it for is ringtones instead of having to open up a browser I can do it from this little app and you can't beat the price of free
http://market.android.com/details?id=net.zedge.android
34 Virtual world 4 live wallpaper- very cool live wallpaper that uses your gyroscope and accelerometer to simulate a 3d virtual environment works surprisingly well
https://play.google.com/store/apps/details?id=Hammer.App.Vw2
35. Dock4Droid- kind of like rocket dock for PC and the dock u get on Mac pretty cool has customization options but some features don't come in the free version but it's still good
http://market.android.com/details?id=com.urbandroid.dock
36. Jump gate live wallpaper- a cool 3d live wallpaper where you see an android flying through space he can do a barrel roll if you double tap on him
https://play.google.com/store/apps/details?id=fishnoodle.jumpgate_free
37. Desktop visualizer- use to set images as widgets
https://play.google.com/store/apps/details?id=jp.co.bii.android.app.dskvzr
38.Barcode Scanner-
Use for scanning barcodes
https://market.android.com/details?id=com.aurorasoftworks.quadrant.ui.standard&feature=order_history
40.Memory Booster-
Boost the RAM on your phone.
https://market.android.com/details?id=imoblife.memorybooster.lite&feature=search_result
41.Stopwatch and Timer-
I know what you thinking and no android doesn't come with 1 lol
https://market.android.com/details?id=com.sportstracklive.stopwatch&feature=search_result
42.Sky.FM radio-
Internet radio
https://market.android.com/details?id=com.audioaddict.sky&feature=search_result
43.Fancy Widgets-
Pretty self explanatory lol
https://play.google.com/store/apps/details?id=com.anddoes.fancywidgets
44.Picsay-
Simple photo editor with just the right amount of features lol
https://market.android.com/details?id=com.shinycore.picsayfree&feature=search_result
45.Agile Lock Free-
Sense 3.0 locksreen
https://market.android.com/details?id=com.nanoha.SenseScreen&feature=search_result
46.Ringtone Maker Free-
Make ringtones DUH!
https://market.android.com/details?id=com.buble.fresh&feature=apps_topselling_new_free
47.Best Voice Changer-
Changes your voice.
https://market.android.com/details?id=com.scoompa.voicechanger&feature=apps_topselling_new_free
48.Funny Facts Free 8000
Funny facts lol
https://market.android.com/details?id=com.srsdev.allfacts&feature=search_result
49.*requires root* Titanium Backup ★ root-
Data backup, I know most people already have this but if u don't have it is the best backup app by faaaar I mean like seriously lol
50.Airdroid-
Send a file from your PC to your phone over a WiFi network
https://market.android.com/details?id=com.sand.airdroid&feature=search_result
51.Poweramp Music Player-
Best music player in my opinion
https://play.google.com/store/apps/details?id=com.maxmpz.audioplayer&feature=search_result
52.Unified Remote-
Use your android as a remote for your pc
https://play.google.com/store/apps/details?id=com.Relmtech.Remote&feature=search_result
53.TweetCaster for Twitter-
Alternate Twitter App
https://play.google.com/store/apps/details?id=com.handmark.tweetcaster&feature=search_result
54.Wallbase HD Wallpapers-
Over a million HD Wallpapers
LOL
https://play.google.com/store/apps/details?id=com.citc.wallbase&feature=search_result
56.Netflix-
I don't have have a Netflix account but if you do this app is great for watching Tv series and shows
https://play.google.com/store/apps/details?id=com.netflix.mediaclient&feature=search_result
57.Tubemate- alternative YouTube video application can select resolution to watch videos in and can download YouTube videos
http://db.tt/DK1iB8O1
GAMES
58. Bubble Shooter- can't beat a good old fashion bubble shooter right here a cool 1
http://market.android.com/details?id=com.game.BubbleShooter
59. NinJump-cool addictive game you jump from walls left and right dodging shiurkens obstacles and collecting power ups
http://market.android.com/details?id=com.bfs.ninjump
60. PewPew 2- basically geometry wars for android if you don't know what geometry wars is its basically a game where your a spaceship on a flat landscape and your move around dodging and shooting enemies
http://market.android.com/details?id=com.jyaif.pewpew2
61. SketchIt- an online game where you play against people in real-time trying to guess what someone is drawing
http://market.android.com/details?id=com.into.sketchit
62. Speedx 3D- pretty cool 3d motion based game where you choose obstacles
http://db.tt/mntG0UMx
63. Devil Ninja2- a side scrolling game where.you run jump attack and dodge enemies pretty addictive
http://market.android.com/details?id=com.droidstudio.game.devil2
64. Hill Climb Racing- a physics based game kinda of like trial racing just that this is fun lol
http://market.android.com/details?id=com.fingersoft.hillclimb
65. Line Runner- a side scrolling game where you jump and roll to avoid obstacles it's kinda hard though
http://market.android.com/details?id=com.djinnworks.linerunnerfree
Apps contd
Avast-
RobustSecurity application
https://play.google.com/store/apps/details?id=com.avast.android.mobilesecurity
*Requires root* Faceniff-
Can use to test the security of your own network can hack facebook passwords YouTube passwords and some others I forgot but fb's enough to float my boat free version only allows 3 facebook passwords to be hacked
http://db.tt/3VhohkON
*Requires root* Droid sheep- I never used this one (I use faceniff) but I heard it's like faceniff but free so yeah lol
http://db.tt/YoUL38Lk
Next launcher- from the same people that brought you go launcher is really cool has done nice features but it's in beta so some things aren't present but you can try it out if you want
http://db.tt/JdZE3w1W
*Requires root* Game CIH- use to edit game files can edit things like cash money points ETC but it's kinda hit and miss how it works is that u open it hit home (it'll stay open on the background) now open the game u wanna edit and there'll be a toast in the upper part of the screen hit the magnifying glass and search for what you wanna change you can search name or numbers search for a make example cash and see what u find but you won't necessarily find anything relevant since the dev probably didn't name it that if you need any help just comment or pm me or something
http://db.tt/R1LQ7qy9
Fing-
Network Tools use to see your network can give you more accurate info I use with network spoofer since network spoofer barely ever shows up anything connected to a network so I just use this copy the up address and then put it in network spoofer
http://market.android.com/details?id=com.overlook.android.fing
Galaxy S3 Dandelion- s3 dandelion live wallpaper
http://market.android.com/details?id=com.androidwasabi.livewallpaper.dandelion
gTunes music download- music downloader mostly downloads in m4a format (which is really small) so it's my go to app so I don't have to open a browser
http://market.android.com/details?id=free.mp3.dlv6
Go Launcher- robust launcher with tons of themes and customization options
https://play.google.com/store/apps/details?id=com.gau.go.launcherex
Holo launcher- lightweight launcher instead of using something as robust as go launcher
https://play.google.com/store/apps/details?id=com.mobint.hololauncher
Memory booster RAM optimizer- self explanatory
https://play.google.com/store/apps/details?id=imoblife.memorybooster.lite
*Requires root* Root explorer-
Use to explore system
https://play.google.com/store/apps/details?id=com.speedsoftware.rootexplorer
BobClockD3- Really cool clock widget
http://market.android.com/details?id=bob.clock
Custom ICS Search-
Google search widget with ICS theme
http://market.android.com/details?id=jp.u1aryz.products.icssearchwidget
SiMiClock-
Click widget comes in various sizes also comes with weather widget
http://market.android.com/details?id=com.th.android.widget.gTabsimiClock
Meme Generator Free-
Well it's a meme generator lol has app2sd support and offline functionality
http://market.android.com/details?id=com.zombodroid.MemeGenerator
Next Honeycomb live wallpaper
Live wallpaper has moving lights under a honeycomb pattern
http://market.android.com/details?id=com.gtp.nextlauncher.liverpaper.honeycomb
OffLine Browser-
Browser that can save websites for offline viewing
http://market.android.com/details?id=it.nikodroid.offline
SiMi Folder-
Folder widget
http://market.android.com/details?id=com.th.android.widget.SiMiFolder
Share Apps http://goo.gl/8BGU3
iStunt2-
Accelerometer controlled 2d snow boarding game
http://market.android.com/details?id=com.miniclip.istunt2
Plants war-
Really cool game kinda like DOTA for PC has great graphics
http://db.tt/vnIKG8ed
Startup Manager-
Use to manage apps that start at boot can make booting faster and prevent startup crashes
https://play.google.com/store/apps/details?id=imoblife.startupmanager
App Quarantine-
App freezer though apps like link2sd and titanium backup can freeze apps also this app can do it via widgets making freezing and unfreezing unfreezing faster painless process
https://play.google.com/store/apps/details?id=com.ramdroid.appquarantine
Go!Chat for Facebook
I didnt really used to talk to that much people on fb that much via messaging on a regular basis but i recently started talking to someone and wanted to receive notifications so long story short
Facebook app apparently doesn't give messaging notifications
Facebook messenger worked great the day I downloaded it then stopped the next day I kept checking to see if it was getting killed but wasn't just didn't wanna give notifications (why Facebook whhhy!)
Friendcaster is bad at any notifications all together so this was just 1 of them if I wanted to get proper notifications I'd need the pro version
Friendcaster Chat could only message people who were online and by online I mean on a computer if there on a phone won't work
this was the only 1 I've tried that worked
http://market.android.com/details?id=com.spartancoders.gtok
added January 8 2013
A1 CPU Tool- Use to monitor your CPU in real time great for custom kernel users
http://market.android.com/details?id=com.a1dev.cputool
Ttorrent- I used to use utorrent for downloading torrents but I recently found this and its leaps and bounds better than uttorent it offers download speed limiting upload speed limiting download queing setting Max active downloads background downloading selecting which files you want to download from a particular torrent giving partulicular files priority ability to use a proxy even torrent creation the free version is however limited to 250kb/s download speeds
https://play.google.com/store/apps/details?id=hu.tagsoft.ttorrent.lite
Facebook page manager-
Facebook finally released an app allowing u to manage pages from ur phone u can get notifications view get messages for your page see likes etc it hasn't been officially released and is only available in some regions but I got the apk so here it is
http://db.tt/5Ua6fjZW
This post uses the patented TingTingin®™ method I would teach it to you but you are not yet worthy (come back in a hundred years)
you are missing:
router keygen
pdanet
camera ics±
better battery stats
quickpic
droiwall
flashlight
and some other apps,nice job anyway!
Don't know whether OP just copied and paste this from somewhere else, since some files have been removed (on dropbox).
sweetnsour said:
Don't know whether OP just copied and paste this from somewhere else, since some files have been removed (on dropbox).
Click to expand...
Click to collapse
totally agree with sweetnsour
edit as faceniff and droidsheep are password hacking apps thats why they have been removed.
androidisfuture said:
edit as faceniff and droidsheep are password hacking apps thats why they have been removed.
Click to expand...
Click to collapse
I guess you're right. But there are some other links that are broken (forgot which one though, one's a market link).
> You forgot ANeko app, thats me
cool list, very useful, thanks!
sweetnsour said:
I guess you're right. But there are some other links that are broken (forgot which one though, one's a market link).
Click to expand...
Click to collapse
Actually I did copy and paste it but the original tread was mine and the reason the dropbox links are broken are because I moved them into a folder which apparently changes the links ill fix when I get home
original tread http://forum.xda-developers.com/showthread.php?t=2009859
Also if any if the market links are broken (I doubt though) its because I used a app called share app from the play store so I could get multiple links at once
Phone Slow? go HERE
_____________________________________
This post uses the patented TingTingin®™ method I would teach it to you but you are not yet worthy (come back in a hundred years)
--Sent from the future with a galaxy s4 like a freaking BAWS--
Links fixed
Phone Slow? go HERE
_____________________________________
This post uses the patented TingTingin®™ method I would teach it to you but you are not yet worthy (come back in a hundred years)
--Sent from the future with a galaxy s4 like a freaking BAWS--
Updated
Phone Slow? go ------>HERE<------
Ubuntu phone OS announced
{
"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 do u think share your thoughts --->HERE<---
_____________________________________
This post uses the patented TingTingin®™ method I would teach it to you but you are not yet worthy (come back in a hundred years)
--Sent from the future with a galaxy s4 like a freaking BAWS--
zeratos said:
you are missing:
router keygen
pdanet
camera ics±
better battery stats
quickpic
droiwall
flashlight
and some other apps,nice job anyway!
Click to expand...
Click to collapse
give links and a short description and ill add them with credits to u
neko95 said:
> You forgot ANeko app, thats me
Click to expand...
Click to collapse
Same I
Phone Slow? go ------>HERE<------
Ubuntu phone OS announced
what do u think share your thoughts --->HERE<---
_____________________________________
This post uses the patented TingTingin®™ method I would teach it to you but you are not yet worthy (come back in a hundred years)
--Sent from the future with a galaxy s4 like a freaking BAWS--
so i decompiled the original BTNotification app and after a lot of cleaning up and debugging and reverse engineering their systems, i have finally been able to cobble together a functional version of the app.
This is a customized version of the smartwatch companion app for MTK smartwatches with a few improvements !
No spyware !
The original app had a lot of spyware / analytics in it and i did my best to try and remove all of it
(if you notice any please let me know !)
Better notifications !
The icon that comes with notifications now has black background instead of white , gives better look to watches with black UI
more detailed notifications with more actionable information (like message text etc.) and notifications works with more apps !
can use standard notifications by enabling privacy mode, works exactly like the BTNotification app
Can use front camera for your smartwatch remote camera
just dial a call to the number 00*001 from your smartwatch or phone (the call is automatically blocked )
just call it again to switch camera to rear camera again.
Can open any HTML app / link on your smartwatch with the remote camera
just need to dial a call to the number 00*002 from your smartwatch or phone
call 00*003 to stop opening the app and switch to camera again.
[ by default this opens an analog watch, change the link in the app to open something else]
codes supported currently
switch camera = 00*001
open HTML mode = 00*002
camera mode =00*003
find my phone feature
the phone now vibrates and even if silent the phone will ring !
Release Notes
smarty V1.0.apk
changed minimum sdk version to 16 from 20
Smarty v0.1.ds.apk
uses dual signature v1 and v2
try this if getting "app not installed" error
Missing Features
Can't block certain apps from sending notification yet, looking to add this in soon!
test it out and see if you like it !
the app requires permission to notification and accessibility service simply for allowing both types of notifications.
XDA:DevDB Information
smarty, App for all devices (see above for details)
Contributors
mohtaprashantrocks
Version Information
Status: Testing
Created 2018-04-14
Last Updated 2018-04-23
Git hub repo
hey guys, i don't check XDA very often and am completely blown away by the responses on this thread , and although i am no longer in a position to be directly contributing to the project , i have uploaded the source code of the app to this github repo
i know this comes quite late , but i hope this will be of some use to you and anyone who comes across this thread in the future.
github?
I have some problem with installation this apk. In my tablet p3110 with lineageos 13 (6.01) does not want install this. I get finally communicate "app is not installed". On my g900f (lineageos 15.1) I installed this but I have some problem with system assebility, on my fault. Now I can't test this.
irtrin said:
I have some problem with installation this apk. In my tablet p3110 with lineageos 13 (6.01) does not want install this. I get finally communicate "app is not installed". On my g900f (lineageos 15.1) I installed this but I have some problem with system assebility, on my fault. Now I can't test this.
Click to expand...
Click to collapse
Could you post the exact error you get on g900f? about the p3110 , it might be an android version related issue will look into it.
kapsubm said:
github?
Click to expand...
Click to collapse
the code isn't in the most readable form but i could put it up if there are people willing to contribute :good:
No problem but it is my fault because I install something which break my permission in android settings. When I want to set permission of some application I get error. Coomunicate in Accessibility: "Because an app in obscuring a permission request. Settings can't verify your response". You do not think about it. It is my fault. Maybe, I correct this someday.
irtrin said:
No problem but it is my fault because I install something which break my permission in android settings. When I want to set permission of some application I get error. Coomunicate in Accessibility: "Because an app in obscuring a permission request. Settings can't verify your response". You do not think about it. It is my fault. Maybe, I correct this someday.
Click to expand...
Click to collapse
okay, i did however try to lower required android version so it might work on your tablet now, maybe it will. try v0.1.apk
It will be great because I frequently use snapchat on tablet.
Update: Unfortunately, it does not help. I cannot install this apk on tablet.
mohtaprashantrocks said:
so i decompiled the original BTNotification app and after a lot of cleaning up and debugging and reverse engineering their systems, i have finally been able to cobble together a functional version of the app.
This is a customized version of the smartwatch companion app for MTK smartwatches with a few improvements !
No spyware !
The original app had a lot of spyware / analytics in it and i did my best to try and remove all of it
(if you notice any please let me know !)
Better notifications !
more detailed notifications with more actionable information (like message text etc.) and notifications works with more apps !
can use standard notifications by enabling privacy mode, works exactly like the BTNotification app
Can use front camera for your smartwatch remote camera
just dial a call to the number 00*001 from your smartwatch or phone (the call is automatically blocked )
just call it again to switch camera to rear camera again.
Can open any HTML app / link on your smartwatch with the remote camera
just need to dial a call to the number 00*002 from your smartwatch or phone
call 00*003 to stop opening the app and switch to camera again.
[ by default this opens an analog watch, change the link in the app to open something else]
codes supported currently
switch camera = 00*001
open HTML mode = 00*002
camera mode =00*003
find my phone feature
the phone now vibrates and even if silent the phone will ring !
Release Notes
smarty V1.0.apk
changed minimum sdk version to 16 from 20
test it out and see if you like it !
the app requires permission to notification and accessibility service simply for allowing both types of notifications.
XDA:DevDB Information
smarty, App for all devices (see above for details)
Contributors
mohtaprashantrocks
Version Information
Status: Testing
Created 2018-04-14
Last Updated 2018-04-14
Click to expand...
Click to collapse
i would love to try this on my phone which is a chinese import thru aliexpress (PPTV KING7) running android 5.01 lollipop but i get an error message at end of install saying app no installed
irtrin said:
It will be great because I frequently use snapchat on tablet.
Update: Unfortunately, it does not help. I cannot install this apk on tablet.
Click to expand...
Click to collapse
B1ggles1 said:
i would love to try this on my phone which is a chinese import thru aliexpress (PPTV KING7) running android 5.01 lollipop but i get an error message at end of install saying app no installed
Click to expand...
Click to collapse
I've added a new build which should solve the issue on both of your devices. :good:
Try this file : Smarty v0.1.ds.apk
mohtaprashantrocks said:
I've added a new build which should solve the issue on both of your devices. :good:
Try this file : Smarty v0.1.ds.apk
Click to expand...
Click to collapse
Where do I find this file please?
You are a big. You are right, this version works on my tabet but option "find watch" doesn't work. Anyway, big thanks.
B1ggles1 said:
Where do I find this file please?
Click to expand...
Click to collapse
it is attached in the downloads section of the project
irtrin said:
You are a big. You are right, this version works on my tabet but option "find watch" doesn't work. Anyway, big thanks.
Click to expand...
Click to collapse
does the app show that the watch is not connected even if it is? if yes then try this, turn off bluetooth and click "restart service" in smarty app, that should automatically switch bluetooth on and try to connect to the smartwatch through the app.
:good:
Today, I checked this option again and does not works. I restarted application and bluetooth on my twice devices. It does not works. It is not bad for me because I do not use it. I only tested it and reported to you as appreciate your works. For me this is application is brilliant and works in 99%. Notifications works but for me the most imporant thing is that synchronization date and time works on dz09. It is really helpful. Thanks again.
irtrin said:
Today, I checked this option again and does not works. I restarted application and bluetooth on my twice devices. It does not works. It is not bad for me because I do not use it. I only tested it and reported to you as appreciate your works. For me this is application is brilliant and works in 99%. Notifications works but for me the most imporant thing is that synchronization date and time works on dz09. It is really helpful. Thanks again.
Click to expand...
Click to collapse
have you tested the front camera mode or html mode?
there could be further development on those and we might get basic apps like Google Maps to display on our smartwatch!
I am glad that the app is helpful for you, but can you check and tell me if the "find watch" feature works in the original BTNotification app, in that app it is called "Looking Watch", because if that doesn't work then your watch doesn't support this feature and we might have to trick it into playing sound.
thanks!
Smarty on dz09 (clone?)
Hello,
the application seems to be great but most of the pages in html mode do not open/appear at all. Is it an issue about memory (clone watch has not enough of it? Can i delete application that does not work anyway, like fb or sleepmonitor?). Sometimes says camera launch failed or just shows a blue square. Some pages would appear but first the 'accept cookies' layer pops up so can't see what's behind. Sometimes the bare/empty background appears (ie flightradar24 a grey background without planes etc.)
Anyway thanks in advance and well done so far, hope to see improvement soon...
Regards, Gyuriatya
Gyuriatya said:
Hello,
the application seems to be great but most of the pages in html mode do not open/appear at all. Is it an issue about memory (clone watch has not enough of it? Can i delete application that does not work anyway, like fb or sleepmonitor?). Sometimes says camera launch failed or just shows a blue square. Some pages would appear but first the 'accept cookies' layer pops up so can't see what's behind. Sometimes the bare/empty background appears (ie flightradar24 a grey background without planes etc.)
Anyway thanks in advance and well done so far, hope to see improvement soon...
Regards, Gyuriatya
Click to expand...
Click to collapse
you can get rid of the accept cookies prompt by accepting the cookies on your phone (in the smarty app itself), the web-page is loaded on the phone itself and streamed onto the watch hence there is no memory issue, but also there isn't really a way yet to control the web-page except the settings in the app itself , the biggest issue isn't memory but that the screen size is small to the point that many websites just don't support it well enough.
the feature is mostly intended to be used to develop our own simple web-apps that are designed with the screen-size limitations in mind,
however a few mobile versions of websites may work!
cheers!
Prashant
great app
would it be possible to have the list of applications for which to set up notifications? thank you so much
mohtaprashantrocks said:
so i decompiled the original BTNotification app and after a lot of cleaning up and debugging and reverse engineering their systems, i have finally been able to cobble together a functional version of the app.
This is a customized version of the smartwatch companion app for MTK smartwatches with a few improvements !
No spyware !
The original app had a lot of spyware / analytics in it and i did my best to try and remove all of it
(if you notice any please let me know !)
Better notifications !
The icon that comes with notifications now has black background instead of white , gives better look to watches with black UI
more detailed notifications with more actionable information (like message text etc.) and notifications works with more apps !
can use standard notifications by enabling privacy mode, works exactly like the BTNotification app
Can use front camera for your smartwatch remote camera
just dial a call to the number 00*001 from your smartwatch or phone (the call is automatically blocked )
just call it again to switch camera to rear camera again.
Can open any HTML app / link on your smartwatch with the remote camera
just need to dial a call to the number 00*002 from your smartwatch or phone
call 00*003 to stop opening the app and switch to camera again.
[ by default this opens an analog watch, change the link in the app to open something else]
codes supported currently
switch camera = 00*001
open HTML mode = 00*002
camera mode =00*003
find my phone feature
the phone now vibrates and even if silent the phone will ring !
Release Notes
smarty V1.0.apk
changed minimum sdk version to 16 from 20
Smarty v0.1.ds.apk
uses dual signature v1 and v2
try this if getting "app not installed" error
Missing Features
Can't block certain apps from sending notification yet, looking to add this in soon!
test it out and see if you like it !
the app requires permission to notification and accessibility service simply for allowing both types of notifications.
XDA:DevDB Information
smarty, App for all devices (see above for details)
Contributors
mohtaprashantrocks
Version Information
Status: Testing
Created 2018-04-14
Last Updated 2018-04-23
Click to expand...
Click to collapse
Any updates on the all the "popup" full screen spam ads on the home screen of Oreo & Pie installs??? Any updates since your April build??
{
"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"
}
ilovebillgates said:
Any updates on the all the "popup" full screen spam ads on the home screen of Oreo & Pie installs??? Any updates since your April build??
Click to expand...
Click to collapse
I have put no ads in the app, and in my use of it have not experienced any either, could you check if there is some other application that may be responsible ?
And to the other posters, unfortunately I have not been able to work on the app any more since the last build and so the blocking certain apps feature isn't there yet