刚开始开发项目的时候,更没有想好一个项目名称,如何才能更名一个RN APP名称呢,可按照如下方式操作即可。
更改package.json
{
"name": "dounineApp",
...
}
更改android/settings.gradle
rootProject.name = 'dounineApp'
...
更改android/app/src/main/res/values/strings.xml
<resources>
<string name="app_name">dounineApp</string>
</resources>
更改android/app/src/main/java/com/xxxx/MainActivity.java
请自行替换原xxxx
项目名
public class MainActivity extends ReactActivity {
/**
* Returns the name of the main component registered from JavaScript.
* This is used to schedule rendering of the component.
*/
@Override
protected String getMainComponentName() {
return "dounineApp";
}
}
更改Info.plist
文件
更改AppDelegate.m
文件
手机扫一扫
移动阅读更方便
你可能感兴趣的文章