SlideShare a Scribd company logo
1 of 61
Download to read offline
Making Money with Android
Applications
July 17, 2013
soniash@google.com

Google Confidential and Proprietary
Lets be Rich !

Google Confidential and Proprietary
Lets be Rich !

No Secret Formula: Jini make me rich

Google Confidential and Proprietary
Agenda

Awesome
Product

Google Confidential and Proprietary
Agenda

Awesome
Product

Revenue
Model

Google Confidential and Proprietary
Agenda

Awesome
Product

Revenue
Model

Users/Bu
yers

Google Confidential and Proprietary
Agenda
Revenue
Model

Measure /
Improve
Awesome
Product

Users/Bu
yers

Google Confidential and Proprietary
Awesome Product

Useful, worth buying

Awesome
Product

Google Confidential and Proprietary
Awesome Product cont.
●
●

Catchy name
Increase App
discovery

Entice
Users

Google Confidential and Proprietary
Catchy Application name

Create Good Application Name
Experiment with these sites to come up with a great name.
PunGenerator
NameChk
Thefreedictionary
WerdMerge
WikiRhymer

Google Confidential and Proprietary
Awesome Product
●
●

Catchy name
Increase App discovery

●
●
●
●

Great User
Experience

Entice
Users

Smooth UI
Easy to use
Loads fast
Innovative design

Google Confidential and Proprietary
Awesome Product cont.
●

Catchy name
Increase App discovery

●
●
●
●

Great User
Experience

Entice Users

Smooth UI
Easy to use
Loads fast
Innovative design

Resource
Management

●

●
●
●

Less bandwidth
Less memory
Less battery

Google Confidential and Proprietary
Awesome Product cont.
●
●

Catchy name
Increase App discovery

●
●
●

Entice User

Resource
Management

●

Great User
Experience

●

Retain User

●

Smooth UI
Easy to use
Loads fast
Innovative design

User engagement
Constantly updated

●
●
●

Less bandwidth
Less memory
Less battery

Google Confidential and Proprietary
Revenue Models

Revenue
Model

Google Confidential and Proprietary
Revenue Models

In-App

Paid

Freemium
Premium

Free: Ads
funded

Subscriptions

Revenue
Model

Google Confidential and Proprietary
Revenue Models

Free: Ads funded

Google Confidential and Proprietary
Revenue Models

You publish
ads in your
Application

Advertiser
provides ads

Advertiser
pays for ads
based on
user clicks

You make
money

Google Confidential and Proprietary
Flexible Ad Formats
BANNER
SMART BANNER

Google Confidential and Proprietary
Ads funded

Internet

Admob (Ad platforms)
Does all heavy lifting

Publisher

Google Confidential and Proprietary
Ads funded:

4 easy steps

Signup at admob.com

Google Confidential and Proprietary
Ads funded: 4 easy steps
Signup at admob.com

Add admob library/sdk to project

Google Confidential and Proprietary
Ads funded: 4 easy steps
Signup at admob.com

Add admob library/sdk to project

</manifest>
<uses-permission android:name="android.permission.INTERNET"
/>

Google Confidential and Proprietary
Ads funded: 4 easy steps

Signup at admob.com

Add admob library/sdk to project

Add Permission to use internet

Specify Ad look and feel

Google Confidential and Proprietary
Ads funded
<LinearLayout ……
<com.google.ads.AdView
xmlns:googleads="http://schemas.android.
com/apk/lib/com.google.ads"
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

googleads:adSize="BANNER"
googleads:adUnitId="@string/admob_id" />
………
</LinearLayout>

Google Confidential and Proprietary
Ads funded Mediation
<LinearLayout ……
<com.google.ads.AdView
xmlns:googleads="http://schemas.android.
com/apk/lib/com.google.ads"
android:id="@+id/ad"
android:layout_width="fill_parent"
android:layout_height="wrap_content"

googleads:adSize="BANNER"
googleads:adUnitId="@string/admob_id" />
………
</LinearLayout>

Google Confidential and Proprietary
Better Ads Experience
Targeted Ads
public View onCreateView (LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) { ……..
View v = inflater.inflate(R.layout.main, container, false);
mAdStatus = (TextView) v.findViewById(R.id.status);
mAdView = (AdView) v.findViewById(R.id.ad);
mAdView.setAdListener(new MyAdListener());

AdRequest adRequest = new AdRequest();
adRequest.addKeyword("shoes");
mAdView.loadAd(adRequest);
return v;
}
Google Confidential and Proprietary
Better Ads Experience

