SlideShare a Scribd company logo
1 of 50
Download to read offline
Dominik Helleberg | inovex GmbH
Embedded Android
Dominik Helleberg
Mobile Development
Android
Ingress Level 7
http://dominik-helleberg.de/+
Embedded Android?
http://developer.android.com/design/index.html
https://twitter.com/Arubin/status/27808662429
Why?
http://commons.wikimedia.org/wiki/File:Helvar_Touchscreen_924.jpg
http://ajaishukla.blogspot.de/2009/03/visit-to-ins-shivalik-indias-newest.html
http://commons.wikimedia.org/wiki/File:Rh%C3%A4tische_Bahn_kaartlezer.JPG
Apps
Java
Kernel
Libs HAL Init
Framework / API
System Services
Dalvik / Runtime / Zygote
Tooling
Libraries
User Interface
Developers
Open Source
Hardware Support
Technology Architecture
http://e.ubmelectronics.com/2013EmbeddedStudy/index.html
http://e.ubmelectronics.com/2013EmbeddedStudy/index.html
Stock Apps
Framework / API
User Apps
Java
System Services
Dalvik / Runtime / Zygote
Kernel
Libs HAL Init
Stock Apps
Framework / API
User Apps
Java
System Services
Dalvik / Runtime / Zygote
Kernel
Libs Init
https://android.googlesource.com/
HAL
Architecture by example - GPS
Stock Apps
Framework / API
User Apps
Java
System Services
Dalvik / Runtime / Zygote
Kernel
Libs HAL Init
Architecture by example - GPS
Stock Apps User Apps
locationManager = (LocationManager) 	
	this.getSystemService(Context.LOCATION_SERVICE);	
	
locationManager.requestLocationUpdates(	
	LocationManager.GPS_PROVIDER, 0, 0,
	locationListener);
frameworks/base/location/java/android/location/
LocationManager.java
Architecture by example - GPS
Framework / API System Services
try {	
mService.requestLocationUpdates(request,
	 	transport, intent, packageName);	
} catch (RemoteException e) {	
Log.e(TAG, "RemoteException", e);	
}
frameworks/base/location/java/android/location/
LocationManager.java
	
private final ILocationManager mService;
Architecture by example - GPS
Framework / API System Services
frameworks/base/location/java/android/location/
ILocationManager.aidl
Architecture by example - GPS
Framework / API System Services
	void requestLocationUpdates(	
	 	in LocationRequest request, 	
	 	in ILocationListener listener,	
	 	in PendingIntent intent, 	
	 	String packageName);
frameworks/base/services/java/com/android/server/
LocationManagerService.java
		
	LocationProviderInterface provider =
	mProvidersByName.get(name);	
	...	
	provider.setRequest(providerRequest,
	worksource);	
Architecture by example - GPS
Framework / API System Services
frameworks/base/services/java/com/android/server/
location/GpsLocationProvider.java
		
		
	private native boolean native_start();
Architecture by example - GPS
Framework / API System Services
hardware/libhardware/include/hardware/gps.h
	/** Represents the standard GPS interface. */	
typedef struct {	
		
	 int (*init)( GpsCallbacks* callbacks );	
	
/** Starts navigating. */	
int (*start)( void );	
...	
	
	
Architecture by example - GPS
Libs HAL Init
development/tools/emulator/system/gps/
gps_qemu.c
device/samsung/manta/gps/gps.exynos5.so
		
	
Architecture by example - GPS
Libs HAL Init
Apps
Java
Kernel
Libs HAL Init
Framework / API
System Services
Dalvik / Runtime / Zygote
§  Freescale BSP
§  7 GB Source
§  Compile Time ~ 45 minutes
§  „Deployment Time“ ~ 5-10
minutes
§  Dependencies ususally fail at
runtime
§  You can change everything...
Maybe you shouldn‘t ;)
§  Custom WiFi
§  Custom Recovery
§  New APIs for eINK Display
§  Custom USB and Storage
§  System updates
§  Boot time optimization
§  Battery Life Management
§  Custom WiFi
§  Custom Recovery
§  New APIs for eINK Display
§  Custom USB and Storage
§  System updates
§  Boot time optimization
§  Battery Life Management
New APIs for eINK Display
§  300 – 900 ms refresh
§  Update Modes to reduce ghosting
http://commons.wikimedia.org/wiki/File:EInk_Refresh.gif
http://commons.wikimedia.org/wiki/File:EInk_simplified.png
Custom USB and Storage
Internal
SD-Card
Ext.
SD-
Card
USB
invalidate()	
  
