Skip to content

Instantly share code, notes, and snippets.

View jaraen's full-sized avatar

Javier Rayon jaraen

View GitHub Profile
@chaitanyagupta
chaitanyagupta / re-sign-ios-app.md
Last active October 20, 2023 08:28
How to re-sign an iOS app with another developer account

WARNING These steps are probably out dated and will not work.

To re-sign an iOS app with another developer account, ensure that the following are in place first.

  1. Distribution certificate of the other developer account
  2. A provisioning profile from the other developer account

Note that the Apple requires bundle IDs to be globally unique, even across accounts. So a bundle ID i.e. CFBundleIdentifier from one account can't be used in a different account, even though the team id/prefix would be different.

Ensure that the new distribution certificate is in your keychain and the new provisioning profile on your disk.

@andresamayadiaz
andresamayadiaz / createPDFView
Created September 28, 2011 18:26
Titanium Appcelerator remote PDF with ProgressBar
/*
If you want to open a remote PDF (by remote i mean you have an PDF URL) and want to show a progressbar downloading the file, and at the end show the PDF in a webview
*/
// INIT Create PDF View
mw.ui.CreatePDFView = function(_args){
var win = Ti.UI.createWindow({
title: _args.title