Targeted Ads

User controls Ads

Google Confidential and Proprietary
Better Ads Experience

Targeted Ads

User controls Ads
Incentivize users to click
on Ads

Google Confidential and Proprietary
Better Ads Experience
Targeted Ads

User controls Ads

Incentivize users to click on Ads

Make beautiful Ads
http://code.google.com/mobile/ads/

Google Confidential and Proprietary
Better Ads Experience
Targeted Ads
User controls Ads
Incentivize users to click on Ads
Make beautiful Ads
Don’t be Evil

Google Confidential and Proprietary
Revenue Models

Paid

Google Confidential and Proprietary
Paid

Google Confidential and Proprietary
Revenue Models

In-App Billing

Google Confidential and Proprietary
Implementing In-App Billing

Google Confidential and Proprietary
Implementing In-App Billing

Google Confidential and Proprietary
Implementing In-App Billing

Purchase flow

Get details of items

Google Confidential and Proprietary
Implementing In-App Billing

Queries details synchronously

Application

Google
Play

Server

Does all heavy lifting

Google Confidential and Proprietary
Implementing In-App Billing

Application

Google Play
Install Billing library

Google Confidential and Proprietary
Implementing In-App Billing

Application

Google Play

Add interface to talk to library
IInAppBillingService.aidl

Install Billing library

Google Confidential and Proprietary
Implementing In-App Billing

Application

Google Play

Add interface

Install Billing library

Add permission to use library
<uses-permission android:name="
com.android.vending.BILLING" />

Google Confidential and Proprietary
Implementing In-App Billing

Application

Google Play

Add Interface

Install Billing library

Permission to use lib
Connect to lib
public void onCreate (Bundle
savedInstanceState)
{ IabHelper mHelper = new
IabHelper( .... );}

Google Confidential and Proprietary
Implementing In-App Billing

Cache
Application

Google
Play

Server

query in-app item details
make/launch purchase flow
query all purchase
consume purchase

Google Confidential and Proprietary
Revenue Models

Subscriptions

Google Confidential and Proprietary
Subscriptions

Application

Google
Play

query in-app item details
make/launch purchase flow
query all purchase

Google Confidential and Proprietary
Increase Reach/Buyers

Users/Bu
yers

Google Confidential and Proprietary
Increase Reach/Buyers

Increase device coverage
●

Read Supporting Multiple Screens

Customize for tablets
●

Use 9-patch drawables

Google Confidential and Proprietary
Increase Reach/Buyers

Globalize
●

2/3rd revenue from outside US

Google Confidential and Proprietary
Increase Reach/Buyers

Accessibility support
●

~1 billion have accessibility needs

Google Confidential and Proprietary
Increase Reach/Buyers
Social
engagement
G+ APIs

Don’t reach
wrong
audience

Reply to
reviews

Word
of
Mouth
Ask for
review/ratin
g

Constantly
update

Blog/ask
others to
blog

Google Confidential and Proprietary
Increase Reach/Buyers
Blogging can increase and almost double your leads.
This is a great way to connect to people directly and
get feedback.

Google Confidential and Proprietary
Increase Reach/Buyers
Incentivize
users

Campaigns

Bulk sales

Marketing
Timely
Promotions

Loyalty
programs

Cross
promotions

Comarketing

Google Confidential and Proprietary
Validate / Measure and Improve

Measure/I
mprove

Google Confidential and Proprietary
Validate / Measure and Improve
Devconsole/Analytics
●
●
●
●

No of users
Geo/Device
Uninstalls
Crashes

Google Confidential and Proprietary
Validate / Measure and Improve

Check Optimization Tips

Google Confidential and Proprietary
In App testing

Testing
●
●
●

Test using reserved/mock product IDs/products
Create Beta groups for testing and refund money
Use Sandbox environment. Add test accounts

Google Confidential and Proprietary
Summary

Google Confidential and Proprietary
Summary: Awesome Product

Useful, worth buying

Awesome
Product

Google Confidential and Proprietary
Summary: Increase Reach/Buyers

Reach all target audience and don’t
reach wrong audience

Users/
Buyers

Google Confidential and Proprietary
Summary: Revenue Models

Select Revenue Model based on application,
target audience and competition

Revenue
Model

Google Confidential and Proprietary
Summary: Validate / Measure and Improve

Test with real users before releasing app

Measure/I
mprove

Google Confidential and Proprietary
Thanks and Questions?

