SlideShare a Scribd company logo
Vmoksha Technologies
Commit-Deliver-Excel
MATERIAL DESIGN FOR ANDROID
CONTENTS
Introduction
Goals for Material Design
Principles of Material Design
Themes
Cards and Lists
Floating Action Button
Collapsing Toolbar layout
Conclusions
Introduction
In 2014, Google developed a new visual design language called Material Design for Android Lollipop and higher
versions. The visual specifics in material design are amusing, and the material objects have x, y and z dimensions,
which allows you to create an incredible 3D world. Material design is not about how to use dazzling colors, best
images, and the elevation of the object; it is about how we create the amazing experience to users with the
positive brand reality.
Google has proposed some rules and regulations while adding the material design to application to improvise its
standards. Instead of using a palette selection tool that pulls colors to the content of an app, using of material
design makes the Android application’s graphic layout more simplified and standard format.
To be noted, the material design is not only being used for rectangular or tablet screen; it should also be used for
circular watch screen, etc. So if we create a grid, then it precepts all the spacing and should match to all the types
of screens, which is a must for apps that are identified everywhere.
Overall to say, material design is straightforward, clear and brilliant. Because of these dazzling features, it has
become an imperative for a broad number of gadgets than any other UI in history.
Goals of Material Design
•To design the application UI like a magical paper. Let’s say, something that appears like real, appreciable
objects.
•Animations have been pulled to make the experience more lively by safeguarding the maximum amount of
content is always visible.
•With Material Design, Google also determined to robotize the experience for users.
•Mobile rules are fundamental but touch, voice, mouse, and keyboard are all excellent input methods.
The materials take energy from the users, from their fingers, from their mouse click, their touch and use it to
transform and animate.
In material design, software elements are treated as real things.
For example, take paper and ink. Every pixel drawn in an application is similar to a dot of ink on a piece of paper.
Assume that paper is plain and doesn’t have any color whereas the ink can be of any color. So the content color
of a paper depends on the color of the ink. Likewise in Android application, it can be a
 Menu,
 Button or
 Image.
