SlideShare a Scribd company logo
1 of 21
Table of contentTable of content
 Android overview
 Android sdk overview
 Android.widget package
 Intent
 Multimedia
 Activity life cycle
 Android services
 Android notifications
 Databases
Android overviewAndroid overview
 It is an open source Linux-
based OS for handheld devices.
 Main objective was for digital
camera.
 Andy Rubin & co-member
developed Android in 2004 as
Android Inc.
Andy Rubin
 July 2005-Google acquired Android Inc.
 Sep 2008-version, Android 1.0 was released.
 HTC Dream: first phone in which android was installed and used.
Android SDK overviewAndroid SDK overview
 For the development of app an IDE is given: Android Studio,
Eclipse(SDK).
 SDK consist of class library, android debug tool, emulator etc.
 Emulator: is a virtual device used for testing our app which is also
called AVD(Android virtual Device).
 testing .apk
IDE AVD
Devi
ce
 Android apps are developed usually in java language using SDK.
 And till now various versions of android was launched which works on
different API levels.
 API: is an integer value; uniquely identifies the framework api revision
offered by android platform.
Android versionsAndroid versions
Versions API level Name
Android 1.0 1 Base / α
Android 1.1 2 Base_1_1 / β
Android 1.5 3 Cupcake
Android 1.6 4 Donut
Android 2.0 5 Eclair
Android 2.0.1 – 2.2.x 6,7,8 Éclair_0_1 - Froyo
Android 2.3 – 2.3.7 9,10 Gingerbread (Stable)
Android 3.0 – 3.2 11,12,13 Honeycomb (Failed)
Android 4.0 – 4.0.2 14 Ice-cream sandwich
Android 4.0.3 – 4.3 15,16,17,18 Ice-cream – jellybean
Android 4.4 – 5.0 19,20,21 Kitkat – lollipop
Android.widget packageAndroid.widget package
 Added in API level 1
 Contains UI elements to use on our screen/ Activity.
 Contains the basics controls(textview,button,textfields).
 It is the child of view group which is the parent of all the layouts.
ViewGroup
View View
ViewView View
ViewGroup
Android ActivityAndroid Activity
Android Activity
Xml filesXml files Java files
R.java Activity.java
Basic controls(android.widget)Basic controls(android.widget)
 Text View
 Edit Text
 Buttons
 Spinner
 Seek Bar
 Radio Buttons
Intent (android.content)Intent (android.content)
 It is an abstract description of an operation to be performed.
 (starting a new activity, starting a service etc).
 Syntax:
Intent i=new Intent(source, destinationClass);
startActivity(i);
 (Intent)
Activity 1 Activity 2
MultimediaMultimedia
 All the tasks like playing music, video, audio recording etc comes
under the category of android multimedia.
 All the multimedia file are to be put in a folder named as “raw” &
image in drawable folder.
 There are lots of predefined classes are given in android to access
various media operations(MediaPlayer, VideoView, MediaController
etc).
 Eg. playing a song
Activity life cycleActivity life cycle
 There are certain call back methods which are responsible for handling
the whole life cycle of any activity.
 onCreate()
 onStart()
 onResume()
 onPause()
 onRestart()
 onStop()
 onDestroy()
Activity
Launched
onCreate()
onStart()
onResume()
onPause()
onStop()
onRestart()
onDestroy()
Any interruption occurred
Activity is not visible
User navigates to
activity
Activity is finished
Android Services(android.app.Service)Android Services(android.app.Service)
 A service is an component that can perform long-running process in
the background and it does not provide any UI.
 There are two types of services:
 1.Started service: a service is “stared” when an application component
starts it by calling startServices().
 Once it started, run in the background infinitely.
 2.Bound service: a service is “bound” by calling bindService().
 Used on the client server.
Activity
started
onCreate()
Service
class
startService()
called
Returned output
onDestroy() if
onStartCommand()
stopService()
called
Service
class
Returned output
AndroidAndroid
Notification(android.app.Notification)Notification(android.app.Notification)
 It is a message that we can
display to the user outside of the
application.
 User can navigate the
notification by opening
notification drawer.
 There are some predefined
classes for achieving
notification:
 1.NotificationManager
//manages all the notification in
the app
 2.Notification //helps in
building notification.
 Methods:
 1.setsmallIcon(“path”);
 2.setTicker(“new msg rcvd”);
 3.setContentTitle(“ab@gml”);
 4.setContextText(“hello”);
