Posts

Showing posts with the label android

[SocialCut] ultimate android app to cut all your media image sizes

Image
  SocialCut v.1.2.0 has been released! (Latest version of SocialCut) SocialCut provides up to date social media image sizes for all your social networks. That means that you will be abble to cut / crop / resize your pictures before to publish it to your favorite social networks like Facebook, Instagram, Google, TumblR, x.com, Weibo and many others ! In this version you can unlock ALL cut templates by buying "unlock all" in app purchase: 💰👇🏻 The price is actually down so take your chance! If you want more information about social network image sizes in 2024, you can have a look to these really interesting articles:  -  skedsocial.com/blog/the-ultimate-up-to-date-social-media-image-sizes-guide -  https://blog.hootsuite.com/social-media-image-sizes-guide/ -  https://makeawebsitehub.com/social-media-image-sizes-cheat-sheet/ ➡️SocialCut can cut your images for you! Follow us on instagram (more than 900 followers now):   @socialcut.app More information: Official website

[eBook] Understanding mobile application development for everybody

Image
Problematic Mobile applications are used by many people these days. Many craftsmen, freelancers and others people have at the point, the idea to make their own mobile application to support their business. In general it's a really good idea to do so. Providing a quality application to your customer is always a PLUS and sometimes a MUST.  The problem is that sometimes, we don't know what creating an application implies and we don't know how to start... ➡️ This often leads to time and money loss 🤯 Guide to design your mobile app [ free eBook ] Below, you will find a link to download a presentation that I wrote about how to design your mobile app.  This is a short document that will help you to understand all the steps needed in order to publish a stable and a quality application .  We also cover the 'delays' problematic as many people think that a mobile app is fast to develop, so they underestimate deadlines... You will also find a few tips about Play Store and the

[SocialCut] released! Make instagram grids, panorama and more

Image
  [SocialCut] Released on Google Play Store ! Hello guys, today, just an announcement to inform you that SocialCut has been released and is now available for everybody ! 📱 Download SocialCut On Google Play Store 🧑🏻‍🎨 SocialCut is the ideal tool for: digital content creator community manager, digital artist influencer digital media manager , freelance developer, or simply a daily picture user 💡 And remember that SocialCut is available in the following languages: - English, Spanish, French, Chinese (simplified), Japanese  

[SocialCut] The perfect app for digital content creators

Image
  [SocialCut] The perfect app for digital content creators If you have to deal with digital pictures and social networks, you may have noticed that there are so many simple tools like applications to generate grids for Instagram. We can note apps like: PhotoSplit : https://play.google.com/store/apps/details?id=co.techpositive.photosplit&hl=en_US Griddy : https://apps.apple.com/us/app/griddy-split-grid-post-maker/id1114106704?uo=4 PanoraSplit for instagram : https://apps.apple.com/us/app/panorasplit-for-instagram/id1463280209 and much more... SocialCut is a new Android application that extends this principle. With SocialCut you will be able to cut/crop/resize pictures in order to publish it to your favorite social networks . Google Play Store - SocialCut SocialCut for Android If you are: digital content creator community manager, digital artist influencer digital media manager , freelance developer, or simply a daily picture user SocialCut is made for you! You will be able to cre

[XAMARIN FORMS] Background task for 'closed' applications

Image
Background task for 'closed' applications Handling a background task in Xamarin Forms, even when the application is closed, can be challenging due to the mobile operating systems' restrictions on background activities. Here's a detailed solution using a combination of Dependency Service , Background Services , and Platform-Specific Implementations . Step 1: Create an Interface First, create an interface in your shared Xamarin Forms project that defines the method for starting the background task. public interface IBackgroundTask { void StartBackgroundTask(); } Step 2: Implement Platform-Specific Services Android Implementation: In your Android project, create a service that implements the IBackgroundTask interface. Create a Service: [Service] public class MyBackgroundService : Service { public override IBinder OnBind(Intent intent) => null; public override StartCommandResult OnStartCommand(Intent intent, StartCommandFlags flags, int startId

[SocialCut] for Android, really nice picture application!

Image
[SocialCut] for Android, really nice picture application! Hello programmers, Just a few words to present you a new application that will be released soon. And you can get it for free if you pre-register on the Play Store! SocialCut Android app lets you crop your pictures in a few clicks to fit & publish it to your favorite social network! A lot of cut templates are already available, you just have to choose one then adjust the picture position => cut it as you see it. You can check SocialCut's Instagram account to see a few examples of cut pictures ( @ig: socialcut.app ). ___ 🚨 SocialCut is still in 'pre-registration' stage! Register to get the fully functionnal app for free 💲 when it will be released (*soon)!🚨 Get it on the Play store: https://play.google.com/store/apps/details?id=com.djooleean.socialcut Or official website: https://socialcut.app Let me your comments, and enjoy! Best regards, SocialCut on Youtube

[Flutter] Get some special directories path

Image
I'm sure, if you are a Flutter's developer, that you will need one day to get specific paths, for instance to store files, generate temporary files etc... Path_provider package For that I use the 'path_provider' package that has some helpers methods. For example: Future < Directory >   getApplicationDocumentsDirectory ( ) returns the documents directory. How to use it ? Directory tempDir = await getTemporaryDirectory(); String tempPath = tempDir.path; Directory appDocDir = await getApplicationDocumentsDirectory(); String appDocPath = appDocDir.path; Follow the links: Package:  https://pub.dev/packages/path_provider Package's documentation:  https://pub.dev/documentation/path_provider/latest/index.html

[Flutter] Splashscreen (native way)

Image
The splash screen is the first screen you see when you start your app. - you can display your logo for instance - and while the splash screen is shown,  your application is loaded (like user data, business data...) In this example we will use flutter_native_splash package. I- Package: flutter_native_splash (for native splash screen) In your " pubspec.yaml " file you have to add the correct dependency, here at less version 2.0.5 # Dependencies specify other packages that your package needs in order to work. # To automatically upgrade your package dependencies to the latest versions # consider running `flutter pub upgrade --major-versions`. Alternatively, # dependencies can be manually updated by changing the version numbers below to # the latest version available on pub.dev. To see which dependencies have newer # versions available, run `flutter pub outdated`. dependencies : flutter : sdk : flutter flutter_native_splash : ^2.0.5 hint : Pubspec Assist extension To auto

EMGU with Xamarin Forms guide [part 1]

Image
I- Introduction, OpenCV and EMGU Do you know OpenCV ( Open Source Computer Vision Library:  https://opencv.org/ ) ?  This open source library let's you work and play with images and videos with a lot of powerful image processing algorithms !  If you want some details, I suggest you to first navigate to the link above or search for 'OpenCV' on Google.  Examples of OpenCV processing found on the web (filters, object detection, edges...): EMGU is a .NET OpenCV wrapper. That means that you will be able to use OpenCV functionnalities in your .NET projects using C# for instance. EMGU is cross platform, so you will also be able to use it in your Xamarin projects ! That's great because there is no advanced image processing library in Xamarin. In this article, we will talk about EMGU and list the steps to setup a Xamarin Forms project using EMGU . It may help you because, we must say that it's not a trivial task...  II-What do I need to