externalStorage()	
  
TolinoApp
Auth | Shop | Cloud-Storage | Settings | WiFi Auth | Local Storage
Java
Kernel
Libs HAL Init
Framework / API
System Services
Dalvik / Runtime / Zygote
bootloader
kernel
init
service
manager
zygote
daemons
boot
animiation
System
Server
Package
Manager
Activity
Manager
Power
Manager
...
launcher
bootloader
kernel
init
service
manager
zygote
daemons
boot
animiation
System
Server
Package
Manager
Activity
Manager
Power
Manager
...
launcher
/sys/devices/system/cpu/cpuX/cpufreq/stats/time_in_state	
  
	
  
	
  
160000	
  632455	
  
400000	
  781	
  
800000	
  8825	
  
	
  
	
  
deepSleepTime	
  =	
  	
  
	
  SystemClock.elapsedRealtime()	
  -­‐	
  (Σ	
  (all	
  cpu_states));	
  
deepSleepTime	
  =	
  	
  
	
  SystemClock.elapsedRealtime()	
  -­‐	
  
	
  SystemClock.uptimeMillis();	
  
$	
  adb	
  shell	
  dumpsys	
  batteryinfo	
  
	
  
	
  
....	
  
Statistics	
  since	
  last	
  charge:	
  
	
  	
  System	
  starts:	
  0,	
  currently	
  on	
  battery:	
  false	
  
	
  	
  Time	
  on	
  battery:	
  4d	
  0h	
  38m	
  8s	
  373ms	
  (5,3%)	
  realtime,	
  5m	
  55s	
  182ms	
  (0,0%)	
  uptime	
  
	
  	
  Total	
  run	
  time:	
  75d	
  13h	
  54m	
  39s	
  222ms	
  realtime,	
  5h	
  16m	
  0s	
  646ms	
  uptime,	
  	
  
	
  	
  Screen	
  on:	
  5m	
  46s	
  126ms	
  (0,1%),	
  Input	
  events:	
  0,	
  Active	
  phone	
  call:	
  0ms	
  (0,0%)	
  
	
  	
  Screen	
  brightnesses:	
  dark	
  8s	
  614ms	
  (2,5%),	
  medium	
  5m	
  37s	
  512ms	
  (97,5%)	
  
	
  	
  Kernel	
  Wake	
  lock	
  "PowerManagerService":	
  5s	
  613ms	
  	
  (25	
  times)	
  realtime	
  
	
  	
  Kernel	
  Wake	
  lock	
  "alarm":	
  1s	
  676ms	
  	
  (9	
  times)	
  realtime	
  
	
  	
  Kernel	
  Wake	
  lock	
  "android_usb":	
  2s	
  222ms	
  	
  (1	
  times)	
  realtime	
  
	
  	
  Kernel	
  Wake	
  lock	
  "power-­‐supply":	
  13ms	
  	
  (1	
  times)	
  realtime	
  
	
  	
  Kernel	
  Wake	
  lock	
  "KeyEvents":	
  93ms	
  	
  (449	
  times)	
  realtime	
  
	
  	
  Kernel	
  Wake	
  lock	
  "main":	
  5m	
  46s	
  194ms	
  	
  (1	
  times)	
  realtime	
  
	
  	
  Total	
  received:	
  0B,	
  Total	
  sent:	
  0B	
  
	
  	
  Total	
  full	
  wakelock	
  time:	
  0ms	
  ,	
  Total	
  partial	
  waklock	
  time:	
  5s	
  576ms	
  	
  
	
  	
  Signal	
  levels:	
  No	
  activity	
  
	
  	
  Signal	
  scanning	
  time:	
  0ms	
  	
  
	
  	
  Radio	
  types:	
  No	
  activity	
  
	
  	
  Radio	
  data	
  uptime	
  when	
  unplugged:	
  0	
  ms	
  
	
  	
  Wifi	
  on:	
  0ms	
  (0,0%),	
  Wifi	
  running:	
  0ms	
  (0,0%),	
  Bluetooth	
  on:	
  0ms	
  (0,0%)	
  
	
  
