如何在google play控制台删除已上传的aab文件

https://stackoverflow.com/questions/45822460/remove-apk-from-library-in-google-play-developer-console 转载

Just go to App bundle explorer and remove the needed abb. You can do it with these steps:

  1. Open Google Play Console
  2. Go to your project
  3. Go to the “Release” section of the side-bar
  4. Go to the “App bundle explorer”
  5. Find the APK/Bundle and click “Delete APK/Bundle”.

Keep in mind that you need to detach the specific APK/Bundle from any draft releases and save it. Otherwise, the delete option will not be available.

git 拉取子模块出错can not find github.com port 9418

git submodule update –init –recursive

出错信息:

can not find github.com port 9418

fatal: unable to connect to github.com:

github.com[0: 20.205.243.166]: errno=Connection timed out

fatal: clone of ‘git://github.com/mapsme/Alohalytics.git’ into submodule path ‘/root/omim/3party/Alohalytics’ failed

解决方法如下:

git config –global url.”https://github.com/”.insteadOf git://github.com/

 

清除MacOS上的缓存

最近MacOS上的磁盘空间只有不到十G左右,查看一下各个目录占有的空间,发现有个用户缓存空间占用了十几G的空间。

du -sh ~/Library/Caches/

排序一下:

du -sh ~/Library/Caches/* | sort -h

把排名前几个的文件删除即可

苹果自带中文输入法在LibreOffice Text Document上不显示中文选项

环境:  MacOS,  LibreOffice

方法一: 在Activity Monitor右上角输入「中文」两个文字,找到「简体中文输入方式」进程,然后强制关闭。或者输入「chinese」,找到「Simplified Chinese Input Method」进程,然后强制关闭。

方法二:在Activity Monitor右上角输入「LibreOffice」,找到相应进程强制关闭。

android studio手工下载gradle

环境: MacOS,  Android Studio 4.1.2

由于国内墙的原因无法自动在Android Studio上下载gradle包。因而专向手工下载。在目录文件<android project>/gradle/wrapper/gradle-wrapper.properties找到distributionUrl,通过这个地址下载gradle-7.3.3-bin.zip并解压。

android studio -> Preferences ->  Build, Execution,Deployment -> Gradle,设置Gradle user home路径/Users/xxx/.gradle/wrapper/dists/gradle-7.3.3-bin,把刚才解压的gradle-7.3.3-bin目录下文件拷贝到此,最后点击Apply按钮。

自此,项目的gradle脚本会跳过下载环节从而自动执行其他的任务。

IDEA设置java版本

环境:macos, idea

由于java是通过sdkman安装的,而默认就是隐藏文件,路径为/Users/xxx/.sdkman/candidates/java,在使用IDEA项目的Project Structure -> Platform Settings -> SDKs设置java版本时无法找到。因此在add new sdk出现对话窗口时需要按一下Cmd+Shift+Period组合键,这时在对话窗出现隐藏文件,选择即可。

Rails 内存占满

最近搭建一个rss feed管理的rails应用,在使用一段时间后内存差不多就占满,就是pumasidekiq这两个进程占用。一种比较灵活的方式,使用像puma_worker_killer这样的监控程序,监控rails进程达到一定内存占用后将其重启,但这样使用体验不好。

由于ruby使用glibcmalloc进行内存分配,这是一个比较老旧的内存分配器,性能比较低分配时会产生大量碎片,所以切换jemalloc做为Ruby应用的内存分配器

# ruby -v

ruby 2.6.3p62 (2019-04-16 revision 67580) [x86_64-linux]

#apt-get install libjemalloc-dev

#apt-get install libcurl4 libcurl4-openssl-dev

# rvm reinstall 2.6.3 -C –with-jemalloc