Tutorial Reskin All In One News App
All In One News App
Table of Contents
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 News App> res > values > strings.xml
- Enter your app name inside "app_name" string tag:
<string name="app_name">HDVideo</string>
How to Configure Webservice In Your Server?
- First of all find the all_in_one_news folder from the downloaded package.
- Copy these folder and paste it in the htdocs folder(if you have Wampp installed then put it into www) or on your live server
- Then create a database and import the database from the db folder.
- 4.Aftre creating database configure the db_connection.php file,which is in the includes folder of your package.
DEFINE ('DB_USER', 'username');
DEFINE ('DB_PASSWORD', 'password');
DEFINE ('DB_HOST', 'hostname'); //host name depends on server
DEFINE ('DB_NAME', 'dbname');
That’s all,now run the webservice local: http://localhost/all_in_one_news/index.php or Live:http://example.com/all_in_one_news/index.php
Login Details
Username: admin Password: admin
Where to put Server Url in Application?
- Select Project > go to com.app.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 and image path http://abc.com/images
How to change AdMob publisher id?
- Open Android Studio > All In One News App > res > values > strings.xml
- Enter your AdMob publisher id inside "admob_publisher_id" string tag:
<string name="admob_publisher_id">Your AdMob ID Here</string>
How to add About Section into webservice?
open your admin panel
- Go to About section
- Press save button.
How to change Google Analytic Id?
- Open Android Studio > All In One News App > res > xml > app_tracker.xml
- Select 'app_tracker.xml' tab next to 'Resources' tab
- Enter your google analytic id inside "ga_trackingId" string tag:
<string name="ga_trackingId">Your google analytic ID</string>
How to change generate FCM google json lib and and Api key in App?
- First Login https://console.firebase.google.com/
- Now Create Project
- Add app name and country
- Select Android Firebase
- Now generate SHA-1 key
- Copy generate key
- Add package name and SHA-1 key
- Now go to manage
- Now copy webapi key
- Add web api key in admin panel
- Now downloaded google-service.json file copy here
How to change 'Splash Screen and Application Icon ?
How To Change Application Icon
- Open Android Studio > All In One News App > res > drawable-mdpi > app_icon.png
- Rename your icon with app_icon.png and paste in drawable-mdpi folder
- Open Android Studio > All In One News App > res > drawable > splash_screen.png
- Rename your splash_screen image with splash.png and paste in drawable folder
Change App all graphics
You will find all image into /res/drawable-mdpi/,/res/drawable-hdpi/,/res/drawable-xhdpi/ folder. Just create your own graphics and replace those files. Create seperate graphics of different device screen sizes & place them into other drawble folders (drawable-hdpi & drawable-xhdpi) with same file name found at drawable-mdpi folder. Check here for more information: Devices and Displays & Supporting Multiple Screens.
Application Showcase in PlayStore
Once you will publish your app to Google Play or any other Android store, send us your app link. We will happy to showcase your app into our website & CodeCanyon page.
Rating
If you like our app, we will highly appreciate if you can provide us a rating of 5. You can rate us from your CodeCanyon Menu > Download page.
Post a Comment for "Tutorial Reskin All In One News App"