- VS Code for Laravel DevelopmentVS Code for Laravel Development VS Code is one of the best editors available to developers now, no doubt about it, I always wanted to have such an editor which… Read more: VS Code for Laravel Development
- Android ExoPlayer with Fullscreen buttonAndroid ExoPlayer ExoPlayer is an open-source media player for Android developed by Google. It is designed to be used as a replacement for the Android platform’s built-in media player, and… Read more: Android ExoPlayer with Fullscreen button
- Decode Apple ReceiptDecode Apple Receipt Verify with the server-side click here
- App Store Server Notifications V2 in Laravel (Step-by-Step Guide + PHP JWT Example)App Store Server Notifications App Store Server Notifications V2 allows Apple to notify your backend in real time about subscription events such as renewals, cancellations, refunds, and billing issues. In… Read more: App Store Server Notifications V2 in Laravel (Step-by-Step Guide + PHP JWT Example)
- Create Notification on Android in JavaCreate Notification on Android in Java To create a notification on Android in Java, you can use the NotificationCompat.Builder class and its setContentTitle(), setContentText(), and setSmallIcon() methods to set the… Read more: Create Notification on Android in Java
- Java Factory Design PatternJava Factory Design Pattern The factory design pattern is a common design pattern used in software development, particularly in object-oriented programming languages like Java. The factory design pattern is a… Read more: Java Factory Design Pattern
- Create local notification in SwiftCreate local notification in Swift To create a local notification in Swift, you will need to use the UserNotifications framework. Here is an example of how to do this: This… Read more: Create local notification in Swift
- Swift InheritanceSwift Inheritance In Swift, a class can inherit properties and methods from another class, which is known as inheritance. This allows the child class (also known as the subclass) to… Read more: Swift Inheritance
- Auto-renewable subscriptions with SwiftUIRead about App Store Server Integration in Laravel Auto-renewable subscriptions provide access to content, services, or premium features in your app on an ongoing basis. They automatically renew at the… Read more: Auto-renewable subscriptions with SwiftUI
- Firebase getToken is deprecatedIf you are still using old style to get FireBase token, it is time to change it. Old way New way
- iOS-iPadOS app store submission checklist and how toWhen you are ready to submit your app to App Store for TestFlight or App Store you want to make sure few things are available to you. First you need… Read more: iOS-iPadOS app store submission checklist and how to
- iOS-iPadOS app icon sizes with sketch fileDevice Icon Size App Icons iPhone 60×60 pt 20×120 px @2x 180×180 px @3x iPad Pro 83.5×83.5 pt 167×167 px @2x iPad, iPad mini 76×76 pt 152×152 px @2x App… Read more: iOS-iPadOS app icon sizes with sketch file
- My thoughts on SwiftUII recently completed one medium size SwiftUI project and, it was a wonderful experience with MVVM architecture. I took some time to grab everything, but my struggles been paid off.… Read more: My thoughts on SwiftUI
- Git worktree exampleGit worktree is great a way to separate your code without having to create a new branch when you are not yet ready to commit. I have created a new… Read more: Git worktree example
- Radio Buttons group in SwiftUIRadio Buttons group in SwiftUI Radio Buttons group in SwiftUI, is not hard to implement classic radio button group in your SwiftUI. Though this project is in very early stage,… Read more: Radio Buttons group in SwiftUI
- Android timezone list in xml
- Android country list in xml
- The application could not be installed: INSTALL_FAILED_MISSING_SHARED_LIBRARYThis could happen if you have two entries like in your AndroidManifest.xml. If you choose File -> New -> Activity -> Blank Activity this gets included in manifest file automatically.… Read more: The application could not be installed: INSTALL_FAILED_MISSING_SHARED_LIBRARY
- Volley json post request androidVolley is an HTTP library that makes networking for Android apps easier and most importantly, faster. Volley is available on GitHub. Find your build.gradle (app) add this under dependencies Create a… Read more: Volley json post request android
- No Builds Available on TestFlightYou may find this issue when adding a new tester on the TestFlight page, question is how this user going to get the invitation. Suppose you are adding a tester… Read more: No Builds Available on TestFlight
- Laravel Sanctum Tutorial Step by StepLaravel Sanctum provides a featherweight authentication system for single-page applications, mobile applications, and simple, token-based APIs. Sanctum allows each user of your application to generate multiple API tokens for their… Read more: Laravel Sanctum Tutorial Step by Step
- Complete Login App in SwiftUIThis project follows the Swift MVVM design pattern. It also includes API examples and industry-standard project structure. It requires a Laravel project to run in the background. The Laravel project… Read more: Complete Login App in SwiftUI
- macOS app basic entitlements fileRecently, I have submitted a macOS app on the app store where I used this entitlements file. This uses sandbox, allowing the app to call API to a remote server… Read more: macOS app basic entitlements file
- SwiftUI combine rectangle and triangle in shapeSwiftUI combine rectangle and triangle in shape Making custom shape is not hard in SwiftUI by implementing func path(in rect: CGRect) -> Path. You just have to draw points in… Read more: SwiftUI combine rectangle and triangle in shape
- First Git Commit in GitHubGit is very important tool for all kinds of software development and source code management. To make your first git commit in GitHub actually not that hard. Create A New… Read more: First Git Commit in GitHub
- Capture first frame of the video as an image on iOS and macOS in swift
- NSTableView custom highlight color with NSTableRowViewGetting the right color when you select NSTableView’s row was frustrating for me since I didn’t know how to do it properly. But it is really simple, all you need… Read more: NSTableView custom highlight color with NSTableRowView
- This app is not allowed to query for scheme fb in iOSI wanted to open a Facebook Group page in the Facebook app on my iPhone but I was getting that error since I did not have any LSApplicationQueriesSchemes in my… Read more: This app is not allowed to query for scheme fb in iOS
- Manually adding the rootViewController’s view to the view hierarchy is no longer supported. Please allow UIWindow to add the rootViewController’s view to the view hierarchy itself.I was having this issue when setting a new rootViewController from loginViewController , which was a rootViewController in the storyboard before the transition. I was not sure what was the… Read more: Manually adding the rootViewController’s view to the view hierarchy is no longer supported. Please allow UIWindow to add the rootViewController’s view to the view hierarchy itself.
- Navigation in SwiftUI with multiple viewsNavigation in SwiftUI video Download Complete Login app with Laravel API I was trying to build a simple app in iOS + SwiftUI with multiple views that uses NavigationView and… Read more: Navigation in SwiftUI with multiple views
- Nodejs MySQL and Handlebars boilerplateNode.js boilerplate with express, helmet, cors, xss-protection, mysql, session, cookie and express-handlebars view engine and many more.. Well structured Node.js app. It uses mysql as database and express-handlebars as template… Read more: Nodejs MySQL and Handlebars boilerplate
- Install PHP 5.6 on macOS CatalinaThese steps worked on my Mac, Catalina version 10.15.3 (19D76). Step 1: Tap deprecated brew formula brew tap exolnet/homebrew-deprecated Step 2: Install PHP 5.6 brew install [email protected] You can also… Read more: Install PHP 5.6 on macOS Catalina
- SwiftUI Know When Entering Landscape ModeCreate a ObservableObject Object like this Now go to your SceneDelegate and add a var on top and pass your settings var in UIHostingController in willConnectTo method. and in didUpdate… Read more: SwiftUI Know When Entering Landscape Mode
- How top open Facebook group page in Facebook app on iPhone using Swift and Xcode.Opening a Facebook group page in the Facebook app on the iPhone using Swift is really easy. I’m using Swift 5 and Xcode 11.6. You must need your Facebook Page… Read more: How top open Facebook group page in Facebook app on iPhone using Swift and Xcode.
- FSCalendar Dark Mode issue for title colorFSCalendar is a very good calendar library in Swift but it does not support dark mode, I’m using version 2.8.1. We can easily change all date color by one of… Read more: FSCalendar Dark Mode issue for title color