And also the paper can be of any size. It might fill the whole screen, or it might even shrink to small square or
round shape.
So the ink will not have any restrictions. It will be throughout the paper. It just has to fit inside the paper to be
visible. The papers can change its shape, split, move, join and re-size.
Likewise, every application made in material design will have all these characteristics.
Principles of Material Design
1. Material is a metaphor
A material metaphor is a bring together theory of a rationalized space and a system of motion. A metaphor
is a figure of speech that specifies flashy effect to one thing by observing another thing. It is open to
imagination and magic.
2. Surfaces are spontaneous and natural
Surfaces and edges provide visual hints that are familiarized in our knowledge of reality. The use of ordinary
material attributes conveys to a primal part of our brain and advice us to quickly understand its need.
3. Dimensionality supports interaction
The basics of light, surface, and movement are keys to
transfer how objects cooperate.
Sensible lighting shows bond, divides space,
and demonstrate moving parts.
4. One flexible design
A single underlying design system establishes interactions and space. Each device follows a different view of the
same fundamental system. Each view is made custom-fit to the size and interaction appropriate for that device.
Colors, iconography, hierarchy, and spatial relationships stand constantly.
5. Content is bold, graphic, and wilful
Bold content provides grouping, meaning, and focus. Cautious color choices, edge-to-edge imagery, and
intentional white space create captivation and clarity.
6. Color, surface, and iconography highlights actions
User action is all about the significance of experience design. Color in material design is inspired by bold
complexion, deep shadows, and brilliant highlights. The whole design is reconstructed by the change of points in
the immediate actions.
7. Users introduce alteration/change
Alterations in the UI extract their energy from user actions. Motion that forces from touch respects and
emphasizes the user as the best mover. It means that the widgets or material takes the energy from users’ fingers
during the mouse click or on touch and that energy is used to animate to show it as reality.
8. Animation is choreographed on a common step
All action takes place in one surrounding. When objects are
restructured and transformed, the user will be given with
the experience without collapsing the continuity of it.
9. Motion provides meaning
Motion is meaningful and convenient. It helps to focus attention
and preserves continuity. The following elements assists in
material design for apps of Android version 5.0 (Lollipop) or higher.
Themes
The material theme is defined as,
@android:style/Theme.Material (dark version)
@android:style/Theme.Material.Light (light version)
@android:style/Theme.Material.Light.DarkActionBar
To use the material theme in your apps, customize the color palette as shown below,
<resources>
<!-- inherit from the material theme -->
<style name="AppTheme" parent="android:Theme.Material">
<!-- Main theme colors -->
<!-- your app branding color for the app bar -->
<item name="android:colorPrimary">@color/primary</item>
<!-- darker variant for the status bar and contextual app bars -->
<item name="android:colorPrimaryDark">@color/primary_dark</item>
<!-- theme UI controls like checkboxes and text fields -->
<item name="android:colorAccent">@color/accent</item>
</style>
</resources>
The following example describes how to add material design to a button
styles.xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme.PopupOverlay"
parent="ThemeOverlay.AppCompat.Light" />
<!-- Customize your theme here. -->
<style name="MyButton" parent="Theme.AppCompat.Light">
<item name="colorControlHighlight">@color/calbutton_focus</item>
<item name="colorButtonNormal">@color/background_color</item>
</style>
</resources>
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height=" match_parent ">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:theme="@style/MyButton"
android:layout_gravity="center"
android:text="Click"
android:textAllCaps="true"
android:textColor="@color/white"/>
</LinearLayout>
Cards and Lists
Cards and Lists are the two new widgets in Android with material design styles and animation. To create cards
and Lists, RecyclerView can be used, which is introduced from Android version 5.0 (Lollipop). It is an adoption of
ListView, which supports various layout types and contributes performance improvements. Part of data can be
shown inside the card with a constant look over apps in CardView.
An example shown below demonstrates how to add a CardView in your layout.
build.gradle
dependencies {
// CardView
compile 'com.android.support:cardview-v7:23.3.+'
}
activity_card.xml
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_width="200dp"
android:layout_height="200dp"
card_view:cardCornerRadius="3dp">
...
</android.support.v7.widget.CardView>
To use RecyclerView widget in your layout, necessary attribute is shown below,
build.gradle
activity_main.xml
dependencies {
// RecyclerView
compile 'com.android.support:recyclerview-v7:23.1.1
}
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:scrollbars="vertical" />
Floating Action Button
Another interesting widget introduced in material design is floating action button. This button floats on UI in a
circular shape with an action attached to it. By default, its behavior is to animate on the screen as an expanding
piece of material.
We can also provide shadows and elevation to the buttons. The distance between surfaces and the depth of its
shadow signifies elevation. To set the elevation of a view, use the android:elevation attribute in your layouts. The
bounds of a view’s background drawable determine the default shape of its shadow.
In addition to the X and Y properties, views in Android material design now have a Z property. This new property
serves as the elevation of a view, which concludes the size of the shadow i.e., a view with greater Z values
launches bigger shadows.
< android.support.design.widget.FloatingActionButton
android:id=”@+id/my_floatbutton”
android:layout_width=”wrap_content”
android:layout_height=”wrap_content”
android: layout_gravity="top|end”
android: src="@android:drawable/ic_add”
android:background=”@color/white”
android:elevation="5dp" />
build.gradle
activity_main.xml
dependencies{
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android: layout_width="wrap_content"
android: layout_height="wrap_content"
android: layout_gravity="bottom|end" // position the floating button
android: layout_margin="@dimen/fab_margin"
android: src="@android:drawable/ic_dialog_email"/>
You can also define own background color for floating button using app:backgroundTint. The size of the button
can also be defined by using app:fabSize attribute.
CollapsingToolbarLayout
A new widget called CollapsingToolbarLayout was also introduced from Android version 5.0 (Lollipop). This comes
with an amazing animation; whenever a user scrolls up the control provides the fabulous animating effect.
According to the Android documentation, CollapsingToolbarLayout is a wrapper for Toolbar which implements a
collapsing app bar. It makes the header image collapse into the Toolbar, adjusting its title size and it is designed to
be used as a direct child of an AppBarLayout.
To add CollapsingToolbarLayout to your layout, see the following,
build.gradle
dependencies{
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
}
activity_main.xml
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:expandedTitleMarginEnd="64dp"
app:expandedTitleMarginStart="48dp"
app:layout_scrollFlags="scroll|exitUntilCollapsed">
.....
.....
</android.support.design.widget.CollapsingToolbarLayout>
Conclusion
Google developed material design to bring together the user experience from different Google platforms. Totally,
material design made the user interaction smooth, simpler and greater intuitive. When you think about material
design, it has so many technologies, which will only create the impression for users while using apps during
interactions. The physical world is the very big part of the material design. So all in all, what do you think of
Material Design in Android? Don’t you think it’s the best part to unite and enhance the user experience while
using the Android application?
C ONCLUSION
Thank You….
OurOfficialWebsite- www.vmokshagroup.com
FacebookPage- https://www.facebook.com/Vmokshagroup
Google+Page- https://plus.google.com/+VmokshaTechnologies
TwitterPage- https://twitter.com/InfoVmoksha
PinterestPage- https://in.pinterest.com/vmokshagroup/
LinkedInPage- https://www.linkedin.com/company/vmoksha-technologies
InstagramPage- https://www.instagram.com/vmoksha.technologies/
ContactUs -080 4137 6300
Address -2799 & 2800, Srinidhi, Sector-1, 27th Main, HSR Layout, Bengaluru, Karnataka 560102.
Vmoksha Technologies Pvt. Ltd.

More Related Content

ODP
Material Design in Android
PPTX
Material design in android lollipop
PDF
Android Lollipop and Material Design
PPTX
Material Design Android
PDF
Android Material Design APIs/Tips
PPTX
Material design in android L developer Preview
PDF
Material design basics
PDF
Session 13 - Working with navigation and tab bar
Material Design in Android
Material design in android lollipop
Android Lollipop and Material Design
Material Design Android
Android Material Design APIs/Tips
Material design in android L developer Preview
Material design basics
Session 13 - Working with navigation and tab bar

What's hot (7)

PPTX
Swift Animated tabBar
PDF
Plan601E Session 4 Demo
PPTX
Website image editing tutorial: WordPress, Paint.NET and PowerPoint(!)
PDF
09 material design
PPTX
Media techonologies
PDF
Session 14 - Working with table view and search bar
PPTX
Accessibility in android And Add accessibility hooks to a custom view
Swift Animated tabBar
Plan601E Session 4 Demo
Website image editing tutorial: WordPress, Paint.NET and PowerPoint(!)
09 material design
Media techonologies
Session 14 - Working with table view and search bar
Accessibility in android And Add accessibility hooks to a custom view
Ad

Viewers also liked (14)

ODS
Business cards database
PPTX
AWS SES
DOCX
saurabh_ios
PPTX
angular-formly presentation
PPTX
SDLC - Software Development Life Cycle
PPTX
Vmoksha Technologies competencies
PPTX
Material Design - Høgskolen Ringerike 2017
PPT
Research on social media platform for an organisation
PPTX
Presentation aiesec journee du volontariat
PPTX
Moving to the cloud edited
PDF
About vmoksha brief
PPT
SUGARCRM research by Vmoksha
PPTX
Mobility Services
PPTX
Digital Marketing Overview
Business cards database
AWS SES
saurabh_ios
angular-formly presentation
SDLC - Software Development Life Cycle
Vmoksha Technologies competencies
Material Design - Høgskolen Ringerike 2017
Research on social media platform for an organisation
Presentation aiesec journee du volontariat
Moving to the cloud edited
About vmoksha brief
SUGARCRM research by Vmoksha
Mobility Services
Digital Marketing Overview
Ad

Similar to Material design for android (20)

PPTX
TDC 2014 - Trilha Mobile - Material design
PPTX
Material design
PDF
Guide 101_ Material Design in Android App Development.pdf
PDF
Summary of Material Design Guidelines
PPTX
Material design full topics_animation
PDF
A developers view on Material Design
PPTX
Material design
PPTX
Google Material Design
PPTX
Tk2323 lecture 5 material design &amp; recycler view
PPTX
How material design is changing the world
PPTX
How material design is changing the world
PDF
Go Material
PPTX
Google Material Design
PPTX
Material design
PPTX
Material Design For Android
PPTX
Material design- sujeet kumar mehta
PDF
Material Design
PPTX
Short Introduction to Material Design - A template
PPTX
Definition of Material design
PPTX
Building Material Apps on Android
TDC 2014 - Trilha Mobile - Material design
Material design
Guide 101_ Material Design in Android App Development.pdf
Summary of Material Design Guidelines
Material design full topics_animation
A developers view on Material Design
Material design
Google Material Design
Tk2323 lecture 5 material design &amp; recycler view
How material design is changing the world
How material design is changing the world
Go Material
Google Material Design
Material design
Material Design For Android
Material design- sujeet kumar mehta
Material Design
Short Introduction to Material Design - A template
Definition of Material design
Building Material Apps on Android

More from Vmoksha Admin (7)

PPTX
Saa s edited
PPTX
Microsoft azure edited
PPTX
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
PPTX
Setting up an email engine using amazon ses (vmokhsa technologies pvt. ltd.)
PPTX
Virtual hosting using nginx
PPTX
Mobility
PPTX
Mobility
Saa s edited
Microsoft azure edited
6 mobile app trends that are expected to rule in 2016 (vmoksha technologies p...
Setting up an email engine using amazon ses (vmokhsa technologies pvt. ltd.)
Virtual hosting using nginx
Mobility
Mobility

Recently uploaded (10)

PDF
Lesson 13- HEREDITY _ pedSAWEREGFVCXZDSASEWFigree.pdf
PPTX
ASMS Telecommunication company Profile
PDF
Best 4 Sites for Buy Verified Cash App Accounts – BTC Only.pdf
PPTX
Social Media People PowerPoint Templates.pptx
PDF
Kids, Screens & Emotional Development by Meenakshi Khakat
DOC
NIU毕业证学历认证,阿比林基督大学毕业证留学生学历
PPTX
Introduction to Packet Tracer Course Overview - Aug 21 (1).pptx
DOC
SIUE毕业证学历认证,阿祖萨太平洋大学毕业证学位证书复制
PDF
Date Right Stuff - Invite only, conservative dating app
PDF
2025 Guide to Buy Verified Cash App Accounts You Can Trust.pdf
Lesson 13- HEREDITY _ pedSAWEREGFVCXZDSASEWFigree.pdf
ASMS Telecommunication company Profile
Best 4 Sites for Buy Verified Cash App Accounts – BTC Only.pdf
Social Media People PowerPoint Templates.pptx
Kids, Screens & Emotional Development by Meenakshi Khakat
NIU毕业证学历认证,阿比林基督大学毕业证留学生学历
Introduction to Packet Tracer Course Overview - Aug 21 (1).pptx
SIUE毕业证学历认证,阿祖萨太平洋大学毕业证学位证书复制
Date Right Stuff - Invite only, conservative dating app
2025 Guide to Buy Verified Cash App Accounts You Can Trust.pdf

Material design for android

  • 2. CONTENTS Introduction Goals for Material Design Principles of Material Design Themes Cards and Lists Floating Action Button Collapsing Toolbar layout Conclusions
  • 3. Introduction In 2014, Google developed a new visual design language called Material Design for Android Lollipop and higher versions. The visual specifics in material design are amusing, and the material objects have x, y and z dimensions, which allows you to create an incredible 3D world. Material design is not about how to use dazzling colors, best images, and the elevation of the object; it is about how we create the amazing experience to users with the positive brand reality. Google has proposed some rules and regulations while adding the material design to application to improvise its standards. Instead of using a palette selection tool that pulls colors to the content of an app, using of material design makes the Android application’s graphic layout more simplified and standard format. To be noted, the material design is not only being used for rectangular or tablet screen; it should also be used for circular watch screen, etc. So if we create a grid, then it precepts all the spacing and should match to all the types of screens, which is a must for apps that are identified everywhere.
  • 4. Overall to say, material design is straightforward, clear and brilliant. Because of these dazzling features, it has become an imperative for a broad number of gadgets than any other UI in history.
  • 5. Goals of Material Design •To design the application UI like a magical paper. Let’s say, something that appears like real, appreciable objects. •Animations have been pulled to make the experience more lively by safeguarding the maximum amount of content is always visible. •With Material Design, Google also determined to robotize the experience for users. •Mobile rules are fundamental but touch, voice, mouse, and keyboard are all excellent input methods. The materials take energy from the users, from their fingers, from their mouse click, their touch and use it to transform and animate.
  • 6. In material design, software elements are treated as real things. For example, take paper and ink. Every pixel drawn in an application is similar to a dot of ink on a piece of paper. Assume that paper is plain and doesn’t have any color whereas the ink can be of any color. So the content color of a paper depends on the color of the ink. Likewise in Android application, it can be a  Menu,  Button or  Image. And also the paper can be of any size. It might fill the whole screen, or it might even shrink to small square or round shape. So the ink will not have any restrictions. It will be throughout the paper. It just has to fit inside the paper to be visible. The papers can change its shape, split, move, join and re-size. Likewise, every application made in material design will have all these characteristics.
  • 7. Principles of Material Design 1. Material is a metaphor A material metaphor is a bring together theory of a rationalized space and a system of motion. A metaphor is a figure of speech that specifies flashy effect to one thing by observing another thing. It is open to imagination and magic.
  • 8. 2. Surfaces are spontaneous and natural Surfaces and edges provide visual hints that are familiarized in our knowledge of reality. The use of ordinary material attributes conveys to a primal part of our brain and advice us to quickly understand its need.
  • 9. 3. Dimensionality supports interaction The basics of light, surface, and movement are keys to transfer how objects cooperate. Sensible lighting shows bond, divides space, and demonstrate moving parts. 4. One flexible design A single underlying design system establishes interactions and space. Each device follows a different view of the same fundamental system. Each view is made custom-fit to the size and interaction appropriate for that device. Colors, iconography, hierarchy, and spatial relationships stand constantly.
  • 10. 5. Content is bold, graphic, and wilful Bold content provides grouping, meaning, and focus. Cautious color choices, edge-to-edge imagery, and intentional white space create captivation and clarity.
  • 11. 6. Color, surface, and iconography highlights actions User action is all about the significance of experience design. Color in material design is inspired by bold complexion, deep shadows, and brilliant highlights. The whole design is reconstructed by the change of points in the immediate actions. 7. Users introduce alteration/change Alterations in the UI extract their energy from user actions. Motion that forces from touch respects and emphasizes the user as the best mover. It means that the widgets or material takes the energy from users’ fingers during the mouse click or on touch and that energy is used to animate to show it as reality.
  • 12. 8. Animation is choreographed on a common step All action takes place in one surrounding. When objects are restructured and transformed, the user will be given with the experience without collapsing the continuity of it. 9. Motion provides meaning Motion is meaningful and convenient. It helps to focus attention and preserves continuity. The following elements assists in material design for apps of Android version 5.0 (Lollipop) or higher.
  • 13. Themes The material theme is defined as, @android:style/Theme.Material (dark version) @android:style/Theme.Material.Light (light version) @android:style/Theme.Material.Light.DarkActionBar
  • 14. To use the material theme in your apps, customize the color palette as shown below, <resources> <!-- inherit from the material theme --> <style name="AppTheme" parent="android:Theme.Material"> <!-- Main theme colors --> <!-- your app branding color for the app bar --> <item name="android:colorPrimary">@color/primary</item> <!-- darker variant for the status bar and contextual app bars --> <item name="android:colorPrimaryDark">@color/primary_dark</item> <!-- theme UI controls like checkboxes and text fields --> <item name="android:colorAccent">@color/accent</item> </style> </resources>
  • 15. The following example describes how to add material design to a button styles.xml <resources> <!-- Base application theme. --> <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /> <!-- Customize your theme here. --> <style name="MyButton" parent="Theme.AppCompat.Light"> <item name="colorControlHighlight">@color/calbutton_focus</item> <item name="colorButtonNormal">@color/background_color</item> </style> </resources>
  • 16. activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height=" match_parent "> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:theme="@style/MyButton" android:layout_gravity="center" android:text="Click" android:textAllCaps="true" android:textColor="@color/white"/> </LinearLayout>
  • 17. Cards and Lists Cards and Lists are the two new widgets in Android with material design styles and animation. To create cards and Lists, RecyclerView can be used, which is introduced from Android version 5.0 (Lollipop). It is an adoption of ListView, which supports various layout types and contributes performance improvements. Part of data can be shown inside the card with a constant look over apps in CardView. An example shown below demonstrates how to add a CardView in your layout. build.gradle dependencies { // CardView compile 'com.android.support:cardview-v7:23.3.+' }
  • 19. To use RecyclerView widget in your layout, necessary attribute is shown below, build.gradle activity_main.xml dependencies { // RecyclerView compile 'com.android.support:recyclerview-v7:23.1.1 } <android.support.v7.widget.RecyclerView android:id="@+id/recycler_view" android:layout_width="match_parent" android:layout_height="wrap_content" android:clipToPadding="false" android:scrollbars="vertical" />
  • 20. Floating Action Button Another interesting widget introduced in material design is floating action button. This button floats on UI in a circular shape with an action attached to it. By default, its behavior is to animate on the screen as an expanding piece of material.
  • 21. We can also provide shadows and elevation to the buttons. The distance between surfaces and the depth of its shadow signifies elevation. To set the elevation of a view, use the android:elevation attribute in your layouts. The bounds of a view’s background drawable determine the default shape of its shadow. In addition to the X and Y properties, views in Android material design now have a Z property. This new property serves as the elevation of a view, which concludes the size of the shadow i.e., a view with greater Z values launches bigger shadows. < android.support.design.widget.FloatingActionButton android:id=”@+id/my_floatbutton” android:layout_width=”wrap_content” android:layout_height=”wrap_content” android: layout_gravity="top|end” android: src="@android:drawable/ic_add” android:background=”@color/white” android:elevation="5dp" />
  • 22. build.gradle activity_main.xml dependencies{ compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' } <android.support.design.widget.FloatingActionButton android:id="@+id/fab" android: layout_width="wrap_content" android: layout_height="wrap_content" android: layout_gravity="bottom|end" // position the floating button android: layout_margin="@dimen/fab_margin" android: src="@android:drawable/ic_dialog_email"/>
  • 23. You can also define own background color for floating button using app:backgroundTint. The size of the button can also be defined by using app:fabSize attribute.
  • 24. CollapsingToolbarLayout A new widget called CollapsingToolbarLayout was also introduced from Android version 5.0 (Lollipop). This comes with an amazing animation; whenever a user scrolls up the control provides the fabulous animating effect. According to the Android documentation, CollapsingToolbarLayout is a wrapper for Toolbar which implements a collapsing app bar. It makes the header image collapse into the Toolbar, adjusting its title size and it is designed to be used as a direct child of an AppBarLayout. To add CollapsingToolbarLayout to your layout, see the following, build.gradle dependencies{ compile 'com.android.support:appcompat-v7:23.1.1' compile 'com.android.support:design:23.1.1' }
  • 26. Conclusion Google developed material design to bring together the user experience from different Google platforms. Totally, material design made the user interaction smooth, simpler and greater intuitive. When you think about material design, it has so many technologies, which will only create the impression for users while using apps during interactions. The physical world is the very big part of the material design. So all in all, what do you think of Material Design in Android? Don’t you think it’s the best part to unite and enhance the user experience while using the Android application? C ONCLUSION
  • 27. Thank You…. OurOfficialWebsite- www.vmokshagroup.com FacebookPage- https://www.facebook.com/Vmokshagroup Google+Page- https://plus.google.com/+VmokshaTechnologies TwitterPage- https://twitter.com/InfoVmoksha PinterestPage- https://in.pinterest.com/vmokshagroup/ LinkedInPage- https://www.linkedin.com/company/vmoksha-technologies InstagramPage- https://www.instagram.com/vmoksha.technologies/ ContactUs -080 4137 6300 Address -2799 & 2800, Srinidhi, Sector-1, 27th Main, HSR Layout, Bengaluru, Karnataka 560102. Vmoksha Technologies Pvt. Ltd.