Tutorial Reskin Application Android All In One Videos
Tutorial Reskin Application Android All In One Videos
Which Android Studio version is needed?
Latest Android Studio version is recommended, which can be downloaded from here:
http://developer.android.com/intl/es/sdk/index.html
How to open the project in Android Studio?
- Open Android Studio > Open an Existing Android Studio Project > Select Your Project build.gradle file > ok
- Select Project
How to change the package name?
You can change it easily from Android Studio. Here are the steps: You can change it easily from Android Studio. Here are the steps:- In the Project pane, click on the little gear icon.Uncheck/Deselect the Compact Empty Middle Packages option.
- Your package directory will now be broken up in individual directories.
- Individually select each directory you want to rename, and: Right-click itSelect RefactorClick on RenameIn the Pop-up dialog.
- Click on Rename Package instead of Rename Directory Enter the new name and hit RefactorAllow a minute to let Android Studio update all changes.
- 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.
Note: When renaming com in Android Studio, it might give a warning. In such case, selectRename All.
How to change app name?
- Open Android Studio >All In One Videos> res > values > strings.xml
- Enter your app name inside "app_name" string tag:
<string name="app_name">All In One Videos</string>
How to generate Google Analytic Id?
To access the Google Analytic Service we need to create id.https://analytics.google.com/analytics/web/#home/
Replace the your key in analytics.xml file
Where to put Server Url in Application?
- Select Project > go to com.example.util package > Constant.java Class
- Open Constant.java
- now if your Sever is http://abc.com so your service url like that
http://abc.com/api.php
How to add Category and its items into webservice?
open your admin panel
- Add all details here
How to change AdMob id?
- Open Android Studio > All In One Videos > res > values > strings.xml
- Enter your AdMob Banner id inside "admob_bannner_id" string tag:
<string name="admob_bannner_id">Your AdMob Bannner ID Here</string>
- Enter your AdMob intertestial id inside "admob_intertestial_id" string tag:
<string name="admob_intertestial_id">Your AdMob Intertestial ID Here</string>
How to change About
open your admin panel
- Open Settings
- Select App Settings
- Fill the required fields
- Click Save
How to change 'Splash Screen, Application Icon,Interstitial Ads Click & RTL Support?
How To Change Application Icon- Open Android Studio > app > res > drawable > app_icon.png
- Rename your icon with app_icon.png and paste in drawable folder
How To Change Splash Screen
- Open Android Studio > app > res > drawable > splash_screen.png
- Rename your splash screen image with splash_screen.png and paste in drawable folder
- Open Android Studio > app > src > main > java > com.example.util >Open Constant.java file
- Open Android Studio > app > src > main > java > res > values > Open string.xml file
How to Change One Signal Notification App Id in Application?
Get your Google Server API key and project number.https://documentation.onesignal.com/docs/generate-a-google-server-api-key
How to Change One Signal App Id And Sender Id
- Open Android Studio > App > build.gradle(Module:app)
- Enter your Onesignal App id inside"onesignal_app_id"
onesignal_app_id ="Your onesignal_app_id"
Post a Comment for "Tutorial Reskin Application Android All In One Videos"