Posts — page 12 of 14
Integrate Analytics into your Android applications with AWS Amplify
I’ve become a big fan of Kotlin development for my Android apps. I also think that analytics should be integrated into every single app I write. I’ve covered integrating Amazon…
Build a GraphQL Service the easy way with AWS Amplify Model Transforms
Creating a functional GraphQL API is hard. You have to create a GraphQL schema, decide on authentication and database structures, implement the schema in a GraphQL service, wire…
Native Android Development with AWS Amplify
Up until this point, the experience for developing native iOS and Android apps with AWS has been a bit fragmented. There was AWS Mobile Hub; a web console that makes it easy to…
How to deploy a GraphQL API on AWS with the Serverless Framework
In previous posts, we’ve explored how to deploy a GraphQL service based on [AWS AppSync] and Amazon DynamoDB using [AWS CloudFormation]. The articles reinforce how automatic and…
Converting types with Room and Kotlin
I’ve been working on a personal project, trying to get to grips with the various Android Architecture Components and Kotlin. One of the things I came up with was the requirement…
Build a GraphQL Weather API with OpenWeatherMap and AWS AppSync
I love GraphQL even for the small apps. Generating a simple API allows me to change out back end details without re-compiling my front end. It also allows me to rotate API keys…
Run TypeScript Mocha Tests in Visual Studio Code
I’m spending my July 4th getting back to basics and learning some data structures and algorithms. I’ve decided to do my stuff in TypeScript since it’s been a while since I’ve…
Implement Search-on-type in Android with RxJava
I’m working on a new sample which, as is typical, communicates with a backend service for data through a serverless API. In this particular example, it’s a search capability that…
Build a Universal Search API with GraphQL and AWS AppSync
Have you ever looked at a feature of a mobile app and wondered how they do something? Me too! I like to figure out how they built those features and build them into my own apps.…
How developers can authenticate and authorize users with AWS AppSync
> AWS AppSync provides four distinct methods of authorizing users to optimize and restrict data being transferred [AWS AppSync] is a managed [GraphQL] data service that supports…