Skip to content

Commit

Permalink
we'll need iOS 10 at least, to preserve appcache after the app is clo…
Browse files Browse the repository at this point in the history
…sed...
  • Loading branch information
xtools-at committed Oct 31, 2017
1 parent 436f043 commit 2dc097b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@ I know, using a Wrapper-App to display a Website can feel a bit odd. But there a
- iOS doesn't like transparency, use background colors on your icons.
- I like using [App Icon Maker](http://appiconmaker.co), but any other similar service will do it as well.
- Don't forget the `launcher` icon!
- Change _Bundle Identifier_ and _Display Name_
- In the Project Overview
- change _Bundle Identifier_ and _Display Name_
- add your Certificates and tweak the rest as you wish
- 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.
- Build App in Xcode

### I don't accept Feature Requests, only Pull Requests :)
Expand Down
4 changes: 2 additions & 2 deletions ios-pwa-wrapper.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 86W9Q5SP7G;
INFOPLIST_FILE = "ios-pwa-wrapper/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "at.xtools.ios-pwa-wrapper";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -458,7 +458,7 @@
CODE_SIGN_STYLE = Automatic;
DEVELOPMENT_TEAM = 86W9Q5SP7G;
INFOPLIST_FILE = "ios-pwa-wrapper/Info.plist";
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
IPHONEOS_DEPLOYMENT_TARGET = 10.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = "at.xtools.ios-pwa-wrapper";
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down

0 comments on commit 2dc097b

Please sign in to comment.