Skip to content

Instantly share code, notes, and snippets.

View AlecKazakova's full-sized avatar
🐢
busy, slower to respond

Alec Kazakova AlecKazakova

🐢
busy, slower to respond
View GitHub Profile
@benasher44
benasher44 / ios.gradle
Last active April 30, 2019 04:23
iOS Gradle Utilities for Generating Fat Frameworks and dSYMs
afterEvaluate {
// Create tasks for creating fat frameworks and fat dsyms for sim and device
def binaryKinds = [
// config, sim task, device task
new Tuple('Debug', linkDebugFrameworkIosSim, linkDebugFrameworkIosDevice),
new Tuple('Release', linkReleaseFrameworkIosSim, linkReleaseFrameworkIosDevice),
]