美文网首页react native 专栏
react-native其他速记

react-native其他速记

作者: JTR354 | 来源:发表于2018-06-17 09:44 被阅读0次
  • grep node 查看node进程
  • pkil -9 node 杀掉node进程
  • homebrew
  • watchman/flow/gcc/pkg-config/cario/libpng/jpeg/gitlab/mongodb/git
  • nvm
  • xcode-select --install
  • on my zsh

Android记录

打包

1.打包android目录下:
先./gradlew clean,
后:./gradlew assembleRelease

2.报错:
error: 
uncompiled PNG file passed as argument. Must be compiled first into .flat file
解:
加入android.enableAapt2=false
到 gradle.properties. 

gif动图引入

implementation 'com.facebook.fresco:fresco:1.5.0'
// 如果你需要支持GIF动图
implementation 'com.facebook.fresco:animated-gif:1.5.0'

xlint检查

 gradle.projectsEvaluated {
        tasks.withType(JavaCompile) {
            options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
        }
    }

mac中批量修改文件夹读写权限,可用命令sudo chmod -R 755 xxx(文件夹)。

参考:

相关文章

网友评论

    本文标题:react-native其他速记

    本文链接:https://www.haomeiwen.com/subject/baoieftx.html