- 博客(121)
- 收藏
- 关注

原创 【iOS逆向】iOS越狱流程和越狱查看其它APP的UI层级Reveal的使用全流程
1.越狱流程关注香蕉TECH-->输入越狱,如下图:若不能使用,请至其它平台下载UncOver2.点击Jailbreak点击后自动重启会出现Cydia图标代表越狱成功3.若打开Cydia闪退,解决方法打开UncOver-->设置-->打开ReinstallCydia,打开ReloadDaemons,打开Reset Cydia ...
2019-09-02 11:00:27
2214

原创 【Flutter开发】------修改图标、应用名称、包名等
在Flutter中,并没有统一地修改图标、应用名称和包名的地方,所以要在各自语言对应的地方进行修改:包名 Android 是在 android ▸ app ▸ src ▸ main ▸ AndroidManifest.xml 中修改package="xxx.xxx.xxx"; 以及在 android ▸ app ▸ src ▸ build.gradle中修改applicationId ...
2019-08-20 14:29:00
489

原创 安卓报错显示详细Error:Execution failed for task ‘:app:compileDebugKotlin‘. > Compilation error.
I solved it byClicking onGradle(on the right side bar) -> Then under:app Then chooseassembleDebug(orassembleYourFlavorif you use flavors)In Picture:1 & 2:3>Error ...
2019-08-16 20:30:29
1635

原创 webpack打包js流程
使用Webpack有一段时间了,但是感觉之前学的用的都比较零散,所以在这里整理一下Webpack的使用知识,从入门到进阶。创建项目首先创建最简单的一个项目npm init得到以下项目结构:项目结构安装Webpack先来个全局的npm i webpack -g再安装项目中的npm i webpack --save-dev此时项目结构为...
2019-08-01 18:02:19
711

原创 flutter导入flutter_bugly后报错如下的解决方法The Gradle failure may have been because of AndroidX incompatibiliti
The Gradle failure may have been because of AndroidX incompatibilities in this Flutter app.bianxiangdeMacBook-Pro:swapwallet-app bianxiang$ flutter build apkInitializing gradle... ...
2019-07-29 11:31:00
1582

原创 iOS把ipa安装包生成对外下载链接的方式(企业打包)
生成ipa提交到一个服务器上,生成外链(必须是https)https://raw.githubusercontent.com/yangtianyan/HookLive4iPhone/master/live4iphone.ipa 在生成两个icon,512*512,57*57,提交上服务器,生成外链(必须是https)https://raw.githubusercontent.com/...
2019-07-08 14:55:12
4395

原创 xcode clean cach ---xcode清除缓存
killall Xcode xcrun -k xcodebuild -alltargets clean rm -rf "$(getconf DARWIN_USER_CACHE_DIR)/org.llvm.clang/ModuleCache" rm -rf "$(getconf DARWIN_USER_C
2017-12-27 17:32:17
6178

原创 xcode account登录不上去sign apple id -> this action could not be completed. try again
xcode account登录不上去sign apple id -> this action could not be completed. try again解决方法===>sudo mkdir -p /Users/Sharedsudo chown root:wheel /Users/Sharedsudo chmod -R 1777 /Users/Shared
2017-11-16 13:55:17
6090

原创 AppStore审核支付功能被拒
-Does your app access any paid content or services?No, this service provided by 3rd party provider (Chinese Alipay Company)-What are the paid content or services, and what are the costs?To
2016-11-10 11:41:29
2050

原创 iOS开发---阿里巴巴IconFont适配技术
在开发阿里数据iOS版客户端的时候,由于项目进度很紧,项目里的所有图标都是用最平常的背景图片方案来实现。而为了要兼容普通屏与Retina屏的设备,苹果要求每个背景图都要以两种尺寸存(a.png和a@2x.png),这让设计师们增加了成本,因为他们每次都得出两份背景图标。 现在在web开发上,icon font技术的应用很广泛,它不仅在解决多分辨率显示问题上很有成效,而且在使用它的时
2016-04-12 18:34:38
3615

