Good Morning - free app ! - Windows Phone 7 Apps and Games

Hello!
We (3 Microsoft Student Partners) created a free (yes, free!) WP 7.5 application, Good Morning.
Here is the description:
"Good Morning is an alarm clock using your personal musics. Browse your favorite tracks, choose one and let it act as an alarm.
Coming up:
- Enable multiple alarms
- Create a playlist as an alarm clock"
Here is the link: windowsphone.com/en-US/apps/a3144459-4a33-4aab-b81f-ff030ee92281
We currently released the V1 of the app. If you have some ideas for another version, or if you saw some problems with the app, your feedback is welcomed!
Pierre

Hello Guys!
We have updated the app:
Changelog:
-pictures are not pixelized
-possibility to add a reminder when the alarm is active
-the alarm can be started from any slide of the app.
As usual, your feedbacks are welcomed !

Good app, works perfect on HD2 with the latest build of WP7.5

Thanks! I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!

Great App! I'm testing it & i love the UI (clean & metro).
Hope we'll see next version soon.
EDIT: Could you make this App works in background? Will be better.
drokkon said:
Thanks! I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Click to expand...
Click to collapse
It would be a great thing to do that

Thanks for app....work fine on my Omnia 7

hello guys!
We updated the application! Any comment is welcomed!
PS: our dev will respond to your feedbacks!

Thanks all for your feedback !
inexorable said:
Hope we'll see next version soon.
Click to expand...
Click to collapse
You will ! I'll try to update the app every week.
inexorable said:
EDIT: Could you make this App works in background? Will be better.
It would be a great thing to do that
Click to expand...
Click to collapse
Unfortunately, no. There is no way to do that with the current APIs.
drokkon said:
I'm not sure if you all are open to suggestions, but I would kill for an alarm clock that could use a podcast, audio or video, as an alarm clock. For example, I'd love to wake up to the latest edition of the "Wall Street Journal This Morning" podcast!
Click to expand...
Click to collapse
Indeed, it could be great. That's not planned right now, but I'll probably think of it for a next major release !
As leresistant said, feel free to share your thoughts with us !

hello can we find the app somewhere else cause in my country is not available

elfacki20 said:
hello can we find the app somewhere else cause in my country is not available
Click to expand...
Click to collapse
Sorry, you can't. What is your country ?

Hello! Our latest update has been accepted, and you'll be able to download it in the next hours.
Here are the modifications:
v1.2 :
- "Shake to snooze": delay the alarm during 5 minutes
- settings page added
- start/pause button deleted (for managing the music)
- pin an alarm on the phone's home page
- icons of the application use the phone's accent color

kryptum said:
Unfortunately, no. There is no way to do that with the current APIs.
I know you guys are Student dev's and congrats on your App but I am here to let you know you can actually run your app as a background process. You need to create a separate program in general and add it in to your current project as now your app has 2 projects.
Yes, you could turn the other project in to a control but I don't recommend it as this way you can edit better and no need to re-compile out of project.
With your second project, it runs in the background allowing the other project to be the "brain". If you add a reference to your main app, you can do quite a bit in your bg app, for example... Have it detect the time and than send the function of an alert someone sent...
It's the same idea as if you were going to do TOAST/LIVE Tile updates.
Hope my 2 cents didn't offend you, just trying to help you .
Thanks,
Lance
http://lance.compulsivetech.biz
@LanceSeidman
Click to expand...
Click to collapse

lseidman said:
kryptum said:
Unfortunately, no. There is no way to do that with the current APIs.
I know you guys are Student dev's and congrats on your App but I am here to let you know you can actually run your app as a background process. You need to create a separate program in general and add it in to your current project as now your app has 2 projects.
Yes, you could turn the other project in to a control but I don't recommend it as this way you can edit better and no need to re-compile out of project.
With your second project, it runs in the background allowing the other project to be the "brain". If you add a reference to your main app, you can do quite a bit in your bg app, for example... Have it detect the time and than send the function of an alert someone sent...
It's the same idea as if you were going to do TOAST/LIVE Tile updates.
Hope my 2 cents didn't offend you, just trying to help you .
Click to expand...
Click to collapse
Hi lseidman,
Thanks for your feedback.
You're right, I can add another project to my solution to implement a background agent.
Unfortunately, afaik :
1/ The player uses the Microsoft.Xna.Framework.Media namespace, which can't be referenced from a Task Agent project.
2/ Tasks are handled by the system. We can't defined the scheduled interval. As mentioned on msdn [I can't post any outside link - sorry] a periodic task can run every 10mn at least.
I don't know every APIs and I may be wrong, but I don't think what you described is a solution. Please let me know if i'm wrong.
Thanks again for helping me make this app better !
Click to expand...
Click to collapse

