Skip to content

Instantly share code, notes, and snippets.

View pvasa's full-sized avatar
🎯
Focusing

Priyank Vasa pvasa

🎯
Focusing
  • Yelp
  • Courtice, ON, Canada
  • X @pvasa0
View GitHub Profile
#!/bin/bash
### WARNING: Must only be run from android project's root dir
find ./* -name "build" -type d -exec rm -r {} +
find ./* -name "*.iml" -type f -exec rm -r {} +
find ./* -name ".gradle" -type d -exec rm -r {} +
find ./* -name ".idea" -type d -exec rm -r {} +
@pvasa
pvasa / build.gradle.kts
Last active May 10, 2020 16:21
Gradle configuration for Kotlin multiplatform library
// This is library side setup to get the correct frameworks ready
// Follow https://play.kotlinlang.org/hands-on/Targeting%20iOS%20and%20Android%20with%20Kotlin%20Multiplatform/05_CreatingiOSApp
// for Xcode side setup
import org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget
plugins {
// Setup android target types and auto generate android source sets
id("com.android.library")