diff --git a/ios/PPSSPP-Info.plist b/ios/PPSSPP-Info.plist
index 5fe1a739c6..0f42d9ca8a 100644
--- a/ios/PPSSPP-Info.plist
+++ b/ios/PPSSPP-Info.plist
@@ -5,15 +5,15 @@
CFBundleDevelopmentRegion
en
CFBundleDisplayName
- ${PRODUCT_NAME}
+ PPSSPP
CFBundleExecutable
- ${EXECUTABLE_NAME}
+ PPSSPP
CFBundleIdentifier
- com.rock88dev.${PRODUCT_NAME:rfc1034identifier}
+ com.rock88dev.PPSSPP
CFBundleInfoDictionaryVersion
6.0
CFBundleName
- ${PRODUCT_NAME}
+ PPSSPP
CFBundlePackageType
APPL
CFBundleShortVersionString
@@ -37,10 +37,15 @@
UISupportedInterfaceOrientations~ipad
- UIInterfaceOrientationPortrait
- UIInterfaceOrientationPortraitUpsideDown
UIInterfaceOrientationLandscapeLeft
UIInterfaceOrientationLandscapeRight
+ CFBundleIconFiles
+
+ assets/Icon-72.png
+ assets/Icon-72@2x.png
+ assets/Icon.png
+ assets/Icon@2x.png
+
diff --git a/ios/ViewController.mm b/ios/ViewController.mm
index 576d3b68ca..8194b3235b 100644
--- a/ios/ViewController.mm
+++ b/ios/ViewController.mm
@@ -53,7 +53,7 @@ extern std::string ram_temp_file;
self.touches = [[[NSMutableArray alloc] init] autorelease];
self.documentsPath = [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0];
- self.bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/"];
+ self.bundlePath = [[[NSBundle mainBundle] resourcePath] stringByAppendingString:@"/assets"];
memset(&input_state, 0, sizeof(input_state));
diff --git a/ios/assets/Icon-72.png b/ios/assets/Icon-72.png
new file mode 100644
index 0000000000..1ae6c46557
Binary files /dev/null and b/ios/assets/Icon-72.png differ
diff --git a/ios/assets/Icon-72@2x.png b/ios/assets/Icon-72@2x.png
new file mode 100644
index 0000000000..3fe685c43e
Binary files /dev/null and b/ios/assets/Icon-72@2x.png differ
diff --git a/ios/assets/Icon.png b/ios/assets/Icon.png
new file mode 100644
index 0000000000..5852d4fb0a
Binary files /dev/null and b/ios/assets/Icon.png differ
diff --git a/ios/assets/Icon@2x.png b/ios/assets/Icon@2x.png
new file mode 100644
index 0000000000..fa0829e926
Binary files /dev/null and b/ios/assets/Icon@2x.png differ