kryptum said:
lseidman said:
Hi lseidman,
Thanks for your feedback.
You're right, I can add another project to my solution to implement a background agent.
Unfortunately, afaik :
1/ The player uses the Microsoft.Xna.Framework.Media namespace, which can't be referenced from a Task Agent project.
2/ Tasks are handled by the system. We can't defined the scheduled interval. As mentioned on msdn [I can't post any outside link - sorry] a periodic task can run every 10mn at least.
I don't know every APIs and I may be wrong, but I don't think what you described is a solution. Please let me know if i'm wrong.
Thanks again for helping me make this app better !
Click to expand...
Click to collapse
1).
Have you tried using using System.Windows.Media and doing something like (in XAML):
<MediaElement x:Name="mediaControl" Source="soundfile.mp3/wma" AutoPlay="False" Width="0" Height="0" Margin="240,60" />
* Note the 0's so it's hidden.
** You can replace source's defined file location (assuming your not copying the file they select to local storage, renaming and defining it as one specific item name) to Source="{Binding filetoplay}".
Obviously when using binding your going to need to have something to bind to it (even if you did a "public string itemname {get; set;}" in a class).
Which you could always use IsolatedStorage like I said above in which you could do:
using (isolatedStorageFileStream)
{
SaveFile(e.Result, isolatedStorageFileStream);
//error is null function, go and do:
media.SetSource(isolatedStorageFileStream);
}
* Just know other steps are needed before you even get to that point but just an example. This is obviously where you previously grabbed the file, "created" it, saved it and set for playback (hence the .SetSource).
Then for playback wherever you needed it, you just throw: mediaControl.Play();.
Again, just an idea to get around XNA. It won't be simple if you're not familiar with IsolatedStorage and other aspects around it but you can get away from XNA.
2). Take a look at these, maybe they'll help you...
ScheduledNotification Class
Alarm Class
Reminder Class
Also check out the other items around the PeriodicTask.
Either way, good luck and best of luck with future development!
Thanks,
Lance
http://lance.compulsivetech.biz
@LanceSeidman
Click to expand...
Click to collapse

why can't i download it?? is it bcos my marketplace is signed as in portugal?

sarkvphilvs said:
why can't i download it?? is it bcos my marketplace is signed as in portugal?
Click to expand...
Click to collapse
Sorry, the app hasn't been published for portugal marketplace. I'll fix that soon.

testing right now. If you need a translator for spanish language, let me know how can i help you.

kryptum said:
Sorry, the app hasn't been published for portugal marketplace. I'll fix that soon.
Click to expand...
Click to collapse
thank u . likewise, if you need a translator for Portuguese, i'm avaiable

