Building a Signed Flutter Android App Bundle on Windows (Groovy and Kotlin DSL)
Generate a keystore, configure signing in both build.gradle and build.gradle.kts, and build a production-ready Android App Bundle for Play Store, all on Windows.
Generate a keystore, configure signing in both build.gradle and build.gradle.kts, and build a production-ready Android App Bundle for Play Store, all on Windows.
If you get a CORS error when you are uploading to AWS S3 bucket from Laravel, do the following: [ { “AllowedHeaders”: [ “*” ], “AllowedMethods”: [ “GET” ], “AllowedOrigins”: [ “http://my-local-site.local” ], “ExposeHeaders”: [ “x-amz-server-side-encryption”, “x-amz-request-id”, “x-amz-id-2” ], “MaxAgeSeconds”: 3000 }] The AllowedMethods prop You can add other HTTP methods here. The PATCH method … Read more
If you are using Laravel 5, you must have come across something like this when a form wasn’t after a long period of time of opening the page. This was meant to help with checking against CSRF but it can be really annoying seeing this. Most of your user/visitors don’t understand the gibberish written, and … Read more
Form model binding in Laravel 5 makes the programmers’ live easier, no doubt. But what if you want to bind multiple models to a form? This is not straight forward but it’s not so complex either. (May be it was till I cracked it) Follow the steps below and you should be okay. Note: I … Read more
The RecyclerView widget, alongside the CardView widget, was introduced in Android API 21 (Lollipop). RecyclerView is a more flexible and more advanced version of ListView, according to Android developers’ website. But don’t read flexible as easier to implement. It’s cool though. yeah, it’s ListView on steroids. One of its key feature is that it recycles views … Read more
Creating simple PHP helper functions in Laravel 5 is not really something that comes out of the box, unlike what is obtained in CodeIgniter. This is one of the very few things I initially missed when I switched from CodeIgniter to Laravel. However, there is a short solution. This might not necessarily be in compliance … Read more