testflight

Xcode 7.2 successful archives will not show in organizer, but will show in archives folder about derived data folder

半腔热情 提交于 2019-12-04 05:11:13
I am using Cocoapods 0.39.0 and Xcode 7.2 , I have a project that archives successfully but does not populate in organizer . When I tested my podfile in a blank project the archive showed up in the Organizer just fine. While trying to troubleshoot this I found that there was an Archives folder above Derived Data. There I actually found all the .xcarchive files of the project that won't show up in the Organizer. When clicking on the file details, I also noticed that the working Archive had a size (228.3 MB for the test project) but my main project I want working has a size of 0 bytes. Figured

iOS Enterprise Development - TestFlight

谁说胖子不能爱 提交于 2019-12-04 03:38:30
问题 I just received an email this morning that testflightapp.com will no longer be active as of 2/26/2015, and that I should be using the iTunes Connect TestFlight service instead. This is fine and dandy for app store apps, but most of my projects are enterprise apps, and that is not supported in iTunes Connect. On top of that, iTunes Connect TestFlight requires iOS 8, and a good chunk of Enterprise users are still on iOS 7. Does anyone have a solution outside of TestFlight for deploying

Are testflight app sizes bloated by a large amount compared to actual download sizes after publishing?

我的梦境 提交于 2019-12-04 03:20:39
问题 I have built an iOS game with Unity. I uploaded it to the App Store (with bitcode enabled). The IPA is about 200 mb. On iTunes Connect, it shows my build size to be about 30mb for each device (which I was very happy to see). But when I added the build to TestFlight, I notice that while downloading via TestFlight, it shows the size to be 170mb. Quite contrary to this question (TestFlight showing my app size is 4 times less than the actual size) the size of my app on TestFlight is many times

iOS Push notifications not working on for ad hoc distributions with Test Flight

这一生的挚爱 提交于 2019-12-04 02:53:42
Having a bit of a weird issue... In my AppDelegate.m I have the following: -(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleBlackTranslucent animated:NO]; // Override point for customization after application launch. // Enable test flight reporting; https://testflightapp.com/sdk/doc/0.8.3/ [TestFlight takeOff:@"myTestFlightToken"]; // Let the device know we want to receive push notifications [[UIApplication sharedApplication] registerForRemoteNotificationTypes:

The encryption information is unavailable. Try again. TestFlight

自古美人都是妖i 提交于 2019-12-04 00:34:56
The app is uploaded without errors, but when I press the install button I get this message: I'm using macOS Sierra 10.12 and Xcode 8. This has never happened to me in old versions of Xcode. What could be wrong? TestFlight is currently unavailable, i can't either install from TestFlight or see any of my builds in Itunes Connect. Also my app was in processing for 4 hours, then this happened. Please check here https://developer.apple.com/system-status/ or this screenshot Update: Confirmed by Apple I had the same issue. I never had an issue with setting or not setting the encryption flag. So I

How to test Facebook Audience Network ads over TestFlight?

最后都变了- 提交于 2019-12-04 00:32:28
I am trying to integrate Audience Network to my app. Ads work correctly on simulator and device when I deploy over XCode. I want to distribute the build over TestFlight to be sure it will work in release mode. When I try to directly deploy from XCode to my device in release mode, Facebook returns "No fill" for the Ads. Ads do not show up on TestFlight builds either. Have any ideas about showing ads for devices in TestFlight builds? There could be two main reasons for this. Firstly, the user or testers could not be signed-in to the native Facebook app on the device. This could then result in

Apple TestFlight (beta) app won't install

ぃ、小莉子 提交于 2019-12-03 16:14:20
问题 We have been using Apple's TestFlight facility to distribute a beta version of our app for a few months now (migrated from the older TestFlight service before it was merged into the AppStore). Things worked smoothly until today. After uploading a new beta build to TestFlight, the app no longer installs on the device (iPhone 6 with iOS 8.3). When opening TestFlight app and tapping "Install" to install the latest beta version of the app, TestFlight downloads the app, but when the installation

Device Tocken will Change after install from diawi or TestFlight? So Push notification is not coming

萝らか妹 提交于 2019-12-03 15:17:48
问题 I'm currently creating an app that needs to receive push notifications from a server. When I got the device token, I send it to my server and save it into DB, My question is: When I tried to normally install application on device from XCode, I got the correct device token and it is working for push notification. But when I tried to install application from TestFlight or diawi, device tocken changed and for that wrong device tocken application not receive any push notification. any help will

iOS TestFlight - External Testers Not Notified of New Build

こ雲淡風輕ζ 提交于 2019-12-03 14:08:11
I have made an app available to external TestFlight users. They have received the email and installed the app as expected. They have version 1.0, Build 1. However, I have now uploaded a new build (Version 1.0, Build 2). This has received approval. In the External Testing page, I have added and selected the new version. This new build now says 'Testing'. However, the users of the previous build have not received any notification and in the TestFlight app it still says Build 1. Does anyone know how I can make the current users get the new build? I assumed this would be automatic and I can't find

Apple Push Notification not working with ad-hoc build

邮差的信 提交于 2019-12-03 14:03:28
In development mode I can send push notification to devices, instead I can't in production, my setup is: .pem file that is the combination of aps_production.cer of provisioning portal and the private key of my ad-hoc certificate apple server apn: 'gateway.push.apple.com' with 2196 port I have a rails server that saves tokens from devices and then sends notification to apple with those device tokens and the previous .file for opening connection ad-hoc build applications have (it's rubymotion): entitlements['aps-environment'] = 'production' entitlements['get-task-allow'] = false application when