BigwaveMx said:
testing right now. If you need a translator for spanish language, let me know how can i help you.
Click to expand...
Click to collapse
sarkvphilvs said:
thank u . likewise, if you need a translator for Portuguese, i'm avaiable
Click to expand...
Click to collapse
Indeed, it could be really helpfull ! (until now I've used google translate for es, de & it :/).
Could I give you the resource .resx files so that you can file them up ?

kryptum said:
Indeed, it could be really helpfull ! (until now I've used google translate for es, de & it :/).
Could I give you the resource .resx files so that you can file them up ?
Click to expand...
Click to collapse
yes, send it to me. I send you back when I'm done.

Related

New app...4 home screens, two tabs and widgets!

Just posted on AndroidCommunity.com. I downloaded the Demo and in love....very cool, check it out
http://androidcommunity.com/forums/f12/dxtop-the-android-home-alternative-13673/
http://dxtop.wikidot.com/
Thanks doooshty,
You beat me here
I plan on releasing dxTop : The Android Home Alternative this weekend for $3.99 and I'm hoping to get support from developers to write widgets for it. I posted a how-to and a sample desktop widget that graphs memory usage. These is also a demo version available on the site to try it out and use to develop widgets.
Also, I want to make sure I can sell it. I've read the Apache 2.0 license and it looks like all I need to do is provide a link to the license. Is this correct?
If you have any comments, please let me know what your think!
Cheers,
John
TheMasterBaron said:
Thanks doooshty,
You beat me here
I plan on releasing dxTop : The Android Home Alternative this weekend for $3.99 and I'm hoping to get support from developers to write widgets for it. I posted a how-to and a sample desktop widget that graphs memory usage. These is also a demo version available on the site to try it out and use to develop widgets.
Also, I want to make sure I can sell it. I've read the Apache 2.0 license and it looks like all I need to do is provide a link to the license. Is this correct?
If you have any comments, please let me know what your think!
Cheers,
John
Click to expand...
Click to collapse
i think i love you
dom2684 said:
i think i love you
Click to expand...
Click to collapse
Demo = Love
I will gladly give you my $4.00...you can even keep the change.
THis is the kind of thing I was expecting to see from android...you sir have delivered.
I just down loaded this it force close after I set it to default. Then my phone wouldn't
Reboot I had to do a wipe.
Qtonix
I've been running the demo now for a couple of hours and I'm convinced this the best app yet for the G1, paid or free. MasterBaron, you sir are a very talented developer and I'll be eagerly awaiting the paid version in the market this weekend. I will also post my 5 star review of dxTop on as many Android forums as I can find. Keep doing what your doing. and thank you so much for extending and greatly improving Android. You have my $4, and I hope you get rich from this app.
I installed it but the "launch" link after installed was greyed out and i couldnt find it in the app list but i could uninstall it from the manage applications settings... what am i doing wrong?
RandumAccess said:
I installed it but the "launch" link after installed was greyed out and i couldnt find it in the app list but i could uninstall it from the manage applications settings... what am i doing wrong?
Click to expand...
Click to collapse
It was greyed out for me as well...I hit the home button and it asks what I want to use and I select dxTop
RandumAccess said:
I installed it but the "launch" link after installed was greyed out and i couldnt find it in the app list but i could uninstall it from the manage applications settings... what am i doing wrong?
Click to expand...
Click to collapse
Yes, press the home button and it will ask which interface you want to use. DO NOT click "Use by default for this action" until I come up with a recovery mode in case dxTop crashes.
TheMasterBaron said:
Yes, press the home button and it will ask which interface you want to use. DO NOT click "Use by default for this action" until I come up with a recovery mode in case dxTop crashes.
Click to expand...
Click to collapse
cool got it, this is awesome! but hows the battery with it? any change that you noticed? and how will we add stuff to the second tab?
I cant wait for full version! will definitely pay!
is it me or does it overwite the clock that u have on the theme?
Did anyone elses wallpaper cropping get messed up? I wasn't able to choose the whole image to crop. I tried with a few standard size wallpapers & 800x600 wallpapers but it never let me choose the whole image.
I tryed again without selecting default and I still had to wipe as I couldn't get off the force close box. After a reboot it it started force closeing again and left the phone unusable.
Qtronix
dom2684 said:
is it me or does it overwite the clock that u have on the theme?
Click to expand...
Click to collapse
Yeah it did on mine as well. Great first step much love for the app. I liked it but will wait to see how it comes along before buying. Its simply too young right now but with all the potential it shows will definately buy in the future as it progresses. Great work!
maybe it should be in beta for a bit longer until all the bugs are worked out- beta testers galore..... so idiots on the market don't start voting it down.....
To be honest the only thing that I really would like to have are the widgets and they will be available on the standard Android with 1.5.
EXCELLENT!!!!!!!!!!!!!!! the best app in the market, very very good, i love you, please im from south america and i have no access to paid apps, put a webpage to buy the app, thanks!!
RandumAccess said:
cool got it, this is awesome! but hows the battery with it? any change that you noticed? and how will we add stuff to the second tab?
Click to expand...
Click to collapse
Should be no change to battery life.
his tab is your recent/running apps tab, they appear automatically when you run apps.
qtronix said:
I tryed again without selecting default and I still had to wipe as I couldn't get off the force close box. After a reboot it it started force closeing again and left the phone unusable.
Qtronix
Click to expand...
Click to collapse
You have to be quick, press the force close, then the home key as fast as you can. I'll work on a recovery option.
I understand you wanting to earn some money from this app, and I would glady pay for it, except that I'm in the UK and we still do not see paid apps.
Did you think if how you could deliver the app to non-US residents?
Wow, this looks extremely promising, very nice indeed!
Please please please make this paid app available outside of the market, somehow, because a lot of us are in countries where paid app support is nowhere to be seen. I figure the UK etc will get in on the paid app action soon enough, but for the rest of us, in countries where the G1 isn't even considered by the operators yet, I fear the wait will be long. Too long.

[Android 2.1+, ROOT] AppHider

Code:
★★★ ROOT IS NEEDED ★★★
Make your smartphone more privacy!!
This app lets you hide ALMOST ANY APP (excluding system ones, yet!!!) but gmail, facebook, etc yes, and adult apps too!!! from prying eyes so let them be like INVISIBLE.
This software is password protected so anyone without the password can do any changes and see wich app's are really installed in the phone.
Next coming:
★ More languages coming... AND MORE!!
★ Hide some system apps like browser, etc coming too!!
LINKS:
Pro Version: https://market.android.com/details?id=com.dw.apphider&feature=search_result
LiteVersion: https://market.android.com/details?id=com.dw.apphiderlite&feature=search_result
Please, let me know your opinion and help me to improve this app.
THANKS!!!
No offense but the hided and not hided just sound improper
Sent from my Zio using XDA Premium App
What do you mean?
I dont understand your comment at all, what do you mean?
Thanks for help us improve!
metuskale said:
I dont understand your comment at all, what do you mean?
Thanks for help us improve!
Click to expand...
Click to collapse
What does he mean ?
you should use hidden instead of hided
thanks
lol we didnt noticied. As you can see Spanish english level is actually bad!
thanks for the comment.
we have uploaded a new version that let's you hide apps installed in the SD too!!!
try the lite version for free!
I can help you improve the English translation if you so wish
Yes of course. Send me a PM with your email and i will send you the strings.xml and the texts to translate.
thanks in advance.
Ps: if anyone else wants to help translating into other lenguages will be wellcome.
So how do i now start my hidden program ?
Or do i need to unhide them first ?
That's not practical to do everytime
Brotuck said:
So how do i now start my hidden program ?
Or do i need to unhide them first ?
That's not practical to do everytime
Click to expand...
Click to collapse
Hi there, actually that's the idea, no one can launch this application if it's hidden.
Althoug, you don't need to go to the app drawer again and lauch from there, you can just click the app name in our application and will be lauched (previously you must unhide) and when you finish using it go and hide again.
If you any better idea would be apreciated and studied.
(We are planing that the application can be launched althoug is hidden, always from our application) but the main problem of this option is that while the app is unhiden is visible from the app draw and we can not know when the application is closed so we can hide it again...
Any idea/sugestion will be appreciated!
New Version
Hi there, we have uploaded a new version where you can do batch operations, like hide/unhide multiple applications at the same time.
Lite version does not have this, because you can only hide one application.
In the next version we will release a widget to hide/unhide groups of applications at a same time from the home, and in the lite version to hide the application you have selected.
PS: Of course any idea, comment, functionality, etc would be appreciated to improve this app.
Awesome app bro
darandster2 said:
Awesome app bro
Click to expand...
Click to collapse
Thanks!!
Just one question guys, anyone have tried this software in Droid X, two persons mailed me telling that is not working in Droid X.
Just in case, has Motorolla modified Android for Droid X in some way?
Thanks!
Droid X
Hi guys, we are looking for some one to test this app in droid x, 'cause we have noticied that many people says that is not working well on this phone and we have not this model in our country, the help would be really appreciated.
Thanks.
Hi, I used this app for hiding, but then I cleared its data, and now I can't see any hidden app Inside it, through app is still hidden

Flux - Google Reader

I found this app on the Market for anyone that came from or is coming from Android. It's probably the best Google reader app.
Syncs and everything!
Has anyone downloaded or bought the app? What does the paid version do?
Thanks
Is it better/faster that NextGen Reader?
bilbo_b said:
Is it better/faster that NextGen Reader?
Click to expand...
Click to collapse
I don't know. I'll download NextGen and let you know though!
You can also check out this article that came out on PocketLint:
http://www.pocket-lint.com/news/43624/best-windows-phone-7-apps
I'm throttled on my HTC Radar (T-Mobile slowed down my Internet) and the app still downloads e articles pretty quick. I love it.
What is the diff between The trail and full version ?
HG! said:
What does the paid version do?
Click to expand...
Click to collapse
With paid version you get:
Multiple Live Tiles, you can pin any feed/folder to start
Full image caching, with Trial version the caching is limited to images of the newest 25 articles per sync
Option to change font size in article-reading
Hope this helps,
edoardo
PS: I'm the developer of Flux, with your purchase you also receive lots of Flux Love!
Thanks/ I think you can add this on the market place listing.
Second I am not able to make this app work since 4 days now. It is stuck at Syncing Subscription. Any idea ?
wpxbox said:
Second I am not able to make this app work since 4 days now. It is stuck at Syncing Subscription. Any idea ?
Click to expand...
Click to collapse
Sorry for the problem, could you please send us an email to support/@t/flux-app.com so we can further investigate the issue?
Thanks,
-E
I'm using omnia 7 and works fine, I like it Very useful, also in the trial version
I downloaded NextGen, and I guess it's all about tastes.
I found Flux satisfies me more.
@edonistart, under subscriptions- what is *misc?
For me is much better Reader2Go...
HG! said:
@edonistart, under subscriptions- what is *misc?
Click to expand...
Click to collapse
Under *misc are grouped all the subscriptions that don't belong to any folders.
I like your tastes!
-E
It seems you have issues with Google Account 2 Way authentication System. The trail version also does not work. It keeps on fetching feed with zero result.
wpxbox said:
It seems you have issues with Google Account 2 Way authentication System.
Click to expand...
Click to collapse
Thanks for reporting the problem, I'll try to implement it.
wpxbox said:
The trail version also does not work. It keeps on fetching feed with zero result.
Click to expand...
Click to collapse
Could you please send us an email to support/@t/flux-app.com so we can further investigate the issue?
Thanks,
-E
A couple of days ago I installed the software and i like it very well!!
Any update on support for Google's two way authentic ?
wpxbox said:
Any update on support for Google's two way authentic ?
Click to expand...
Click to collapse
Unfortunately we're using the Google ClientLogin Authentication, which doesn't support 2-step verification.
We'd need to adopt OAuth, maybe we'll add in a future release.
Thanks for reporting this problem!
edoardo
images not working
Hi edonistart.
I have downloaded your app Flux today as it look like a great google reader app. Their is one problem I can't get the images working on the tile view for articles or on my live tiles. How do I set this up in the settings?
Thanks
Mike
mikeegan77 said:
Their is one problem I can't get the images working on the tile view for articles or on my live tiles. How do I set this up in the settings?
Click to expand...
Click to collapse
Hi Mike, thanks for your support!
Go to settings and check these settings:
caching tab
- Cache images: wi-fi only (or always if you're not on a wi-fi)
- When not cached, download images: always
live tiles tab
Show image of newest unread: Yes
For the images to be shown, the article must have at least one image in the "preview" (the html got by the feed).
Hope this helps,
edoardo
PS: I'll follow up in email too, so to be sure that everything is working as expected.
edonistart said:
Hi Mike, thanks for your support!
Go to settings and check these settings:
caching tab
- Cache images: wi-fi only (or always if you're not on a wi-fi)
- When not cached, download images: always
live tiles tab
Show image of newest unread: Yes
For the images to be shown, the article must have at least one image in the "preview" (the html got by the feed).
Hope this helps,
edoardo
PS: I'll follow up in email too, so to be sure that everything is working as expected.
Click to expand...
Click to collapse
Sorry it didn't work, I have those settings already set. I have email you the xml file.

Xposed module for AA

Hi,
I only like to start a thread about the development of an Xposed module for tweak AA.
Someone is interested on it?
Reagards!
manos78 said:
Hi,
I only like to start a thread about the development of an Xposed module for tweak AA.
Someone is interested on it?
Reagards!
Click to expand...
Click to collapse
Oh yes - I would be very interested. I just have to wait for another 1-2 months until my car (A4) with AA/CarPlay support will be delivered.
Unfortunately I am not a developer but I'd be one of your first supporters and I will gladly test anything you guys develop .
Since Android Auto has a lot of limitations, an exposed module would be the best way to get rid of them.
Not a lot of replies. Looks like there are still not enough people who have Android Auto . We'll have to wait until it catches on I guess.
yes - I think so, too. But I am also still hoping, that manos78 will start the development anyway
Absolutely. For example here maps for Android Auto would be awesome
would also love to see some android auto mods
Me too !
Let me know if I can help by anyway
I'm interested.
I've got a Pioneer AVH-4200NEX on the way, so I'll be looking at doing some Xposed work, depending on what functionality is missing. Not everything can be done via Xposed (like making Waze work over AA), but it would be good to get an idea of what sort of additional functionality people are looking for on the AA platform.
agentdr8 said:
I've got a Pioneer AVH-4200NEX on the way, so I'll be looking at doing some Xposed work, depending on what functionality is missing. Not everything can be done via Xposed (like making Waze work over AA), but it would be good to get an idea of what sort of additional functionality people are looking for on the AA platform.
Click to expand...
Click to collapse
Hey, it would be great to get rid of the limitation of only viewing few entries in a list when scrolling... I believe this is tracked via GPS, so it would be great to feedback a velocity of 0 to this process only.
manos78 said:
Hi,
I only like to start a thread about the development of an Xposed module for tweak AA.
Someone is interested on it?
Reagards!
Click to expand...
Click to collapse
I'm not a developer. But I'd love to try anything new.
donverse said:
Hey, it would be great to get rid of the limitation of only viewing few entries in a list when scrolling... I believe this is tracked via GPS, so it would be great to feedback a velocity of 0 to this process only.
Click to expand...
Click to collapse
Is this in specific apps only, or all AA-enabled ones?
(
agentdr8 said:
Is this in specific apps only, or all AA-enabled ones?
Click to expand...
Click to collapse
I would like to request this aswell. I know this happens on spotify and iheartradio for sure, its annoyi lng to the point i unplug my,phone and use it via bluetooth audio streaming to get to yhe play list i would like to when on a road trip on driving long miles with out stopping to change my play list its crazy that they do this for safety but ends up. Us plaaying with phone dissconnected due to the dam moving locks. (typed,on,my mobile device. Please excuse the typos)
agentdr8 said:
Is this in specific apps only, or all AA-enabled ones?
Click to expand...
Click to collapse
Yep I only know about spotify and gmusic as well. You just end up using your Phone in the Hand, there's really no point in this restriction
Sent from my LG-D802 using XDA-Developers mobile app
donverse said:
Yep I only know about spotify and gmusic as well. You just end up using your Phone in the Hand, there's really no point in this restriction
Click to expand...
Click to collapse
Is there an error message shown when you've hit this limitation? I've found "Unlimited browsing is disabled because car is not parked." in the AA apk, but I'm not sure if that's the proper verbiage when it's limiting listview scrolling.
agentdr8 said:
Is there an error message shown when you've hit this limitation? I've found "Unlimited browsing is disabled because car is not parked." in the AA apk, but I'm not sure if that's the proper verbiage when it's limiting listview scrolling.
Click to expand...
Click to collapse
Yes. If you've reached the tap limit you'll get a "you cannot continue browsing unless you're parked" message.
Sent from my Nexus 6P using Tapatalk
agentdr8 said:
Is there an error message shown when you've hit this limitation? I've found "Unlimited browsing is disabled because car is not parked." in the AA apk, but I'm not sure if that's the proper verbiage when it's limiting listview scrolling.
Click to expand...
Click to collapse
Im sure it that setting. They all seem to have this scrolling limit once you get past say...5 items or so.
I can post photo next time i am in my truck and have another phone to take the photo
chevyguy128 said:
Im sure it that setting. They all seem to have this scrolling limit once you get past say...5 items or so.
I can post photo next time i am in my truck and have another phone to take the photo
Click to expand...
Click to collapse
I still have my NEX on my workbench, so I can test this out later tonight. I believe it's in the AA SDK, so that individual apps don't have to determine if the vehicle is in motion or not. Shouldn't be too hard to work around.
Here's a request:
Would like to manage what apps show up on Android Auto (headunit)
For example, sideloaded apps currently do not show up
http://forum.xda-developers.com/and...o-general/to-loaded-app-android-auto-t3246489

MyMTC service

This is new xposed app for our units
https://play.google.com/store/apps/details?id=rabbity.com.service
Have not tried it yet. Just sharing. Found it on 4pda
pa.ko said:
This is new xposed app for our units
https://play.google.com/store/apps/details?id=rabbity.com.service
Have not tried it yet. Just sharing. Found it on 4pda
Click to expand...
Click to collapse
Tried it and it works as it should almost everything at one place... I just use mtckeys upon this.
Installed. Works great. Solves most things that I needed. So reinstalled almost all xposed modules... Bye, bye clumsy .ini files I hope dev will continue great work. If he does, we will finally get proper UI for advanced customisations.
Anyone struggling with clumsy MTC-* modules and .ini files should try this one. Free and great.
Thank you for introducing my app.
pa.ko said:
Installed. Works great. Solves most things that I needed. So reinstalled almost all xposed modules... Bye, bye clumsy .ini files I hope dev will continue great work. If he does, we will finally get proper UI for advanced customisations.
Anyone struggling with clumsy MTC-* modules and .ini files should try this one. Free and great.
Click to expand...
Click to collapse
I am developer the MyMTCService.
I could not write a new thread, I have no permission in xda yet :crying:
This program also has some settings using ini files. (Music playback information)
path : /sd_card/mymtcservice/music_popup.ini or /external_sd/mymtcservice/music_popup.ini or /data/data/rabbity.com.service/shared_prefs/music_popup.ini
# width (default : 350)
music_popup_w=350
# height (default : 60)
#If set to less than 60, the bottom will be cut off.
music_popup_h=60
# x position (It changes every time you drag.)
music_popup_x=60
# y position (It changes every time you drag.)
music_popup_y=52
# font color (2digit:alpah, 6digit:color)
music_popup_color=ff76d7f7
# backgroud color (2digit:alpah, 6digit:color)
music_popup_bgcolor=7f000000
# close time out (default : 0 -- don't close, unit : second)
music_popup_close_timeout=0
Click to expand...
Click to collapse
I will continue to make good programs.
Please do not hesitate to contact us if you have any bugs or improvements.
[email protected]
---------- Post added at 04:54 AM ---------- Previous post was at 04:48 AM ----------
Johny DJ said:
Tried it and it works as it should almost everything at one place... I just use mtckeys upon this.
Click to expand...
Click to collapse
thanks for feedback..
(I am developer MyMTCService )
today new version (0.7.1) was released...
Try it and let me know if you need anything at any time.
thank you...
rabbity417 said:
I am developer the MyMTCService.
I could not write a new thread, I have no permission in xda yet :crying:
This program also has some settings using ini files. (Music playback information)
path : /sd_card/mymtcservice/music_popup.ini or /external_sd/mymtcservice/music_popup.ini or /data/data/rabbity.com.service/shared_prefs/music_popup.ini
I will continue to make good programs.
Please do not hesitate to contact us if you have any bugs or improvements.
[email protected]
---------- Post added at 04:54 AM ---------- Previous post was at 04:48 AM ----------
thanks for feedback..
(I am developer MyMTCService )
today new version (0.7.1) was released...
Try it and let me know if you need anything at any time.
thank you...
Click to expand...
Click to collapse
Thank you for this great app!
You may post replies to this thread, so you get 10 posts after which you can post your own thread. But post it in MTCB Software Development section as your work deserves that place
Once again, thank you for great work and I hope you will continue it.
Another important suggestion for you: take look to FCC Launcher (I poster that thread here also). Your app and FCC could be a great pair. Contact Dev (you may find his email in Playstore app info) and try synchronise your and his work. In past, Devs for MATCB/C/D have low or no synch and many functions overlap in their modules making mess and collisions etc. So try to complement and not overlap with FCC as he is also doing great job and provides some great special support for MTCB units specifically.
rabbity417 said:
I am developer the MyMTCService.
I could not write a new thread, I have no permission in xda yet :crying:
This program also has some settings using ini files. (Music playback information)
path : /sd_card/mymtcservice/music_popup.ini or /external_sd/mymtcservice/music_popup.ini or /data/data/rabbity.com.service/shared_prefs/music_popup.ini
I will continue to make good programs.
Please do not hesitate to contact us if you have any bugs or improvements.
[email protected]
---------- Post added at 04:54 AM ---------- Previous post was at 04:48 AM ----------
thanks for feedback..
(I am developer MyMTCService )
today new version (0.7.1) was released...
Try it and let me know if you need anything at any time.
thank you...
Click to expand...
Click to collapse
Some suggestions:
1. Add extended support for advanced (long press/double-click etc.) SWC and hw buttons (this is already supported by MTCKeys module but with clumsy .ini file which is too hard for ordinary users and most of HU owners here are not Android and Computer gurus)
2. Add toast notification for Radio station changing..
pa.ko said:
Thank you for this great app!
You may post replies to this thread, so you get 10 posts after which you can post your own thread. But post it in MTCB Software Development section as your work deserves that place
Once again, thank you for great work and I hope you will continue it.
Another important suggestion for you: take look to FCC Launcher (I poster that thread here also). Your app and FCC could be a great pair. Contact Dev (you may find his email in Playstore app info) and try synchronise your and his work. In past, Devs for MATCB/C/D have low or no synch and many functions overlap in their modules making mess and collisions etc. So try to complement and not overlap with FCC as he is also doing great job and provides some great special support for MTCB units specifically.
Click to expand...
Click to collapse
OK!!
later, see you in MTCB Software Development section
As for the FCC Launcher, I'll try to figure out what to do after testing.
Thank you for introducing a good launcher.
---------- Post added at 05:39 AM ---------- Previous post was at 05:35 AM ----------
pa.ko said:
Some suggestions:
1. Add extended support for advanced (long press/double-click etc.) SWC and hw buttons (this is already supported by MTCKeys module but with clumsy .ini file which is too hard for ordinary users and most of HU owners here are not Android and Computer gurus)
2. Add toast notification for Radio station changing..
Click to expand...
Click to collapse
Thank you for your suggestion.
this seems to be more difficult to configure with UI
I will try to be able to support it as much as possible.
Have a nice weekend.
Deleted
Hi!
Thank you for your work! I installed it on an mtcd px5, malaysk rom v. 2.0. Install was ok, module activated in xposed.
But it seems not to do any change in volume due to speed. The icon in center of screen appears as it should, but no difference in volume...
Hi, looks like a good module. The only thing stopping me replacing Xposed-MTC-Manager is feature where it keeps the HU alive while starting the engine. If you could integrate this feature, that would be great.
Thank you for your feedback.
[email protected] said:
Hi!
Thank you for your work! I installed it on an mtcd px5, malaysk rom v. 2.0. Install was ok, module activated in xposed.
But it seems not to do any change in volume due to speed. The icon in center of screen appears as it should, but no difference in volume...
Click to expand...
Click to collapse
HI syk02jcb.
I know that volume does not work on PX5..
plz wait a few days...
I am finding what is the problem.
Thank you...
rabbity417 said:
HI syk02jcb.
I know that volume does not work on PX5..
plz wait a few days...
I am finding what is the problem.
Thank you...
Click to expand...
Click to collapse
Also auto-brightness is not working on PX5.
Thanks for your work, anyway! :good:
rabbity417 said:
HI syk02jcb.
I know that volume does not work on PX5..
plz wait a few days...
I am finding what is the problem.
Thank you...
Click to expand...
Click to collapse
not only does it not work, but it seems to also prevent volume changes manually. Just fyi in case you're not aware.
Could you also look into the option for the mode button to not actually pop up the favorites menu, but still stops the hu from performing its default mode action. This will then allow me to use mtcdtools to remap the mode button to my liking. Currently, when I remap it with MTCDtools, it still cycle through the default hu mode options..
Thank you for your feedback.
ZeligPC said:
Also auto-brightness is not working on PX5.
Thanks for your work, anyway! :good:
Click to expand...
Click to collapse
I did not know that does not control the screen brightness either.
I'll check that out.
good day...
---------- Post added at 01:29 AM ---------- Previous post was at 01:23 AM ----------
aarick said:
not only does it not work, but it seems to also prevent volume changes manually. Just fyi in case you're not aware.
Could you also look into the option for the mode button to not actually pop up the favorites menu, but still stops the hu from performing its default mode action. This will then allow me to use mtcdtools to remap the mode button to my liking. Currently, when I remap it with MTCDtools, it still cycle through the default hu mode options..
Click to expand...
Click to collapse
1. Currently, volume control seems not to be controlled both manually and automatically.
plz wait a few days..
I am currently checking.
2. MODE button
To activate the MODE button as the original function, please disable the MODE settings, In the settings.
rabbity417 said:
I did not know that does not control the screen brightness either.
I'll check that out.
good day...
---------- Post added at 01:29 AM ---------- Previous post was at 01:23 AM ----------
1. Currently, volume control seems not to be controlled both manually and automatically.
plz wait a few days..
I am currently checking.
2. MODE button
To activate the MODE button as the original function, please disable the MODE settings, In the settings.
Click to expand...
Click to collapse
No, I don't think you understand. The px5 mode button on the steering wheel cannot be altered for me. It always cycle through radio..music..bt..DVD..etc..
Even if I use MTCDtools to remap, it still cycle through. With your mod, it stops cycling through. It will perform MTCDtools new mode setup instead, but also pop out your favorites. I was hoping you could have another option to disable the default mode cycling, but also does not pop out a favorite.
oops, my miss understand
aarick said:
No, I don't think you understand. The px5 mode button on the steering wheel cannot be altered for me. It always cycle through radio..music..bt..DVD..etc..
Even if I use MTCDtools to remap, it still cycle through. With your mod, it stops cycling through. It will perform MTCDtools new mode setup instead, but also pop out your favorites. I was hoping you could have another option to disable the default mode cycling, but also does not pop out a favorite.
Click to expand...
Click to collapse
Do you only want to disable the basic function of MODE?
Am i right??
It's not difficult for me.
I am just wondering how to add options. (UI or INI file)
But why would you want to disable the feature?
rabbity417 said:
Do you only want to disable the basic function of MODE?
Am i right??
It's not difficult for me.
I am just wondering how to add options. (UI or INI file)
But why would you want to disable the feature?
Click to expand...
Click to collapse
I want to disable mtc's mode function as I do not use the mtc music app, DVD or bt..however, I still want to be able to use the mode button on the steering wheel and map it to a different function.
Thanks!
Can't get the popup to show radio info. It works with music track info but does not show anything on radio.
I am using the latest 5.1.1 ROM with MicroG on a 1024x600 MTCC unit. I will try to use other mtcradio app and see if anything changes.
L.E. Figured it out. You also need xposedmtcradio installed in order to show radio info in the widget.
This new version MyMTCService 0.7.2 has been released.
pa.ko said:
This is new xposed app for our units
https://play.google.com/store/apps/details?id=rabbity.com.service
Have not tried it yet. Just sharing. Found it on 4pda
Click to expand...
Click to collapse
This new version MyMTCService 0.7.2 has been released.
https: //play.google.co...id=rabbity.com.service
■ Bug Fix for PX5
1) MUTE / Volume function works now!!
2) MCU version can display normally..
*** => Warning message disappears when running main screen.
3) Fixed a bug where the Favorites screen popped up at boot time
4) button mapping function works now!!
5) brightness control works now!!
■ Music RemoteControll
1) Add Radicast App (Korean Radio App)
(Playback information is available when installing sponsored apps)
2) Add PCRadio App
: Automatically PLAY background with NEXT Button.
(Playback information is available when installing sponsored apps)
https://play.google.com/store/apps/details?id=rabbity.com.mymtcservice
I wish you a pleasant weekend.
Thank you.
rabbity417 said:
This new version MyMTCService 0.7.2 has been released.
https: //play.google.co...id=rabbity.com.service
■ Bug Fix for PX5
1) MUTE / Volume function works now!!
2) MCU version can display normally..
*** => Warning message disappears when running main screen.
3) Fixed a bug where the Favorites screen popped up at boot time
4) button mapping function works now!!
5) brightness control works now!!
■ Music RemoteControll
1) Add Radicast App (Korean Radio App)
(Playback information is available when installing sponsored apps)
2) Add PCRadio App
: Automatically PLAY background with NEXT Button.
(Playback information is available when installing sponsored apps)
I wish you a pleasant weekend.
Thank you.
Click to expand...
Click to collapse
Could you please add support for changing OBD2 adapter BT name? That is provided with xposed-mtc-manager from MVG-V70 at 4pda. As I understood that you are in contact with him or other Russian Devs, you could ask him for help. Having that would be very useful feature. Many users need it and installing whole xposed-mtc-manager just for that is unnecessary burden for already overburden units like rk3066.

Categories

Resources