Questions tagged [universal]

621 questions
3
votes
1 answer

How to create one more AppDelegate in Xcode 4.3.2?

I am working in iPhone application, Using Xcode 4.3.2 tool to develop it, Using universal application to create this application, but only one Appdelegate (i am using this appdelegate for iPhone) show in the project navigator, but i want another one…
SampathKumar
  • 2,525
  • 8
  • 47
  • 82
3
votes
2 answers

Making an iPad nib load in a universal app

I've set up a BOOL called isUsingiPad to detect when my user is using an iPad. I used this to do so: UIDevice* userDevice = [UIDevice currentDevice]; if (userDevice.userInterfaceIdiom == UIUserInterfaceIdiomPad) { isUsingiPad = YES; } When my…
tallybear
  • 417
  • 3
  • 17
2
votes
2 answers

Converting separate iPhone and iPad projects into a Universal one

I have two complete projects. One works on iPhone and the other works on iPad. I want to merge these into a Universal app. So far the only solution I have is to rename app the classes with '_iPhone' and '_iPad' suffixes and change all references to…
user470763
2
votes
2 answers

Universal iPhone/iPad app size concern

It is recommended by Apple to make universal apps, i.e. one ipa for iPhone and iPad. If I make a standalone iPhone app, it gets approx. 6Mb. If I make a universal app it becomes approx. 19Mb... For iPhone users this is a waste... (size is build up…
debleek63
  • 1,181
  • 8
  • 17
2
votes
2 answers

How to submit universal application on iTunes?

I want to submit application for iPad and iPhone both. first time when i submit application its submitted as iPhone only. it created for both iPad and iPhone but in itunes its show only as iPhone application America's best showcaves can anybody…
Raj
  • 1,213
  • 2
  • 16
  • 34
2
votes
0 answers

Angular universal prerender meta tags not working

I am really at my wits end with seo on a web site. I started working on something and i always thought that build:ssr is generating a site that is google index friendly. Actually build:ssr was not doing anything else than the classic ng build from…
HDs Sergiu
  • 1,117
  • 2
  • 8
  • 12
2
votes
0 answers

Angular Universal rendering only router-outlet

Before I share this problem I've searched on google and I don't seem to find the problem, here is a glimpse of the links I visited to solve my problem: Angular Universal not rendering route Angular Universal not rendering content inside of…
Nani Po
  • 61
  • 3
2
votes
1 answer

Does something wrong with Widget&& var1 = someWidget;?

recently, i began to learing something about universal reference https://isocpp.org/blog/2012/11/universal-references-in-c11-scott-meyers and it says that Widget&& var1 = someWidget; //here, "&&" means rvalue reference. i know that "&&" can be…
2
votes
1 answer

Angular Universal 12 ( Server side ) not loading modules on lazy load

I have small application that have only one module, the application is working fine but it's not rendering the component on page source. The issue is when I'm starting the application with npm run dev:ssr everything is fine ( on page source you…
2
votes
1 answer

Downgrading a Universal iOS App to iPad only

I have a universal app which I decided should become iPad only from the next version. I already know how to change the target to get the desired effect. What I don't fully understand is the impact on my users. Lets say the currently released version…
Roi
  • 546
  • 5
  • 20
2
votes
5 answers

Angular 11 Universal and Bootstrap 5 Toast not working- new bootstrap TS2304: Cannot find name 'bootstrap', crushed

I work with Angular 11 Universal - server side rendering. I'm trying to implement Bootstrap 5 toasts (css works well), but it doesn't understand class new bootstrap: angular.json - it's imported properly "styles": [ …
2
votes
0 answers

Is there way to upload Intel and M1 both build combined together on Appstore?

I am on working electron and I have created M1 build but the case is here like our app is already developed with native code and uploaded on Appstore. we have re-written whole app in electron to support cross-platform so I don't want to touch a…
Hardik Kothari
  • 1,686
  • 1
  • 15
  • 29
2
votes
1 answer

angular universal connected postgresql issue

I npm install pg on angular universal, modify Server.ts import pg to connect postgresql, npm run dev:ssr ,show error like this . Module not found: Error: Can't resolve 'pg-native' in 'D:\gitapp\ngex\node_modules\pg\lib\native' resolve 'pg-native'…
percinor
  • 227
  • 1
  • 2
  • 11
2
votes
0 answers

Angular SSR build on different route

I have angular 9 app running on ssr (universal expressjs). The application should be on a specific route: example.com/app I'm using APP_BASE_HREF as '/app' to have all angular routings correctly but the build files are still on the root. If I add…
user123
  • 182
  • 1
  • 2
  • 9
2
votes
2 answers

Question about UIWebview and Universal Application

I have an Universal Application and my question is, if it is possible to load two different html files in my UIWebview depending on the iDevice. Thanks for any answers.
mstottrop
  • 589
  • 5
  • 21