Send feedback to:
soniash@google.com
Google Confidential and Proprietary

More Related Content

What's hot

Mobile app development
Mobile app developmentMobile app development
Mobile app developmentSanjay Kumar
 
Instagram Clone | Instagram Clone App | Instagram Clone Script
Instagram Clone | Instagram Clone App | Instagram Clone ScriptInstagram Clone | Instagram Clone App | Instagram Clone Script
Instagram Clone | Instagram Clone App | Instagram Clone ScriptSwethaMohan21
 
"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier BerniTheFamily
 
How I Achieved $15,000 Daily Sales on Google Play | Android App Monetization
How I Achieved $15,000 Daily Sales on Google Play | Android App MonetizationHow I Achieved $15,000 Daily Sales on Google Play | Android App Monetization
How I Achieved $15,000 Daily Sales on Google Play | Android App MonetizationKatsuaki Sato
 
What are the challenges in i os app development
What are the challenges in i os app developmentWhat are the challenges in i os app development
What are the challenges in i os app developmentSatawareTechnologies
 
Android technlogy
Android technlogyAndroid technlogy
Android technlogyAjay Chawda
 
Role of mobile application development in personal and professional life
Role of mobile application development in personal and professional lifeRole of mobile application development in personal and professional life
Role of mobile application development in personal and professional lifePerception System Pvt. Ltd
 
Android Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:MonetizationAndroid Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:MonetizationDenis Minja
 
Accelerated Mobile Pages (AMP)
Accelerated Mobile Pages (AMP)Accelerated Mobile Pages (AMP)
Accelerated Mobile Pages (AMP)Sanjay Kumar
 
Media Storm weekly trends 9.12
Media Storm weekly trends 9.12Media Storm weekly trends 9.12
Media Storm weekly trends 9.12Charlie Fiordalis
 

What's hot (20)

App monetization
App monetizationApp monetization
App monetization
 
Mc Ewan Fraser Legal - Mobile App case study
Mc Ewan Fraser Legal - Mobile App case studyMc Ewan Fraser Legal - Mobile App case study
Mc Ewan Fraser Legal - Mobile App case study
 
Makeup Revolution - Mobile App case study
Makeup Revolution - Mobile App case studyMakeup Revolution - Mobile App case study
Makeup Revolution - Mobile App case study
 
Mobile app development
Mobile app developmentMobile app development
Mobile app development
 
Importance of mobile apps
Importance of mobile appsImportance of mobile apps
Importance of mobile apps
 
Mobile apps marketing
Mobile apps marketingMobile apps marketing
Mobile apps marketing
 
Instagram Clone | Instagram Clone App | Instagram Clone Script
Instagram Clone | Instagram Clone App | Instagram Clone ScriptInstagram Clone | Instagram Clone App | Instagram Clone Script
Instagram Clone | Instagram Clone App | Instagram Clone Script
 
Sense Launcher
Sense LauncherSense Launcher
Sense Launcher
 
Eye candy presentation
Eye candy   presentationEye candy   presentation
Eye candy presentation
 
"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni"Native App & Hybrid App, what is at stake?" by Olivier Berni
"Native App & Hybrid App, what is at stake?" by Olivier Berni
 
How I Achieved $15,000 Daily Sales on Google Play | Android App Monetization
How I Achieved $15,000 Daily Sales on Google Play | Android App MonetizationHow I Achieved $15,000 Daily Sales on Google Play | Android App Monetization
How I Achieved $15,000 Daily Sales on Google Play | Android App Monetization
 
What are the challenges in i os app development
What are the challenges in i os app developmentWhat are the challenges in i os app development
What are the challenges in i os app development
 
Android technlogy
Android technlogyAndroid technlogy
Android technlogy
 
W3W SEASON#02 WEEK#41
W3W SEASON#02 WEEK#41W3W SEASON#02 WEEK#41
W3W SEASON#02 WEEK#41
 
Mobile app
Mobile appMobile app
Mobile app
 
Role of mobile application development in personal and professional life
Role of mobile application development in personal and professional lifeRole of mobile application development in personal and professional life
Role of mobile application development in personal and professional life
 
Android Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:MonetizationAndroid Bootcamp Tanzania:Monetization
Android Bootcamp Tanzania:Monetization
 
Accelerated Mobile Pages (AMP)
Accelerated Mobile Pages (AMP)Accelerated Mobile Pages (AMP)
Accelerated Mobile Pages (AMP)
 
