react-native中配置应用基本信息和优化打包速度

应用基本信息

  • 名称

android/app/src/main/res/values/string.xml 文件中修改

<resources>
    <string name="app_name">应用名</string>
</resources>

  • 图标

图标可以使用图标工厂生成移动端各个平台所需尺寸的应用图标。
image-20231018101620836
这样生成以后的图标文件就和项目中的差不多,只需要替换掉原来的就行。
image-20231018101751109
圆角也是同理

开发配置

修改 package.json 添加额外的命令

  "scripts": {
        // 清除缓存
        "clean": "cd android && ./gradlew clean && cd ../",
        // 安卓打包
        "build:android": "cd android && gradlew assembleRelease",
  },

打包后的 apk 将会在 android/app/build/outputs/apk 目录下

‘React’ must be in scope when using JSX

这个错误是因为文件中没有导入 react 导致的,只需要文件中导入 react 就可以了

import React from 'react'

优化打包速度

在 react-native 项目打包时总会出现打包缓慢或者打包失败等一系列问题,这是因为 react-native 需要访问国外服务器下载东西,所以我们就使用国内的一些镜像就好了。在 android/build.gradle 文件中引入国内镜像地址:

buildscript {
    ...
    repositories {
        google()
        mavenCentral()
        maven { 
            allowInsecureProtocol = true
            url 'https://maven.aliyun.com/repository/google' 
            }
        maven { 
            allowInsecureProtocol = true
            url 'https://maven.aliyun.com/repository/jcenter' 
            }
        maven { 
            allowInsecureProtocol = true
            url 'http://maven.aliyun.com/nexus/content/groups/public' 
            }
    }
    ...
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

画一个圆_

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值