Skip to content

Commit 2d5464a

Browse files
Merge pull request #9 from rootstrap/feature/rename-app
Feature(rename): Replace Obytes with our generic name
2 parents 8f607db + 024d339 commit 2d5464a

File tree

30 files changed

+551
-471
lines changed

30 files changed

+551
-471
lines changed

.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,16 @@ npm-debug.*
1111
web-build/
1212
yarn-error.log
1313
/coverage
14+
15+
.env.**
16+
17+
1418
# macOS
1519
.DS_Store
1620

21+
1722
# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
1823
# The following patterns were generated by expo-cli
1924

2025
expo-env.d.ts
21-
# @end expo-cli
26+
# @end expo-cli
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<resources>
2-
<string name="app_name">ObytesApp</string>
2+
<string name="app_name">ReactNativeTemplate</string>
33
<string name="expo_splash_screen_resize_mode" translatable="false">cover</string>
44
<string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string>
55
<string name="expo_system_ui_user_interface_style" translatable="false">automatic</string>
6-
</resources>
6+
</resources>

android/settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
rootProject.name = 'ObytesApp'
1+
rootProject.name = 'ReactNativeTemplate'
22

33
dependencyResolutionManagement {
44
versionCatalogs {

env.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,12 @@ require('dotenv').config({
3333

3434
// TODO: Replace these values with your own
3535

36-
const BUNDLE_ID = 'com.obytes'; // ios bundle id
37-
const PACKAGE = 'com.obytes'; // android package name
38-
const NAME = 'ObytesApp'; // app name
39-
const EXPO_ACCOUNT_OWNER = 'obytes'; // expo account owner
36+
const BUNDLE_ID = 'com.rs.mobile'; // ios bundle id
37+
const PACKAGE = 'com.rs.mobile'; // android package name
38+
const NAME = 'react-native-template'; // app name
39+
const EXPO_ACCOUNT_OWNER = 'rsdevs'; // expo account owner
4040
const EAS_PROJECT_ID = 'c3e1075b-6fe7-4686-aa49-35b46a229044'; // eas project id
41-
const SCHEME = 'obytesApp'; // app scheme
41+
const SCHEME = 'react-native-template'; // app scheme
4242

4343
/**
4444
* We declare a function withEnvSuffix that will add a suffix to the variable name based on the APP_ENV

ios/ObytesApp.xcworkspace/contents.xcworkspacedata

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ios/Podfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ install! 'cocoapods',
1313

1414
prepare_react_native_project!
1515

16-
target 'ObytesApp' do
16+
target 'ReactNativeTemplate' do
1717
use_expo_modules!
1818
config = use_native_modules!
1919

0 commit comments

Comments
 (0)