Эх сурвалжийг харах

Adds "ALTDeviceID" instructions to README

Explains that an ALTDeviceID entry in Info.plist is necessary for AltKit to work.
Riley Testut 3 жил өмнө
parent
commit
c182b8063b
1 өөрчлөгдсөн 4 нэмэгдсэн , 0 устгасан
  1. 4 0
      README.md

+ 4 - 0
README.md

@@ -25,8 +25,12 @@ Finally, right-click on your app's `Info.plist`, select "Open As > Source Code",
 </array>
 <key>NSLocalNetworkUsageDescription</key>
 <string>[Your app] uses the local network to find and communicate with AltServer.</string>
+<key>ALTDeviceID</key>
+<string></string>
 ```
 
+⚠️ The `ALTDeviceID` key must be present in your app's `Info.plist` to let AltStore know it should replace that entry with the user's device's UDID when sideloading your app, which is required for AltKit to work. For local development with AltKit, we recommend setting `ALTDeviceID` to your development device's UDID to ensure everything works as expected. Otherwise, the exact value doesn't matter as long as the entry exists, since it will be replaced by AltStore during installation.
+
 ### CMake Integration
 
 Note: CMake 3.15 is required for the integration. The integration only works with the Xcode generator.