Questions tagged [universal]
621 questions
10
votes
1 answer
How to set different Launch File (xib, not launch image) for different device for iOS application
I have developed an iOS app which now I'm trying to update giving it iPad and iPhone support.
I want to make the difference Launch File(made in xib file)for iPad and iPhone.
I know there are lots of posts talking about how to handle initial view of…

Gary nil
- 181
- 1
- 5
9
votes
3 answers
How To Port an iPhone Application to the iPad (Storyboard)
I just finished my iPhone app and I want to make it Universal. I've read a few posts already but they're a bit old (2010 or so).
What I got:
Simple iPhone app, recently created (iOS 5 - Storyboard), with three screens.
My app represents a table…

Juan González
- 1,526
- 3
- 16
- 32
9
votes
1 answer
how to get a universal app to show up in both sections of the app store
I just released a universal update to what had previously been an iPhone app. But it's only showing up in the iPhone section of the store, even when I search for it on an iPad. It does have the little plus sign indicating a universal app, and it…

adamD
- 125
- 2
9
votes
2 answers
How do I drop all functions from CLR Assembly before it's drop in SQL Server?
I am getting 'drop assembly failed because it is referenced by object' error.
As I understand I need to drop all functions referenced to this assembly before it's drop.
Is there any universal way how to do that?

Dmitriy Grishin - dogrishin
- 352
- 4
- 13
9
votes
2 answers
How to use Angular 2 server side rendering
I have developed a parser for my angular2 components which renders them in my HTML file.
So far I am able to render them in HTML as
import {Component} from 'angular2/core';
import {NgSwitch, NgSwitchWhen, NgSwitchDefault,NgFor} from…

Bhushan Gadekar
- 13,485
- 21
- 82
- 131
9
votes
7 answers
Universal Turing Machine Problems
If I have a machine, call it machine 1, that is able to solve a problem: it's just a machine, not per se a Turing machine. It can solve one specific problem.
If this exact same problem can be solved on a Universal Turing Machine, then is my original…

Pindatjuh
- 10,550
- 1
- 41
- 68
8
votes
1 answer
Merging existing iPhone and iPad app ids into a single universal app id
I have an existing iPhone app and an iPad app, now I have created a Universal app, and I want to know if there is any way to kind of "merge" the existing app Ids, so I can upload my new app as an update for the previous ones.
Thanks!

Eduardo Urias
- 125
- 7
8
votes
1 answer
Data models and business logic in isomorphic (React/Redux/Express/Mongo) app
I've recently built a few isomporphic/univeral projects using the React-Redux-Express-Mongoose stack.
In my mongoose models is contained a lot of business-logic. As a very basic example (excuse my ES6):
import mongoose, {Schema} from…

Joe Woodhouse
- 337
- 3
- 10
8
votes
2 answers
Access to the path 'mscordbi.dll' is denied
when trying to deploy my uwp application (no difference for Simulator, local or x86, x64), I get the following error:
Error : DEP0500 : The folder "...\bin\x86\Debug\AppX" could not be deleted.
Access to the path 'mscordbi.dll' is denied
With the…

cykone
- 113
- 8
8
votes
3 answers
Python help reading csv file failing due to line-endings
I'm trying to create this script that will check the computer host name then search a master list for the value to return a corresponding value in the csv file. Then open another file and do a find an replace. I know this should be easy but haven't…

Aaron
- 2,672
- 10
- 28
- 45
8
votes
6 answers
Android-Universal-Image-Loader doesn't keep loaded images on scroll in gridview
I am using Android-Universal-Image-Loader library to load a remote pictures to ImageView in my GridView cells.
Here the the imageLoader configurations:
new ImageLoaderConfiguration.Builder(Config.context)
.threadPriority(Thread.NORM_PRIORITY -…

John F
- 685
- 1
- 8
- 18
7
votes
2 answers
Angular Universal not rendering content inside of router-outlet
I am trying to render my Angular 7 application with SSR using Angular Universal from this link https://angular.io/guide/universal. I had thought I had everything working from there since I was able to view the page source and see everything that is…

Midevilworm
- 451
- 5
- 10
7
votes
1 answer
SecurityError: Failed to execute 'replaceState' on 'History':
I am facing this issue across all browsers. This comes up whenever I try to view my site in Google cache
main.bundle.js:1 ERROR Error: Uncaught (in promise): SecurityError: Failed to execute 'replaceState' on 'History': A history state object with…

Adam Young
- 1,321
- 4
- 20
- 36
7
votes
1 answer
What makes `impl Trait` as an argument "universal" and as a return value "existential"?
I was reading the RFC on "expanding" impl Trait when I came upon the following:
By contrast, a programmer who first learned: fn take_iter(t: impl
Iterator) and then tried: fn give_iter() -> impl Iterator would be
successful, without any…
user8370684
7
votes
2 answers
Angular 5 Universal exclude path from rendering on server
Are there any way I can force only browser rendering of particular path for Angular 5 universal app?
I have following routes in app.module.shared.ts
@NgModule({
declarations: [...],
imports: [
......
RouterModule.forRoot([
…

Alexander
- 315
- 4
- 11