$	
  adb	
  shell	
  bugreport	
  >	
  bugreport.txt	
  	
  
$	
  java	
  -­‐jar	
  chkbugreport-­‐0.4-­‐185.jar	
  bugreport.txt	
  	
  
https://github.com/sonyxperiadev/ChkBugReport
http://beagleboard.org/Products/BeagleBone%20Black
http://www.oreilly.de/catalog/9781449308292/index.html
Credits
http://www.ouya.tv/about/
https://mediacenter.motorola.com/Image-Gallery/MOTOACTV-Golf-Edition-8c1.aspx
http://www.tolino.de
https://www.honeywellaidc.com/en-US/resources/image-library/Pages/default.aspx?
Category=7800&keywords=7800&title=7800&description=7800
https://android-build.linaro.org/
http://source.android.com/source/building.html
http://nvidianews.nvidia.com/Releases/NVIDIA-Untethers-Gaming-With-Project-
SHIELD-8ee.aspx
http://www.android-user.de/Apps/Auerswald-Comfortel-3500-Das-IP-Telefon-mit-
Android-2.3-im-Test
DANKE!

More Related Content

Viewers also liked

Viewers also liked (13)

Why do we need more nerds?
Why do we need more nerds?Why do we need more nerds?
Why do we need more nerds?
 
Android Development Tools
Android Development ToolsAndroid Development Tools
Android Development Tools
 
Supercharge your ui
Supercharge your uiSupercharge your ui
Supercharge your ui
 
One APK to rule them all
One APK to rule them allOne APK to rule them all
One APK to rule them all
 
Android Ice Cream Sandwich WJAX 2011
Android Ice Cream Sandwich WJAX 2011Android Ice Cream Sandwich WJAX 2011
Android Ice Cream Sandwich WJAX 2011
 
Android Studio und gradle
Android Studio und gradleAndroid Studio und gradle
Android Studio und gradle
 
Android ActionBar Navigation reloaded
Android ActionBar Navigation reloadedAndroid ActionBar Navigation reloaded
Android ActionBar Navigation reloaded
 
Android Studio vs. ADT
Android Studio vs. ADTAndroid Studio vs. ADT
Android Studio vs. ADT
 
Android Development Tools
Android Development ToolsAndroid Development Tools
Android Development Tools
 
Renderscript in Android 3.x
Renderscript in Android 3.xRenderscript in Android 3.x
Renderscript in Android 3.x
 
Android Enterprise Integration
Android Enterprise IntegrationAndroid Enterprise Integration
Android Enterprise Integration
 
Core Android
Core AndroidCore Android
Core Android
 
Rich Graphics & OpenGL mit Android
Rich Graphics & OpenGL mit AndroidRich Graphics & OpenGL mit Android
Rich Graphics & OpenGL mit Android
 

Similar to Embedded Android

Hands on web development with play 2.0
Hands on web development with play 2.0Hands on web development with play 2.0
Hands on web development with play 2.0Abbas Raza
 
Google App Engine for Java v0.0.2
Google App Engine for Java v0.0.2Google App Engine for Java v0.0.2
Google App Engine for Java v0.0.2Matthew McCullough
 
0xdroid -- community-developed Android distribution by 0xlab
0xdroid -- community-developed Android distribution by 0xlab0xdroid -- community-developed Android distribution by 0xlab
0xdroid -- community-developed Android distribution by 0xlabNational Cheng Kung University
 
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh VariaCloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh VariaAmazon Web Services
 
Google App Engine for Java
Google App Engine for JavaGoogle App Engine for Java
Google App Engine for JavaLars Vogel
 
1 Win7 For Devs Fund Search
1 Win7 For Devs Fund Search1 Win7 For Devs Fund Search
1 Win7 For Devs Fund Searchllangit
 
Serverless 101 in Montreal
Serverless 101 in MontrealServerless 101 in Montreal
Serverless 101 in MontrealAaron Williams
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaChristian Heilmann
 