Cont…Cont…
1.setsmallIcon(
“path”);
3.setContentTi
tle(“ab@gml”)
;
4.setContextTe
xt(“hello”);
Database(android.database.SQLite)Database(android.database.SQLite)
 All the database query are done in hard coded in android.
 There are two types of query:
 1. Updation type (execSQL() )
 2. selection type (rawQuery() )
 Ex:
 db.execSQL(“create table student(name varchar(10),…..)”);
 db. rawQuery(“select * from student here name=“Rajeev” ”);
Database
Updation
Type
Selection
Type
Update
Insert
Delete
Create
table
Select
cpuk10745

More Related Content

What's hot

Android OS & SDK - Getting Started
Android OS & SDK - Getting StartedAndroid OS & SDK - Getting Started
Android OS & SDK - Getting StartedHemant Chhapoliya
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesAhsanul Karim
 
Multiple Activity and Navigation Primer
Multiple Activity and Navigation PrimerMultiple Activity and Navigation Primer
Multiple Activity and Navigation PrimerAhsanul Karim
 
Android Development: Build Android App from Scratch
Android Development: Build Android App from ScratchAndroid Development: Build Android App from Scratch
Android Development: Build Android App from ScratchTaufan Erfiyanto
 
Marakana Android User Interface
Marakana Android User InterfaceMarakana Android User Interface
Marakana Android User InterfaceMarko Gargenta
 
How to create android applications
How to create android applicationsHow to create android applications
How to create android applicationsTOPS Technologies
 
Installing android sdk on net beans
Installing android sdk on net beansInstalling android sdk on net beans
Installing android sdk on net beansAravindharamanan S
 
Introduction to everything around Android
Introduction to everything around AndroidIntroduction to everything around Android
Introduction to everything around AndroidBipin Jethwani
 
Getting started with android dev and test perspective
Getting started with android   dev and test perspectiveGetting started with android   dev and test perspective
Getting started with android dev and test perspectiveGunjan Kumar
 
Create your First Watchkit App
Create your First Watchkit AppCreate your First Watchkit App
Create your First Watchkit AppPawan Ramteke
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Trainingchandutata
 

What's hot (20)

Android
AndroidAndroid
Android
 
Android OS & SDK - Getting Started
Android OS & SDK - Getting StartedAndroid OS & SDK - Getting Started
Android OS & SDK - Getting Started
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through Activities
 
Android vs iOS
Android vs iOSAndroid vs iOS
Android vs iOS
 
Android session 2
Android session 2Android session 2
Android session 2
 
Android session 1
Android session 1Android session 1
Android session 1
 
Multiple Activity and Navigation Primer
Multiple Activity and Navigation PrimerMultiple Activity and Navigation Primer
Multiple Activity and Navigation Primer
 
Android session 3
Android session 3Android session 3
Android session 3
 
Android Development: Build Android App from Scratch
Android Development: Build Android App from ScratchAndroid Development: Build Android App from Scratch
Android Development: Build Android App from Scratch
 
Marakana Android User Interface
Marakana Android User InterfaceMarakana Android User Interface
Marakana Android User Interface
 
How to create android applications
How to create android applicationsHow to create android applications
How to create android applications
 
Android App development III
Android App development IIIAndroid App development III
Android App development III
 
Installing android sdk on net beans
Installing android sdk on net beansInstalling android sdk on net beans
Installing android sdk on net beans
 
Android tutorial1
Android tutorial1Android tutorial1
Android tutorial1
 
Android studio installation
Android studio installationAndroid studio installation
Android studio installation
 
Introduction to everything around Android
Introduction to everything around AndroidIntroduction to everything around Android
Introduction to everything around Android
 
Getting started with android dev and test perspective
Getting started with android   dev and test perspectiveGetting started with android   dev and test perspective
Getting started with android dev and test perspective
 
Create your First Watchkit App
Create your First Watchkit AppCreate your First Watchkit App
Create your First Watchkit App
 
Android
AndroidAndroid
Android
 
Android Development Training
Android Development TrainingAndroid Development Training
Android Development Training
 

Viewers also liked

Task 7 survey responses pictures
Task 7 survey responses picturesTask 7 survey responses pictures
Task 7 survey responses picturesharry pugh
 
