Skip to content

Commit

Permalink
Merge pull request #9 from rootstrap/feature/rename-app
Browse files Browse the repository at this point in the history
Feature(rename): Replace Obytes with our generic name
  • Loading branch information
juanchoperezj authored Jul 25, 2024
2 parents 8f607db + 024d339 commit 2d5464a
Show file tree
Hide file tree
Showing 30 changed files with 551 additions and 471 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,16 @@ npm-debug.*
web-build/
yarn-error.log
/coverage

.env.**


# macOS
.DS_Store


# @generated expo-cli sync-2b81b286409207a5da26e14c78851eb30d8ccbdb
# The following patterns were generated by expo-cli

expo-env.d.ts
# @end expo-cli
# @end expo-cli
4 changes: 2 additions & 2 deletions android/app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<resources>
<string name="app_name">ObytesApp</string>
<string name="app_name">ReactNativeTemplate</string>
<string name="expo_splash_screen_resize_mode" translatable="false">cover</string>
<string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string>
<string name="expo_system_ui_user_interface_style" translatable="false">automatic</string>
</resources>
</resources>
2 changes: 1 addition & 1 deletion android/settings.gradle
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
rootProject.name = 'ObytesApp'
rootProject.name = 'ReactNativeTemplate'

dependencyResolutionManagement {
versionCatalogs {
Expand Down
10 changes: 5 additions & 5 deletions env.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ require('dotenv').config({

// TODO: Replace these values with your own

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

/**
* We declare a function withEnvSuffix that will add a suffix to the variable name based on the APP_ENV
Expand Down
2 changes: 1 addition & 1 deletion ios/ObytesApp.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ install! 'cocoapods',

prepare_react_native_project!

target 'ObytesApp' do
target 'ReactNativeTemplate' do
use_expo_modules!
config = use_native_modules!

Expand Down
Loading

0 comments on commit 2d5464a

Please sign in to comment.