owlmobile-cli
v1.63.0
Published
owlmobile command line tools
Downloads
5
Readme
owl_mobile
搭建构造环境
目录结构说明:
bin:
templates:
需要手动修改的部分
IOS
Video_Player
Add the following entry to your Info.plist file, located in /ios/Runner/Info.plist:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Android
Video_Player
Ensure the following permission is present in your Android Manifest file, located in `/android/app/src/main/AndroidManifest.xml:
<uses-permission android:name="android.permission.INTERNET"/>
The Flutter project template adds it, so it may already be there.