testflight

Publishing to TestFlight, new testers, do I really need to rebuild/download my provisioning profile?

℡╲_俬逩灬. 提交于 2019-11-27 09:46:21
问题 I have published an app through the testflight website to allow my colleagues to test, and as more and more of them opens the initial email and find time to go through the registration process, testers are trickling in on my testflight team. However, the process to add them to the test seems a bit convoluted, so I thought I'd verify, and ask, if I'm doing it right, or if I have missed something obvious. At the moment the whole procedure looks like this: A colleague opens up the initial email,

NSPhotoLibraryUsageDescription in Xcode8

喜你入骨 提交于 2019-11-27 04:16:42
问题 Update : I attempt to add a String value to the "NSPhotoLibraryUsageDescription" key. And it works.My build version is now available on my TestFlight. ps: 构建版本 means Build Version But I want to know why Apple Store just let me add String value for "NSPhotoLibraryUsageDescription" key rather than "Camera Usage Description" or "Location When In Use Usage Description" ? And how to localize the info.plist. Old : I've uploaded many build versions to iTunes Connect.But TestFlight shows none of

How can I add a JAR in my gradle project?

江枫思渺然 提交于 2019-11-27 03:22:01
问题 I am using gradle in Android studio for an android project. I have a jar that I downloaded called TestFlightAppLib.jar . This jar isn't present in the maven repository so I can't just put it in my build.gradle . How can I add this JAR file to my project? I don't see any option to add an external jar to the project. Update This is my complete build.gradle buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.6.+' } } apply plugin: 'android'

Detect TestFlight?

*爱你&永不变心* 提交于 2019-11-27 03:19:58
问题 I would prefer to use the same build configuration for TestFlight vs. App Store. Is there a way to detect at runtime whether the app has been installed via TestFlight or the App Store? (My thinking is I'll only call takeOff if it's not installed via the App Store.) I want to avoid using TestFlight in App Store builds to protect my users' privacy, and also to avoid the potential derailing of networking discussed here. 回答1: I believe this to be close enough to a duplicate of Check if iOS app is

Why push notifications is not working on testflight?

跟風遠走 提交于 2019-11-27 03:06:11
I have tested push notifications as a developer account and it worked, But when i tried to put it on TestFlight for the testers to test it, it didn't show a push notification but the data is correctly received, So is there a kind of certificate that i need to generate for TestFlight? But when i tried to put it on TestFlight for the testers to test it, it didn't show a push notification but the data is correctly received. That sentence is confusing. If you didn't get the push notification, what data is correctly received? Anyway, if I recall correctly, for TestFlight you are using an AdHoc

Get access to Build Changelog in Jenkins

不打扰是莪最后的温柔 提交于 2019-11-27 00:51:26
I've been pulling my hair out trying to find a way to include the list of changes generated by Jenkins (from the SVN pull) into our Testflight notes. I'm using the Testflight Plugin, which has a field for notes - but there doesn't seem to be any paramater/token that jenkins creates to embed that information. Has anyone had any luck accomplishing something like this? It looks like the TestFlight Plugin expands variables placed into the "Build Notes" field, so the question is: how can we get the changes for the current build into an environment variable? As far as I'm aware, the Subversion

My app was just rejected for using the Ad support framework. Which library is responsible?

允我心安 提交于 2019-11-26 21:15:40
This was simply an update that didn't change anything to do with the rejection reason. Here is the response from the resolution center: Reasons Program License Agreement PLA 3.3.12 We found your app uses the iOS Advertising Identifier but does not include ad functionality. This does not comply with the terms of the iOS Developer Program License Agreement, as required by the App Store Review Guidelines. Specifically, section 3.3.12 of the iOS Developer Program License Agreement states: "You and Your Applications (and any third party with whom you have contracted to serve advertising) may use

How to prevent iOS crash reporters from crashing MonoTouch apps?

折月煮酒 提交于 2019-11-26 18:46:53
问题 There are plenty iOS crash reporting libraries in iOS, including TestFlight and HockeyApp. If you don't want to depend on services, you can still use libraries like PLCrashReporter. Binding these libraries is fairly trivial because their public API usually consists of a couple of classes with several initialization methods. However, when trying to use TestFlight, and later HockeyApp in our application, our app began to randomly crash. Turns out, this is a known issue reported several times,

My prerelease app has been “processing” for over a week in iTunes Connect, what gives?

微笑、不失礼 提交于 2019-11-26 17:01:25
I used Xcode 6.1.1 to upload a new version of a prerelease app to iTunes Connect so I could distribute it to my external beta testers. I've done this with two versions of the same app previously and it worked fine. But this time, the upload was stuck in "Processing" state for over a week. I tried again (same version, new build number) and it's now been over 24 hours with no change. The app passed validation fine. What gives? Go to "Resources & Help" in iTunes Connect. Select "Contact Us" and follow the wizard. I don't think anyone other than Apple can answer this. And this is what we have done

How to tell at runtime whether an iOS app is running through a TestFlight Beta install

拈花ヽ惹草 提交于 2019-11-26 17:01:01
Is it possible to detect at runtime that an application has been installed through TestFlight Beta (submitted through iTunes Connect) vs the App Store? You can submit a single app bundle and have it available through both. Is there an API that can detect which way it was installed? Or does the receipt contain information that allows this to be determined? For an application installed through TestFlight Beta the receipt file is named StoreKit\sandboxReceipt vs the usual StoreKit\receipt . Using [NSBundle appStoreReceiptURL] you can look for sandboxReceipt at the end of the URL. NSURL