Sebastian Frey lesson:
"Young players think they're Messi or Cristiano Ronaldo. They want the big car, the shoes with the name on it, they think don't care about football. I do not know what I'd give to go back to the age when you think just to carry the ball, in my case the gloves, and go play with your friends."
martedì 8 dicembre 2015
lunedì 30 novembre 2015
The new My Team Manager 3.1.0 for Android
My Team Manager for Android has a new version available for download. The version 3.1.0 integrates the following new features:
- it's possible to add the logo for the team;
- a new medical section is configurable for each player. It's possible to enter the medical visit date, some medical notes and, when the data for the medical center are added, it will be possible to send a pre-built message (via SMS, WhatsApp or email) to the player to remind the appointment with all the data;
martedì 20 ottobre 2015
My Team Manager 1.2.1 for iPhone is available
My Team Manager version 1.2.1 for iPhone is available on the App Store.
This is what's new in this release:
- Rate your players performances and see the average rating
- Added assists data for the matches
- Added assists statistics in the players detail
- Massive import of players from your phonebook in the Roster section
- Rate application link in the settings
- Fixed crash in import contacts during the initial wizard
Download it clicking here
venerdì 11 settembre 2015
My Team Manager on iPhone!
The first version of My Team Manager for iPhone is finally live on iTunes. You can download it from https://itunes.apple.com/us/app/my-team-manager-manage-your/id1029184502?l=fr&ls=1&mt=8
The main features are:
- Manage more than one team
- Manage your roster and your players' info and statistics
- Rate your players performances and see the average rating
- Add your team's matches, the calls-up, the lineup (with tactics) and your personal notes, the results, the scorers. Share them with your players via the team Facebook page, SMS, WhatsApp or email
- Indicate the type of the matches (league, cup, friendly, other) and use it to filter
- Add and manage your training sessions
- Send any message via SMS, WhatsApp, email or on your team's Facebook page
- Massive import of players from your phonebook
Don't hesitate to send us your feedback. Our address: myteammanagerservice@gmail.com
The main features are:
- Manage more than one team
- Manage your roster and your players' info and statistics
- Rate your players performances and see the average rating
- Add your team's matches, the calls-up, the lineup (with tactics) and your personal notes, the results, the scorers. Share them with your players via the team Facebook page, SMS, WhatsApp or email
- Indicate the type of the matches (league, cup, friendly, other) and use it to filter
- Add and manage your training sessions
- Send any message via SMS, WhatsApp, email or on your team's Facebook page
- Massive import of players from your phonebook
Don't hesitate to send us your feedback. Our address: myteammanagerservice@gmail.com
martedì 8 settembre 2015
Bugs fixed in My Team Manager version 3.0.1 fro Android
Thanks to some feedbacks from our users we were able to discover and fix some bugs in the version 3.0.0.
The version 3.0.1 fixes the following:
- bug in lineup choice
- crash for delete player from roster
- crash when import players from phonebook
Download it from: https://play.google.com/store/apps/details?id=com.myteammanager
The version 3.0.1 fixes the following:
- bug in lineup choice
- crash for delete player from roster
- crash when import players from phonebook
Download it from: https://play.google.com/store/apps/details?id=com.myteammanager
mercoledì 12 agosto 2015
My Team Manager 3.0 for Android is now live!
After fixing the latest bugs, My Team Manager 3.0 for Android is available on Google Play. The new branded application can be downloaded here
And stay tuned because the version 1.0 for iPhone will be available in some days...
Some screenshots of the new Android version below
And stay tuned because the version 1.0 for iPhone will be available in some days...
Some screenshots of the new Android version below
domenica 9 agosto 2015
Beta version of My Team Manager 3.0 is avalaible for testing
After long time here you are a new version of My Team Manager. We did a deep graphic restyling to move towards the Material Design.
What you will find in this version:
- complete redesign of the app
- new "Last 5 match" stats information
- lineup composition with tactic choice
- team's country specification
You can download it from Google Play and send any feedback to our email address myteammanagerservice@gmail.com
What you will find in this version:
- complete redesign of the app
- new "Last 5 match" stats information
- lineup composition with tactic choice
- team's country specification
You can download it from Google Play and send any feedback to our email address myteammanagerservice@gmail.com
domenica 24 maggio 2015
Disable log when you release an iOS version
NSLog is very useful during the development phase but it's not secure to have it enabled when you want to release your application on iTunes.
A quick solution, avoiding to change each class of your project, is the following (thanks again to Stackoverflow)
Put this 3 lines at the end of your application -prefix.pch file:
#ifndef DEBUG
#define NSLog(...) /* suppress NSLog when in release mode */
#endif
You don't need to define anything into your project, because
DEBUG
is defined in your build setting by default when you create your project.domenica 17 maggio 2015
My Team Manager for iPhone ready for Beta testing
My Team Manager for iPhone is ready for Beta testing. You can partecipate to the beta test phase going to our page on Beta Family
The features of the version 1.0:
The features of the version 1.0:
- Manage more than one team
- Manage multiple season
- Manage your roster and your players' info and statistics
- Add your team's matches, the calls-up, the lineup and your personal notes, the results, the scorers. Share them with your players via the team Facebook page, SMS, WhatsApp or email
- Choose the tactic for the matches in the lineup screen
- Indicate the type of the matches (league, cup, friendly, other) and use it to filter
- Add and manage your training sessions
- Send any message via SMS, WhatsApp, email or on your team's Facebook page
- Massive import of players from your phonebook
Some screenshot of the application:
sabato 16 maggio 2015
MakeAppIcon: easily creation of your application icons
The service MakeAppIcon helps you when you need to create multiple sizes icons for your applications.
You can drag and drop your original image (preferably 1024x1024) in the toaster's home page and after few seconds you will have all the needed icons for your iOS (iWatch included) and Android application.
You can enter your email address to receive everything directly in your inbox.
You can drag and drop your original image (preferably 1024x1024) in the toaster's home page and after few seconds you will have all the needed icons for your iOS (iWatch included) and Android application.
You can enter your email address to receive everything directly in your inbox.
Etichette:
android,
design,
ios,
tipsandtricks,
tools
mercoledì 13 maggio 2015
Find errors in your iOS project .strings files with Plutil
When you have an syntax error in your application's localization file and you try to build your project, Xcode will give you the follow error:
/Users/Emanuele/git/MyTeamManagerIPhone/MyTeamManagerIPhone/fr.lproj/Localizable.strings:0: Read failed: The data couldn’t be read because it isn’t in the correct format.
Often the error is a missed semicolon somewhere in the file but Xcode won't point it out and when the file is big, find the issue manually can be a timing consuming task.
I found on Stackoverflow a very useful response to a similar problem. The solution is using a utility of OS X called plutil, which allow to check the validity of a property file or convert a plist file to another format.
So if your run the command:
plutil -lint <yourpath>/Localizable.string
you can get a clearer message helping you to find immediately where your file has the problem:
/Users/Emanuele/git/MyTeamManagerIPhone/MyTeamManagerIPhone/fr.lproj/Localizable.strings:0: Read failed: The data couldn’t be read because it isn’t in the correct format.
Often the error is a missed semicolon somewhere in the file but Xcode won't point it out and when the file is big, find the issue manually can be a timing consuming task.
I found on Stackoverflow a very useful response to a similar problem. The solution is using a utility of OS X called plutil, which allow to check the validity of a property file or convert a plist file to another format.
So if your run the command:
plutil -lint <yourpath>/Localizable.string
you can get a clearer message helping you to find immediately where your file has the problem:
2015-05-14 00:08:12.331 plutil[40933:3760056] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary on line 99. Parsing will be abandoned. Break on _CFPropertyListMissingSemicolon to debug.
/Users/Emanuele/git/MyTeamManagerIPhone/MyTeamManagerIPhone/fr.lproj/Localizable.strings: Unexpected character / at line 1
Iscriviti a:
Post (Atom)