Speech to text app documentation for codecanyon
Which Android Studio version is needed?
Recommended Android Studio Dolphin | 2021.3.1 (Sep 2022), you can download the archive from here:
https://developer.android.com/studio/archive
The Latest Android Studio version can be downloaded from here:
https://developer.android.com/studio
Android Project Setup:
- Where is the project?
After you download it from Codecanyon, there is the project source code at "Digital Speech to text". - How to Open Project
Open Android Studio > Open an Existing Android Studio Project > Select Your Project build.gradle file > ok - Select Project
Change the Package Name:
You can change it easily from Android Studio. Here are the steps:
1. In the Project pane, click on the little gear icon. Uncheck/Deselect the Compact Empty Middle Packages option.
2. Your package directory will now be broken up into individual directories.
3. Individually select each directory you want to rename, and: Right-click it Selects RefactorClick on Rename in the Pop-up dialog.
4. Click on Rename Package instead of Rename Directory
5. Enter the new name, select both check boxes and select "All Places" in scope then hit Refactor, and allow a minute to let Android Studio update all changes.
After Click on Do Refactor
6. Now open your build.gradle (Usually 'app' or 'mobile'). Update the applicationId to your Package Name and Sync Gradle, if it hasn't already been updated automatically.
7. Also Change In AndroidManifest.xml
For Confirmation If any error in the Package changing check in the below files, and change the type with your package name, you can see the below screen.
- AndroidManifest.xml (app->manifest)
- activity_main.xml (res->layout)
- fragment_home.xml (res->layout)
- fragment_speech_to_text.xml (res->layout)
- fragment_text_to_speech.xml (res->layout)
Change App Name
- Open Android Studio > BrandPeack> res > values > strings.xml
- Enter your app name inside "app_name" string tag:
<string name="app_name">Speech to Text</string>
Change developer details:
- Open Android Studio > BrandPeack> res > values > strings.xml
- Enter your developer or company name inside "developer" string tag:
<string name="developer">CodeGlow</string> - Enter your developer or company mail inside "developer_mail" string tag:
<string name="developer_mail">ahmedsakil.pc@gmail.com</string>
Change App Colors:-
- Go to Project
- Open res-> value ->colors
If you want to change color in Day Mod change in color.xml and for the night made color.xml(night)
Setup Admob Ads:-
- Open Android Studio > app > res > values > strings.xml
- Enter your AdMob App id inside "admob_app_id" string tag:
<string name="admob_id">Your Admob App Id</string>
- Enter your AdMob App id inside "banner_ad_id" string tag:
<string name="interstitial">Your Admob App Id</string>
- Enter your AdMob App id inside "interstitial_ad_id" string tag:
<string name="banner">Your Admob App Id</string>
Generate Signed Bundle:-
Click Build > Generate Signed Bundle / APK
Select Android App Bundle and click Next
Click On Create New or if you are updating the app click choose existing
- Select Keystore Path
- Enter the Keystore password and confirm the password
- Enter any name for the alias
- Enter the key password and confirm the password
- Choose Validity Years
- Fill rest of the details and click OK
- Enter Keystore password, alias name, and key password
- Select Export encrypted key
- Choose the path and Click on Next
- Choose the signed Bundle destination
- Select Build Variants (release)
- Click Finish
Comments
Post a Comment