Skip to content

Instantly share code, notes, and snippets.

View ivanopcode's full-sized avatar

Ivan ivanopcode

View GitHub Profile
@ivanopcode
ivanopcode / iOS Guide – Creating Unsigned iOS App Builds.md
Last active November 6, 2024 18:28
iOS Guide – Creating Unsigned iOS App Builds

Creating Unsigned iOS App Builds

⚠️ Warning: Unsigned builds are primarily for development/testing purposes and cannot be installed on physical devices.

Build Methods

Method 1: Command Line Approach (Recommended for CI/CD)

1. List Available Schemes

For .xcodeproj:

// MIT License
//
// Copyright (c) 2024 Ivan Oparin
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
@ivanopcode
ivanopcode / URLEncodedFormEncoder.swift
Created December 6, 2024 23:17
Swift 6 URLEncodedFormEncoder
// Copyright (c) 2019 Alamofire Software Foundation (http://alamofire.org/)
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
@ivanopcode
ivanopcode / AppearanceObserver.swift
Created February 21, 2025 02:01
Reacting to ScrollView offset
// Copyright (c) 2021-2025 Alexey Grigorev, Ivan Oparin
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//