Media Storm weekly trends 9.12
Media Storm weekly trends 9.12Media Storm weekly trends 9.12
Media Storm weekly trends 9.12
 
AppPrizes
AppPrizesAppPrizes
AppPrizes
 

Similar to Making money with android applications

Managing your data: How to move from gathering data to processing and applyin...
Managing your data: How to move from gathering data to processing and applyin...Managing your data: How to move from gathering data to processing and applyin...
Managing your data: How to move from gathering data to processing and applyin...iCrossing
 
People, process, platform, presented by Adam Singer
People, process, platform, presented by Adam SingerPeople, process, platform, presented by Adam Singer
People, process, platform, presented by Adam SingerSocialMedia.org
 
Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...
Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...
Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...Hilary Ip
 
Digital media analytics: web, mobile analytics - Ahmad Abdullah - Google
Digital media analytics: web, mobile analytics - Ahmad Abdullah - GoogleDigital media analytics: web, mobile analytics - Ahmad Abdullah - Google
Digital media analytics: web, mobile analytics - Ahmad Abdullah - GoogleJigserv Digital
 
Taking advantage of mobile display
Taking advantage of mobile displayTaking advantage of mobile display
Taking advantage of mobile displayiCrossing
 
#3月瘋行動 從香港到海外移動平台推廣介紹
#3月瘋行動 從香港到海外移動平台推廣介紹 #3月瘋行動 從香港到海外移動平台推廣介紹
#3月瘋行動 從香港到海外移動平台推廣介紹 AdWordsGreaterChina
 
Google and 180fusion Webinar - September 2014 - PPC Success
Google and 180fusion Webinar - September 2014 - PPC SuccessGoogle and 180fusion Webinar - September 2014 - PPC Success
Google and 180fusion Webinar - September 2014 - PPC Success180Fusion
 
Google and 180fusion Webinar September 2014 - Multi-Screen Success
Google and 180fusion Webinar September 2014 - Multi-Screen SuccessGoogle and 180fusion Webinar September 2014 - Multi-Screen Success
Google and 180fusion Webinar September 2014 - Multi-Screen Success180Fusion
 
The Right Ingredients for Building an Effective Customer Profile
The Right Ingredients for Building an Effective Customer ProfileThe Right Ingredients for Building an Effective Customer Profile
The Right Ingredients for Building an Effective Customer ProfileDemandbase
 
Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...
Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...
Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...DesignBloggersConference
 
David Špinar: Story Telling & Cross Device
David Špinar: Story Telling & Cross DeviceDavid Špinar: Story Telling & Cross Device
David Špinar: Story Telling & Cross DeviceH1.cz
 
Наталья Вазиленко
Наталья ВазиленкоНаталья Вазиленко
Наталья Вазиленкоapps4allapps4all
 
OGDC 2014_User segmentation and Monetization_Mr. Phat hoang
OGDC 2014_User segmentation and Monetization_Mr. Phat hoangOGDC 2014_User segmentation and Monetization_Mr. Phat hoang
OGDC 2014_User segmentation and Monetization_Mr. Phat hoangogdc
 
Google-IO-Presentation
Google-IO-PresentationGoogle-IO-Presentation
Google-IO-PresentationLeo Chen
 
From AMP to PWA
From AMP to PWAFrom AMP to PWA
From AMP to PWAIdo Green
 
Ekaterina Shapira, Anna Zhitnyuk, Google
Ekaterina Shapira, Anna Zhitnyuk, GoogleEkaterina Shapira, Anna Zhitnyuk, Google
Ekaterina Shapira, Anna Zhitnyuk, GoogleWhite Nights Conference
 
Focus on (the Right) Content - Oracle Developer Community Day 2017
Focus on (the Right) Content - Oracle Developer Community Day 2017Focus on (the Right) Content - Oracle Developer Community Day 2017
Focus on (the Right) Content - Oracle Developer Community Day 2017Mano Marks
 
180fusion and Google - Tech Trends and the Future of Search
180fusion and Google - Tech Trends and the Future of Search180fusion and Google - Tech Trends and the Future of Search
180fusion and Google - Tech Trends and the Future of Search180Fusion
 
The Lean Startup Engines of Growth with Google's Platforms
The Lean Startup Engines of Growth with Google's PlatformsThe Lean Startup Engines of Growth with Google's Platforms
The Lean Startup Engines of Growth with Google's PlatformsMark Masterson
 

Similar to Making money with android applications (20)