Media task one
Media task oneMedia task one
Media task oneharry pugh
 
CLASSIC - 2016-8-23
CLASSIC - 2016-8-23CLASSIC - 2016-8-23
CLASSIC - 2016-8-23Kenneth Gee
 
정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)Kang Hyunsoo
 
Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)sitidiah ayufebriani
 
El cuerpo humano
El cuerpo humanoEl cuerpo humano
El cuerpo humanoBelicampos
 
Reglasde operacio 2016
Reglasde operacio 2016Reglasde operacio 2016
Reglasde operacio 2016Elide010203
 

Viewers also liked (10)

Task 7 survey responses pictures
Task 7 survey responses picturesTask 7 survey responses pictures
Task 7 survey responses pictures
 
Media task one
Media task oneMedia task one
Media task one
 
CLASSIC - 2016-8-23
CLASSIC - 2016-8-23CLASSIC - 2016-8-23
CLASSIC - 2016-8-23
 
정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)정보디자인 Project2 final (너를 위한 작은 공간)
정보디자인 Project2 final (너를 위한 작은 공간)
 
Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)Resum fisling siti diah ayu f. (081810201008)
Resum fisling siti diah ayu f. (081810201008)
 
El cuerpo humano
El cuerpo humanoEl cuerpo humano
El cuerpo humano
 
Cupom fiscal eletrônico pb nfce
Cupom fiscal eletrônico pb nfceCupom fiscal eletrônico pb nfce
Cupom fiscal eletrônico pb nfce
 
Земля
ЗемляЗемля
Земля
 
APS Profile Company
APS Profile Company APS Profile Company
APS Profile Company
 
Reglasde operacio 2016
Reglasde operacio 2016Reglasde operacio 2016
Reglasde operacio 2016
 

Similar to cpuk10745

Android terminologies
Android terminologiesAndroid terminologies
Android terminologiesjerry vasoya
 
Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1Amit Saxena
 
Day: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application DevelopmentDay: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application DevelopmentAhsanul Karim
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development pptsaitej15
 
Get an Android tutorial for beginners
Get an Android tutorial for beginnersGet an Android tutorial for beginners
Get an Android tutorial for beginnersJavaTpoint.Com
 
Android interview questions and answers
Android interview questions and answersAndroid interview questions and answers
Android interview questions and answerskavinilavuG
 
Questions About Android Application Development
Questions About Android Application DevelopmentQuestions About Android Application Development
Questions About Android Application DevelopmentAdeel Rasheed
 
Android Development in a Nutshell
Android Development in a NutshellAndroid Development in a Nutshell
Android Development in a NutshellAleix Solé
 
Creating the first app with android studio
Creating the first app with android studioCreating the first app with android studio
Creating the first app with android studioParinita03
 
Android studio
Android studioAndroid studio
Android studioAndri Yabu
 
Introduction to Android App Development
Introduction to Android App DevelopmentIntroduction to Android App Development
Introduction to Android App DevelopmentAndri Yadi
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesAhsanul Karim
 
Android application development
Android application developmentAndroid application development
Android application developmentslidesuren
 

Similar to cpuk10745 (20)

Android terminologies
Android terminologiesAndroid terminologies
Android terminologies
 
Aptech Apps
Aptech Apps Aptech Apps
Aptech Apps
 
Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1Android Tutorial For Beginners Part-1
Android Tutorial For Beginners Part-1
 
Day: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application DevelopmentDay: 2 Environment Setup for Android Application Development
Day: 2 Environment Setup for Android Application Development
 
Android app development ppt
Android app development pptAndroid app development ppt
Android app development ppt
 
Android dev o_auth
Android dev o_authAndroid dev o_auth
Android dev o_auth
 
Get an Android tutorial for beginners
Get an Android tutorial for beginnersGet an Android tutorial for beginners
Get an Android tutorial for beginners
 
Android app development
Android app developmentAndroid app development
Android app development
 
Android interview questions and answers
Android interview questions and answersAndroid interview questions and answers
Android interview questions and answers
 
Questions About Android Application Development
Questions About Android Application DevelopmentQuestions About Android Application Development
Questions About Android Application Development
 
Android Development in a Nutshell
Android Development in a NutshellAndroid Development in a Nutshell
Android Development in a Nutshell
 
Creating the first app with android studio
Creating the first app with android studioCreating the first app with android studio
Creating the first app with android studio
 
