我正在使用Fabric/Crashlytics为Beta测试人员部署应用程序.几周以来一切都运行正常,但是对于一个版本,当测试人员尝试安装应用程序时,会显示以下错误消息:
无法下载:此时无法安装APP_NAME [完成/重试选项]

到目前为止排除故障:
附加信息:
有关进一步故障排除的建议
我一直在使用Generamba(https://github.com/rambler-digital-solutions/Generamba)为iOS下的VIPER架构下的每个模块创建模板文件.
它节省了大量时间,但仍然需要通过终端命令来运行Generamba并创建文件.有没有人知道如何将这些模板直接嵌入到XCode 8中?
谢谢
当我的音乐播放器应用在背景上播放时,我需要一些问题的帮助.
我可以在应用程序和后台播放这两种服务的音乐.我也可以设置MPNowPlayingInfoCenter并显示正确的信息,但只有当用户使用Spotify进行身份验证时,播放/暂停,下一首曲目和之前的曲目才有效:
当用户使用Spotify进行身份验证时,应用程序会正确接收通知
但是当用户使用Apple Music进行身份验证时,它不起作用.在这种情况下,Apple Music似乎是接收通知的人.
当我AVPlayer与Apple Music SPTAudioStreamingController同步并与Spotify同步时,我正在使用它来播放音乐.
以下是媒体中心设置的代码:
- (void)setMediaCenterinfoForPlayer:(id)player {
SPTAudioStreamingController *spotifyPlayer;
AVPlayer *localPlayer;
NSMutableDictionary *trackInfo = [[NSMutableDictionary alloc] initWithDictionary: @{ MPMediaItemPropertyTitle: self.currentTrack.name,
MPMediaItemPropertyArtist: ((SPTArtist *)self.currentTrack.artists[0]).name,
MPMediaItemPropertyAlbumTitle : self.currentTrack.album.name,
MPNowPlayingInfoPropertyPlaybackRate: @(1.0)
}];
if ([player isKindOfClass:[SPTAudioStreamingController class]]) {
spotifyPlayer = (SPTAudioStreamingController *)player;
[trackInfo setObject:[NSNumber numberWithFloat:spotifyPlayer.currentPlaybackPosition] forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime];
[trackInfo setObject:[NSNumber numberWithFloat:spotifyPlayer.currentTrackDuration] forKey:MPMediaItemPropertyPlaybackDuration];
} else {
localPlayer = (AVPlayer *)player;
NSTimeInterval playbackTime = [self currentPlaybackTimeForPlayer:player];
[trackInfo setObject:@(playbackTime) forKey:MPNowPlayingInfoPropertyElapsedPlaybackTime];
[trackInfo setObject:@(CMTimeGetSeconds(localPlayer.currentItem.asset.duration)) forKey:MPMediaItemPropertyPlaybackDuration];
}
[MPNowPlayingInfoCenter defaultCenter].nowPlayingInfo …Run Code Online (Sandbox Code Playgroud)我的 Launchscreen.storybord 上有一个带有白色文本和透明背景的 PNG。imageView 背景设置为透明且 alpha =1。但是当我启动时,背景似乎变成了白色:
有谁知道如何解决它?我可能缺少图像检查器上的属性。
ios ×2
xcode ×2
xcode8 ×2
architecture ×1
crashlytics ×1
objective-c ×1
swift3 ×1
viper ×1
xcode8.2 ×1