Managing your data: How to move from gathering data to processing and applyin...
Managing your data: How to move from gathering data to processing and applyin...Managing your data: How to move from gathering data to processing and applyin...
Managing your data: How to move from gathering data to processing and applyin...
 
People, process, platform, presented by Adam Singer
People, process, platform, presented by Adam SingerPeople, process, platform, presented by Adam Singer
People, process, platform, presented by Adam Singer
 
Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...
Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...
Telling Better Stories Across the Open Web by Adam Greenberg (Sr. Global Prod...
 
Digital media analytics: web, mobile analytics - Ahmad Abdullah - Google
Digital media analytics: web, mobile analytics - Ahmad Abdullah - GoogleDigital media analytics: web, mobile analytics - Ahmad Abdullah - Google
Digital media analytics: web, mobile analytics - Ahmad Abdullah - Google
 
Taking advantage of mobile display
Taking advantage of mobile displayTaking advantage of mobile display
Taking advantage of mobile display
 
#3月瘋行動 從香港到海外移動平台推廣介紹
#3月瘋行動 從香港到海外移動平台推廣介紹 #3月瘋行動 從香港到海外移動平台推廣介紹
#3月瘋行動 從香港到海外移動平台推廣介紹
 
Google and 180fusion Webinar - September 2014 - PPC Success
Google and 180fusion Webinar - September 2014 - PPC SuccessGoogle and 180fusion Webinar - September 2014 - PPC Success
Google and 180fusion Webinar - September 2014 - PPC Success
 
Google and 180fusion Webinar September 2014 - Multi-Screen Success
Google and 180fusion Webinar September 2014 - Multi-Screen SuccessGoogle and 180fusion Webinar September 2014 - Multi-Screen Success
Google and 180fusion Webinar September 2014 - Multi-Screen Success
 
The Right Ingredients for Building an Effective Customer Profile
The Right Ingredients for Building an Effective Customer ProfileThe Right Ingredients for Building an Effective Customer Profile
The Right Ingredients for Building an Effective Customer Profile
 
Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...
Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...
Google Shares Tips On Increasing Content Monetization Through Engaged Audienc...
 
David Špinar: Story Telling & Cross Device
David Špinar: Story Telling & Cross DeviceDavid Špinar: Story Telling & Cross Device
David Špinar: Story Telling & Cross Device
 
Наталья Вазиленко
Наталья ВазиленкоНаталья Вазиленко
Наталья Вазиленко
 
OGDC 2014_User segmentation and Monetization_Mr. Phat hoang
OGDC 2014_User segmentation and Monetization_Mr. Phat hoangOGDC 2014_User segmentation and Monetization_Mr. Phat hoang
OGDC 2014_User segmentation and Monetization_Mr. Phat hoang
 
Google Business Tools Part 3 of 4
Google Business Tools Part 3 of 4Google Business Tools Part 3 of 4
Google Business Tools Part 3 of 4
 
Google-IO-Presentation
Google-IO-PresentationGoogle-IO-Presentation
Google-IO-Presentation
 
From AMP to PWA
From AMP to PWAFrom AMP to PWA
From AMP to PWA
 
Ekaterina Shapira, Anna Zhitnyuk, Google
Ekaterina Shapira, Anna Zhitnyuk, GoogleEkaterina Shapira, Anna Zhitnyuk, Google
Ekaterina Shapira, Anna Zhitnyuk, Google
 
Focus on (the Right) Content - Oracle Developer Community Day 2017
Focus on (the Right) Content - Oracle Developer Community Day 2017Focus on (the Right) Content - Oracle Developer Community Day 2017
Focus on (the Right) Content - Oracle Developer Community Day 2017
 
180fusion and Google - Tech Trends and the Future of Search
180fusion and Google - Tech Trends and the Future of Search180fusion and Google - Tech Trends and the Future of Search
180fusion and Google - Tech Trends and the Future of Search
 
The Lean Startup Engines of Growth with Google's Platforms
The Lean Startup Engines of Growth with Google's PlatformsThe Lean Startup Engines of Growth with Google's Platforms
The Lean Startup Engines of Growth with Google's Platforms
 

Recently uploaded

Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxBkGupta21
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 

Recently uploaded (20)

Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
unit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptxunit 4 immunoblotting technique complete.pptx
unit 4 immunoblotting technique complete.pptx
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptxA Deep Dive on Passkeys: FIDO Paris Seminar.pptx
A Deep Dive on Passkeys: FIDO Paris Seminar.pptx
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 

Making money with android applications