Become a member
Sign in
Khoa Pham
Khoa Pham

Khoa Pham

My apps https://onmyway133.github.io/

Editor of Fantageek
1.1K Following
2K Followers
·
  • Profile
  • Claps
  • Highlights
  • Responses

Featured

Khoa Pham
Khoa Pham in Fantageek
Nov 6 · 1 min read

How to add AdMob to Android app

Use AdMob with Firebase

  • firebase.google.com/docs/admob/android/quick-start

build.gradle

buildscript {
repositories {
google()
jcenter()

}…

Latest

Khoa Pham
Khoa Pham in Fantageek
Nov 6 · 5 min read

How to setup Android projects

checkstyle (Java)

  • http://checkstyle.sourceforge.net/
  • https://github.com/checkstyle/checkstyle

Checkstyle is a development tool to help programmers write Java code that adheres to a coding…

17

Khoa Pham
Khoa Pham in Fantageek
Nov 6 · 2 min read

How to use Gradle Kotlin DSL in Android

kts

settings.gradle.kts

include(":app")

build.gradle.kts

import org.gradle.kotlin.dsl.apply
import org.gradle.kotlin.dsl.dependencies
import…
Khoa Pham
Khoa Pham in Fantageek
Nov 6 · 8 min read

How to use Stripe and Apple Pay in iOS

  • iOS Integration
  • Setting Up Apple Pay Requirements
  • Apple Pay

Show basic add card in iOS

import UIKit
import Stripe
Khoa Pham
Khoa Pham in Fantageek
Nov 6 · 3 min read

How to use Payment Intent and Setup Intents with Stripe in iOS

StripeHandler.swift

From Stripe 16.0.0 stripe/stripe-ios:CHANGELOG.md@master#1600-2019-07-18

Migrates STPPaymentCardTextField.cardParams property type from STPCardParams…