Tutorial Reskin Application Android News App v1.5 – Material Design
Tutorial Reskin Application Android News App v1.5 – Material Design
Which Android Studio version is needed?
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
Video Tutorial
How to change app name?
- Open Android Studio >News > res > values > strings.xml
- Enter your app name inside "app_name" string tag:
How to enter my infos into the application ?
-
Enter your web site link (ill be added to your contact About us page) inside "url_web_site" string tag:
<string name="url_web_site">http://www.exemple.com</string>
-
Enter your application google play link (will be used in share function) inside "url_app_google_play" string tag:
<string name="url_app_google_play">https://play.google.com/store/apps/details?id=com.wire</string>
-
Enter your E-mail (will be added to your contact About us page) inside "app_email" string tag:
<string name="app_email">xxxxxx@exemple.com</string>
-
Enter your facebook account/page link (will be added to your contact About us page) inside "app_facebook" string tag:
<string name="app_facebook">https://www.facebook.com/xxxxxxxxx</string>
-
Enter your twitter account link (will be added to your contact About us page) inside "app_twitter" string tag:
<string name="app_twitter">https://twitter.com/xxxxxxx</string>
-
Enter your instagram account link (will be added to your contact About us page) inside "app_instagram" string tag:
<string name="app_instagram">https://instagram.com/xxxxxxx</string>
-
Enter your policy privacy contnet inside "policy_privacy_contnet" string tag:
<string name="policy_privacy_contnet">Policy privacy contnet</string>
How to Enable/Disbale and change AdMob publisher id?
- Open Android Studio >News > res > values > strings.xml
- to add interstitial publisher id : Enter your AdMob interstitial publisher id inside "interstitial_full_screen" string tag:
<string name="interstitial_full_screen">ca-app-pub-3447169368463700/8764576075</string>
- to add banner publisher id : Enter your AdMob banner publisher id inside "ad_uni_tid_banner" string tag:
<string name="ad_uni_tid_banner">ca-app-pub-3447169368463700/8764576075</string>
- to add native publisher id : Enter your AdMob banner publisher id inside "ad_uni_tid_native" string tag:
<string name="ad_uni_tid_native">ca-app-pub-3447169368463700/8764576078</string>
- To Enabled or Disbale AdMob Banner in your Application you can go Android Studio > News > res > values > strings.xml
- Chnage the value of the variabe AD_MOB_ENABLED_BANNER to true to enable the admobe
<string name="AD_MOB_ENABLED_BANNER">true</string>
- Chnage the value of the variabe AD_MOB_ENABLED_BANNER to false to diable the admobe
<string name="AD_MOB_ENABLED_BANNER">false</string>
- To Enabled or Disbale AdMob interstitial in your Application you can go Android Studio > News > res > values > strings.xml
- Chnage the value of the variabe AD_MOB_ENABLED_FULL_SCREEN to true to enable the admobe
<string name="AD_MOB_ENABLED_FULL_SCREEN">true</string>
- Chnage the value of the variabe AD_MOB_ENABLED_FULL_SCREEN to false to diable the admobe
<string name="AD_MOB_ENABLED_FULL_SCREEN">false</string>
- To set duration to show interstitial admob
- Enter your Time by second in "AD_MOB_TIME_FULL_AUTO" string tag:
<string name="AD_MOB_TIME_FULL_AUTO">60</string>
How can you translate your App
and change the value of each key to your new language :
like :
English :
<string name="action_settings">Settings</string>French :
<string name="action_settings">Paramètres</string>
How can you change your App icon
And past you icon on the folders with name and size
- past and replace the ic_launcher.png image by your icon to drawable folder with name logo.png and size 512px x 512 px
- past and replace the ic_launcher.png image by your icon to mipmap-mdpi folder with name ic_launcher.png and size 48px x 48 px
- past and replace the ic_launcher.png image by your icon to mipmap-hdpi folder with name ic_launcher.png and size 72px x 72 px
- past and replace the ic_launcher.png image by your icon to mipmap-xhdpi folder with name ic_launcher.png and size 96px x 96 px
- past and replace the ic_launcher.png image by your icon to mipmap-xxhdpi folder with name ic_launcher.png and size 144px x 144 px
- past and replace the ic_launcher.png image by your icon to mipmap-xxxhdpi folder with name ic_launcher.png and size 192px x 192 px
Once again, thank you so much for purchasing this app. As I
said at the beginning, I'd be glad to help you if you have any questions
relating to this app. No guarantees, but I'll do my best to assist. If
you have a more general question relating to the apps on CodeCanyon, you
might consider visiting the "FAQ / Support" section and asking your
question in the "Comments" section at CodeCanyon app detail page.
Post a Comment for "Tutorial Reskin Application Android News App v1.5 – Material Design"