首页
关于
壁纸
直播
留言
友链
统计
Search
1
《三国志英杰传》攻略
6,130 阅读
2
Emby客户端IOS破解
5,999 阅读
3
白嫖Emby
5,981 阅读
4
《吞食天地1》金手指代码
5,281 阅读
5
破解emby-server
4,241 阅读
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
登录
Search
标签搜索
ubuntu
mysql
openwrt
zerotier
springboot
centos
openvpn
jdk
吞食天地2
synology
spring
idea
windows11
吞食天地1
transmission
google-play
Japanese
xcode
群晖
kiftd
MoonjerX
累计撰写
375
篇文章
累计收到
464
条评论
首页
栏目
moonjerx
game
age-of-empires
zx3
san-guo-zhi
尼尔:机械纪元
net
emby
learn-video
docker
torrent
photoshop
route
minio
git
ffmpeg
im
vue
gitlab
typecho
svn
alipay
nasm
srs
mail-server
tailscale
kkfileview
aria2
webdav
synology
redis
oray
chemical
mxsite
math
π
x-ui
digital-currency
server
nginx
baota
k8s
http
cloud
linux
shell
database
vpn
esxi
rancher
domain
k3s
ewomail
os
android
windows
ios
app-store
macos
develop
java
javascript
uniapp
nodejs
hbuildx
maven
android-studio
jetbrain
jenkins
css
mybatis
php
python
hardware
hard-disk
pc
RAM
software
pt
calibre
notion
office
language
literature
philosophy
travel
页面
关于
壁纸
直播
留言
友链
统计
搜索到
48
篇与
os
的结果
2022-05-16
hbuilder本地离线打包
1.Hbuilderx生成本地打包App资源生成资源包如图:2.在打包指南链接中下载Sdk包https://nativesupport.dcloud.net.cn/AppDocs/download/android下载完后解压,得到以下文件3.Android Studio创建空工程在新工程目录 src/main/assets 中创建apps目录,1.将hbuilderx生成的资源包文件放到src/main/assets/apps/目录下2.将打包指南中下载的sdk包中的 Android-SDK@3.4.7.81308_20220424/SDK/assets/data 文件放入 src/main/assets 目录3.修改 dcloud_control.html 中的 appid 为 hbuilderx 生成的资源包文件名 __UNI__B356F03 4.将 Android-SDK@3.4.7.81308_20220424/SDK/libs 中的 lib.5plus.base-release.aar 拷贝到新工程的 app/libs 目录下5.在 androidmanifest.xml 中添加 activity<activity android:name="io.dcloud.PandoraEntry" android:configChanges="orientation|keyboardHidden|keyboard|navigation" android:label="@string/app_name" android:launchMode="singleTask" android:hardwareAccelerated="true" android:theme="@style/TranslucentTheme" android:screenOrientation="user" android:windowSoftInputMode="adjustResize" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="io.dcloud.PandoraEntryActivity" android:launchMode="singleTask" android:configChanges="orientation|keyboardHidden|screenSize|mcc|mnc|fontScale|keyboard" android:hardwareAccelerated="true" android:permission="com.miui.securitycenter.permission.AppPermissionsEditor" android:screenOrientation="user" android:theme="@style/DCloudTheme" android:windowSoftInputMode="adjustResize"> <intent-filter> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <action android:name="android.intent.action.VIEW" /> <data android:scheme="h56131bcf" /> </intent-filter> </activity>io.dcloud.PandoraEntry 和 io.dcloud.PandoraEntryActivity 报错在app/build.gradle中添加maven依赖包 implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: []) implementation 'com.alibaba:fastjson:1.1.46.android'Installed Build Tools revision 32.0.0 is corrupted.的解决方法出现这个问题的原因是sdk缺少了两个文件: dx.bat , dx.jar 这两个文件在sdk中都有,只是名字错了,需要复制一份重命名:具体解决方案:找到并进入 C: <本地Android Sdk实际路径> AndroidSdkbuild-tools32.0.0 目录 提示 :AppData是一个隐藏文件夹,打开隐藏项就可以看到AppData文件夹找到 d8.bat 的文件(Windows批处理文件),复制并粘贴在 当前文件夹 ,重新命名为 dx.bat 进入 C: <本地Android Sdk实际路径> AndroidSdkbuild-tools32.0.0lib 目录复制 d8.jar 并粘贴在当前文件夹,重新命名为 dx.jar .然后重新编译项目
2022年05月16日
377 阅读
0 评论
0 点赞
2022-04-18
从UIBackgroundModes键中删除“audio”设置
在Appstore上提交了我的应用程序,但因为后台音频已启用而被拒绝,此时我重新提交了应用程序,我从.plist文件中删除了“所需的背景模式”键,并从Capabilities下禁用了“背景模式”但再次该应用程序被拒绝,查询App Store评论给了我这个回应:After further review background audio is still enabled. Please remove the "audio" setting from the UIBackgroundModes key. Once this issue has been addressed we can proceed with review.功能下背景模式的屏幕截图:一些帮助将不胜感激,让我的应用程序批准。 谢谢
2022年04月18日
155 阅读
0 评论
0 点赞
2022-04-15
xcode打包应用遇坑问题
https://blog.csdn.net/Zzy_Genesis/article/details/77043937https://blog.csdn.net/sunxiaoju/article/details/80892372?utm_source=blogxgwz8
2022年04月15日
134 阅读
0 评论
0 点赞
2022-04-08
Google Play 应用上架流程
https://blog.csdn.net/auccy/article/details/81121949
2022年04月08日
159 阅读
0 评论
0 点赞
2022-04-08
如何注册三星应用商店开发者账号
https://www.zesmob.com/blog/34837.html
2022年04月08日
425 阅读
0 评论
0 点赞
1
...
5
6
7
...
10
您的IP: