我是靠谱客的博主 敏感糖豆,最近开发中收集的这篇文章主要介绍react-native 打包apkreact-native 打包APK,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

react-native 打包APK


参考文档 Tags: https://reactnative.cn/docs/0.51/signed-apk-android.html#content

注意:

  • 文档中生成签名秘钥的步骤可以通过Android Studio生成
  • 文档中gradle变量可以不设,则在android/app/build.gradle中需要明文配置签名(有安全隐患)

可能遇到的问题:

issue 1

Could not find com.android.tools.lint:lint-gradle:26.1.1.

fixed

android/build.gradle文件中进行如下修改

allprojects {
    repositories {
        mavenLocal()
        jcenter()
        google() //添加这一行
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}

issue 2

Could not list contents of ‘xxxxx/node-pre-gyp/node_modules/.bin/detect-libc’. Couldn't follow symbolic link

fixed

重新安装根目录下的node_modules

rimraf node_modules && npm install

issue 3

Failed to process resources, see aapt output above for details.
打包包含有本地图片资源时报的错误

fixed

android/gradle.properties文件添加这一句

android.enableAapt2=false

最后

以上就是敏感糖豆为你收集整理的react-native 打包apkreact-native 打包APK的全部内容,希望文章能够帮你解决react-native 打包apkreact-native 打包APK所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(69)

评论列表共有 0 条评论

立即
投稿
返回
顶部