Android studio
Android studioAndroid studio
Android studio
 
Android overview
Android overviewAndroid overview
Android overview
 
Introduction to Android App Development
Introduction to Android App DevelopmentIntroduction to Android App Development
Introduction to Android App Development
 
Unit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.pptUnit I- ANDROID OVERVIEW.ppt
Unit I- ANDROID OVERVIEW.ppt
 
Android Basic- CMC
Android Basic- CMCAndroid Basic- CMC
Android Basic- CMC
 
Day 3: Getting Active Through Activities
Day 3: Getting Active Through ActivitiesDay 3: Getting Active Through Activities
Day 3: Getting Active Through Activities
 
Android application development
Android application developmentAndroid application development
Android application development
 
Android app development
Android app developmentAndroid app development
Android app development
 

Recently uploaded

Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureDinusha Kumarasiri
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptkotipi9215
 
software engineering Chapter 5 System modeling.pptx
software engineering Chapter 5 System modeling.pptxsoftware engineering Chapter 5 System modeling.pptx
software engineering Chapter 5 System modeling.pptxnada99848
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantAxelRicardoTrocheRiq
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - InfographicHr365.us smith
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...Christina Lin
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideChristina Lin
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...MyIntelliSource, Inc.
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEEVICTOR MAESTRE RAMIREZ
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...MyIntelliSource, Inc.
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesPhilip Schwarz
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfPower Karaoke
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)OPEN KNOWLEDGE GmbH
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfAlina Yurenko
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Andreas Granig
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024StefanoLambiase
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmSujith Sukumaran
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWave PLM
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software DevelopersVinodh Ram
 

Recently uploaded (20)

Implementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with AzureImplementing Zero Trust strategy with Azure
Implementing Zero Trust strategy with Azure
 
chapter--4-software-project-planning.ppt
chapter--4-software-project-planning.pptchapter--4-software-project-planning.ppt
chapter--4-software-project-planning.ppt
 
software engineering Chapter 5 System modeling.pptx
software engineering Chapter 5 System modeling.pptxsoftware engineering Chapter 5 System modeling.pptx
software engineering Chapter 5 System modeling.pptx
 
Salesforce Certified Field Service Consultant
Salesforce Certified Field Service ConsultantSalesforce Certified Field Service Consultant
Salesforce Certified Field Service Consultant
 
Asset Management Software - Infographic
Asset Management Software - InfographicAsset Management Software - Infographic
Asset Management Software - Infographic
 
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
ODSC - Batch to Stream workshop - integration of Apache Spark, Cassandra, Pos...
 
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop SlideBuilding Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
Building Real-Time Data Pipelines: Stream & Batch Processing workshop Slide
 
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
Try MyIntelliAccount Cloud Accounting Software As A Service Solution Risk Fre...
 
Cloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEECloud Data Center Network Construction - IEEE
Cloud Data Center Network Construction - IEEE
 
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
Steps To Getting Up And Running Quickly With MyTimeClock Employee Scheduling ...
 
Folding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a seriesFolding Cheat Sheet #4 - fourth in a series
Folding Cheat Sheet #4 - fourth in a series
 
The Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdfThe Evolution of Karaoke From Analog to App.pdf
The Evolution of Karaoke From Analog to App.pdf
 
Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)Der Spagat zwischen BIAS und FAIRNESS (2024)
Der Spagat zwischen BIAS und FAIRNESS (2024)
 
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdfGOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
GOING AOT WITH GRAALVM – DEVOXX GREECE.pdf
 
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort ServiceHot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
Hot Sexy call girls in Patel Nagar🔝 9953056974 🔝 escort Service
 
Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024Automate your Kamailio Test Calls - Kamailio World 2024
Automate your Kamailio Test Calls - Kamailio World 2024
 
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
Dealing with Cultural Dispersion — Stefano Lambiase — ICSE-SEIS 2024
 
Intelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalmIntelligent Home Wi-Fi Solutions | ThinkPalm
Intelligent Home Wi-Fi Solutions | ThinkPalm
 
What is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need ItWhat is Fashion PLM and Why Do You Need It
What is Fashion PLM and Why Do You Need It
 
Professional Resume Template for Software Developers
Professional Resume Template for Software DevelopersProfessional Resume Template for Software Developers
Professional Resume Template for Software Developers
 

cpuk10745