[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic
[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic
[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogicRakuten Group, Inc.
 
A fun cup of joe with open liberty
A fun cup of joe with open libertyA fun cup of joe with open liberty
A fun cup of joe with open libertyAndy Mauer
 
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13Fred Sauer
 
eXo Platform SEA - Play Framework Introduction
eXo Platform SEA - Play Framework IntroductioneXo Platform SEA - Play Framework Introduction
eXo Platform SEA - Play Framework Introductionvstorm83
 
Android porting for dummies @droidconin 2011
Android porting for dummies @droidconin 2011Android porting for dummies @droidconin 2011
Android porting for dummies @droidconin 2011pundiramit
 
High Volume Payments using Mule
High Volume Payments using MuleHigh Volume Payments using Mule
High Volume Payments using MuleAdhish Pendharkar
 
Habitat hack slides - Infracoders Meetup Graz
Habitat hack slides - Infracoders Meetup GrazHabitat hack slides - Infracoders Meetup Graz
Habitat hack slides - Infracoders Meetup GrazInfralovers
 
Tuning and development with SIP Servlets on Mobicents
Tuning and development with SIP Servlets on MobicentsTuning and development with SIP Servlets on Mobicents
Tuning and development with SIP Servlets on MobicentsJean Deruelle
 
Abusing bleeding edge web standards for appsec glory
Abusing bleeding edge web standards for appsec gloryAbusing bleeding edge web standards for appsec glory
Abusing bleeding edge web standards for appsec gloryPriyanka Aash
 
Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Jon Arne Sæterås
 
Arm html5 presentation
Arm html5 presentationArm html5 presentation
Arm html5 presentationIan Renyard
 

Similar to Embedded Android (20)

Hands on web development with play 2.0
Hands on web development with play 2.0Hands on web development with play 2.0
Hands on web development with play 2.0
 
Google App Engine for Java v0.0.2
Google App Engine for Java v0.0.2Google App Engine for Java v0.0.2
Google App Engine for Java v0.0.2
 
0xdroid -- community-developed Android distribution by 0xlab
0xdroid -- community-developed Android distribution by 0xlab0xdroid -- community-developed Android distribution by 0xlab
0xdroid -- community-developed Android distribution by 0xlab
 
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh VariaCloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
Cloud-powered Continuous Integration and Deployment architectures - Jinesh Varia
 
Google App Engine for Java
Google App Engine for JavaGoogle App Engine for Java
Google App Engine for Java
 
1 Win7 For Devs Fund Search
1 Win7 For Devs Fund Search1 Win7 For Devs Fund Search
1 Win7 For Devs Fund Search
 
Serverless 101 in Montreal
Serverless 101 in MontrealServerless 101 in Montreal
Serverless 101 in Montreal
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 
[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic
[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic
[Rakuten TechConf2014] [C-5] Ichiba Architecture on ExaLogic
 
A fun cup of joe with open liberty
A fun cup of joe with open libertyA fun cup of joe with open liberty
A fun cup of joe with open liberty
 
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
SF JUG - GWT Can Help You Create Amazing Apps - 2009-10-13
 
eXo Platform SEA - Play Framework Introduction
eXo Platform SEA - Play Framework IntroductioneXo Platform SEA - Play Framework Introduction
eXo Platform SEA - Play Framework Introduction
 
Android porting for dummies @droidconin 2011
Android porting for dummies @droidconin 2011Android porting for dummies @droidconin 2011
Android porting for dummies @droidconin 2011
 
High Volume Payments using Mule
High Volume Payments using MuleHigh Volume Payments using Mule
High Volume Payments using Mule
 
Splunking the JVM
Splunking the JVMSplunking the JVM
Splunking the JVM
 
Habitat hack slides - Infracoders Meetup Graz
Habitat hack slides - Infracoders Meetup GrazHabitat hack slides - Infracoders Meetup Graz
Habitat hack slides - Infracoders Meetup Graz
 
Tuning and development with SIP Servlets on Mobicents
Tuning and development with SIP Servlets on MobicentsTuning and development with SIP Servlets on Mobicents
Tuning and development with SIP Servlets on Mobicents
 
Abusing bleeding edge web standards for appsec glory
Abusing bleeding edge web standards for appsec gloryAbusing bleeding edge web standards for appsec glory
Abusing bleeding edge web standards for appsec glory
 
Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013
 
Arm html5 presentation
Arm html5 presentationArm html5 presentation
Arm html5 presentation
 

Recently uploaded

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Paola De la Torre
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Recently uploaded (20)

A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Embedded Android