Skip to content

Commit 2dc097b

Browse files
committed
we'll need iOS 10 at least, to preserve appcache after the app is closed...
1 parent 436f043 commit 2dc097b

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ I know, using a Wrapper-App to display a Website can feel a bit odd. But there a
3434
- iOS doesn't like transparency, use background colors on your icons.
3535
- I like using [App Icon Maker](http://appiconmaker.co), but any other similar service will do it as well.
3636
- Don't forget the `launcher` icon!
37-
- Change _Bundle Identifier_ and _Display Name_
37+
- In the Project Overview
38+
- change _Bundle Identifier_ and _Display Name_
39+
- add your Certificates and tweak the rest as you wish
40+
- a _Deployment Target_ of iOS 10.0 is set by default, as the [offline cache isn't preserved after closing the app in earlier versions](https://stackoverflow.com/questions/29892898/enable-application-cache-in-wkwebview/44333359#44333359). Therefore, the wrapper is only tested on iOS 10+ and there's no official support for earlier versions for now.
3841
- Build App in Xcode
3942

4043
### I don't accept Feature Requests, only Pull Requests :)

ios-pwa-wrapper.xcodeproj/project.pbxproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@
440440
CODE_SIGN_STYLE = Automatic;
441441
DEVELOPMENT_TEAM = 86W9Q5SP7G;
442442
INFOPLIST_FILE = "ios-pwa-wrapper/Info.plist";
443-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
443+
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
444444
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
445445
PRODUCT_BUNDLE_IDENTIFIER = "at.xtools.ios-pwa-wrapper";
446446
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -458,7 +458,7 @@
458458
CODE_SIGN_STYLE = Automatic;
459459
DEVELOPMENT_TEAM = 86W9Q5SP7G;
460460
INFOPLIST_FILE = "ios-pwa-wrapper/Info.plist";
461-
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
461+
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
462462
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
463463
PRODUCT_BUNDLE_IDENTIFIER = "at.xtools.ios-pwa-wrapper";
464464
PRODUCT_NAME = "$(TARGET_NAME)";

0 commit comments

Comments
 (0)