Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature(rename): Replace Obytes with our generic name #9

Merged
merged 8 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 = 'rs-dev'; // expo account owner
juanchoperezj marked this conversation as resolved.
Show resolved Hide resolved
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
Loading