原创 Swift与OC混编的方法
swift 语言出来后,可能新的项目直接使用swift来开发,但可能在过程中会遇到一些情况,某些已用OC写好的类或封装好的模块,不想再在swift 中再写一次,哪就使用混编。这个在IOS8中是允许的。先中简单的入手,先研究在同一个工程目录下混合使用的情况。为了演示。先准备两个类第一个是swift语言写的类,文件名为 act.swift[cpp] vi
2016-02-15 15:59:01
657

原创 盘点本人在Swift开发中遇到的那些坑B问题!!!
1.Swift打印对象的地址print(unsafeAddressOf(tableView))2.关键字:lazy:懒加载final:修饰属性,方法,不可被子类重写 修饰类,不能被继承 convenience:修饰的是便利的构造方法只有便利构造方法才能调用当前类的其他构造方法只有指定构造方法才能调用父类的构造方法
2016-02-15 10:59:59
2269

原创 经常碰到的小问题和小知识
1.tableView最后一行分割线不显示- (void)layoutSubviews { [superlayoutSubviews]; for (UIView *subviewin self.contentView.superview.subviews) { if ([NSStringFromClass(sub
2016-01-23 19:48:46
977

原创 经常用的网站
优快云博客频道:http://write.blog.youkuaiyun.com/postlist拾取坐标系统 :http://api.map.baidu.com/lbsapi/getpoint/index.html谷歌镜像 : http://gg.cytbj.com/?q=&gws_rd=sslcode4App : http://code4app.com
2016-01-14 15:52:36
1545

原创 CocoaPods使用
iOS 最新版 CocoaPods 的安装流程1.移除现有Ruby默认源$gem sources --remove https://rubygems.org/2.使用新的源$gem sources -a https://ruby.taobao.org/3.验证新源是否替换成功$gem sources -l4.安装CocoaPods(1
2016-01-11 09:42:30
797

原创 经常碰到的xcode报错提示
1 ---- 6.0 error:-fembed-bitcode is not supported on versions of iOS prior to 6.0解决方法:ld: '/Users/bianxiang/Desktop/个人项目/WatchFeast更新了/WatchFeast/ShareSDK/Connection/QZoneConnection.framework/QZ
2015-12-25 17:02:46
2455
原创 flutter开发在androidstudio下ios目录执行pod install报错未安装pod
【代码】flutter开发在androidstudio下ios目录执行pod install报错未安装pod。
2023-09-07 21:41:22
312
原创 Failed assertion: line 4349 pos 12: ‘!_dirty‘: is notflutter: true.
Failed assertion: line 4349 pos 12: '!_dirty': is notflutter: true.
2022-12-01 20:23:56
714
原创 “Navicat Premium”已损坏,无法打开, 您应该将它移到废纸篓的解决办法
“Navicat Premium”已损坏,无法打开, 您应该将它移到废纸篓的解决办法
2022-11-22 17:16:47
2583
4
原创 AndroidStudio报错:Failed to resolve: com.github.CymChad:BaseRecyclerViewAdapterHelper:
AndroidStudio报错:Failed to resolve: com.github.CymChad:BaseRecyclerViewAdapterHelper:
2022-08-06 11:02:50
6194
4
原创 Need assistance with accessing your developer account
注册苹果开发者,登入后只会看到一个网页,显示下面的内容:Need assistance with accessing your developer account?If you’re having issues accessing your developer account, complete the formbelow to contact Apple Developer Program Support. If you need assistance withrecovering you..
2021-07-12 14:32:41
3028
原创 iOS和Android新政订阅链接
ios:https://developer.apple.com/news/https://developer.apple.com/news/android:
2021-06-02 10:35:45
742
原创 linux清除垃圾文件
文件夹查看和操作系列ls -l -R /home # 列出/home文件夹下的所有文件和目录的详细资料 ls -l t* #列出当前目录中所有以“t”开头的目录的详细内容 ls -F /home |grep /$ #只列出目录里面的文件夹 rm -rf /var/log/httpd/access #删除目录 pwd #查看当前文件夹完整路径 cp a /home/username/b #复制文件夹 cp -rf test2 jiewitOfficialWeb #递归复制 mv A B #将A文件夹重命名
2020-08-20 14:45:00
632
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人