App Name

Video Tutorial


Instructions

Update the app name in strings.js and app.json file

  • app.json
    • strings.js
  • Code

    app.json
    {
      "expo": {
        "name": "Reward Studio", // udpate app name
        "slug": "reward-studio", // add your app slug here
        "version": "3.2.0",
        "orientation": "portrait",
        "icon": "./assets/icon.png",
        "userInterfaceStyle": "automatic",
        "splash": {
          "image": "./assets/splash.png",
          "resizeMode": "contain",
          "backgroundColor": "#222B45"
        },
        "updates": {
          "fallbackToCacheTimeout": 0
        },
        ...
    }
    values/strings.js
    export const strings = {
        // App
        appTitle: 'Reward Studio',
        packageName: 'com.jazbastudio.rewardstudio',
     
        // Auth Login
        accountNotVerified: 'Account not verified, Please verify your account by clicking the link in email sent to your email address.',
        userNotFound: 'User not found, Please signup to create an account',
        wrongPassword: 'Wrong password, Please try again',
        accountDisabled: 'Your account is disabled, Please contact support.',
        tooManyRequests: 'Too many attempts, Please try again later',
        
        // Auth Signup
        verificationEmailSent: 'Verification Email sent. Please check your email and verify your account by clicking the link in email.',
        emailAlreadyInUse: 'Account already exists with this email, Please login to continue',
        operationNotAllowed: 'Cannot signup right now, Please try again',
        weakPassword: 'Password is not strong enough. Add additional characters including special characters and numbers.',
     
        // Reset Password
        resetPasswordEmailSent: 'Reset password email sent. Please check your email and reset your password by clicking the link in email.',
        
        // Auth Common
        invalidEmail: 'Invalid email, Please try again',
     
        // Errors
        somethingWentWrong: 'Something went wrong, please try again',
     
        // Share
        shareTitle: 'Reward Studio',
        shareMessage: 'Hey, I am using Reward Studio app to earn money by playing games. Download the app from the link below and use my referral code "{code}" to get {coins} bonus coins.',
     
        // URLs
        termsOfServiceUrl: "https://reward-studio.jazbastudio.com/terms-of-service",
        privacyPolicyUrl: "https://reward-studio.jazbastudio.com/privacy-policy",
     
     
        // Contact Message
        supportEmail: "support@reward-studio.com",
        contactMessage: "Hello,\n I am {name}, I need help with Reward Studio app. Here is the detail of my problem:\n\n",
        
        //////////////////////////
        /////// AppLovin /////////
        //////////////////////////
     
        applovinSdkKey: "your-applovin-sdk-key",
    }