SlideShare ist ein Scribd-Unternehmen logo
1 von 23
Downloaden Sie, um offline zu lesen
AnDevCon III


App Integration:
 Strategies and
     Tactics
     Copyright © 2012CommonsWare, LLC
Objective: Add Value
●   Add Value for Users
    –   More functionality without as much
        development effort
●   Add Value for Third Parties
    –   Their apps are more valuable when you help
        drive their adoption
●   Add Value for You
    –   Reciprocity from third parties
                       Copyright © 2012CommonsWare, LLC
Integration Models
●   Peers
    –   Apps with value independent of yours
    –   Hard or soft dependencies
●   Plugins
    –   Apps with no value independent of yours




                      Copyright © 2012CommonsWare, LLC
Activities, Implicit Intents
●   Make a Generic Request
    –   ACTION_VIEW, ACTION_SEND, etc.
●   User Dictates Terms
    –   What applications are installed that could handle
        it
    –   What application to use for this particular
        request
    –   What to do with that application
                       Copyright © 2012CommonsWare, LLC
Activities, Implicit Intents
●   Making the Selection
    –   No options? Crash!
    –   One option? Automatic start, no intervention
    –   Multiple options?
         ●   Default chooser
         ● Override chooser (Intent.createChooser())
         ● ShareActionProvider


         ●   DIY
                          Copyright © 2012CommonsWare, LLC
Activities, Implicit Intents
●   DIY
    –   PackageManager
        queryIntentActivities() returns list of
        possibilities, given an Intent
    –   You render resulting List somehow
●   Avoiding the No-Options Crash
    –   Same technique: if list empty,
        startActivity() would fail
                      Copyright © 2012CommonsWare, LLC
Activities, Explicit Intents
●   Hard Dependency, Declared in Code
    –   Craft Intent that will only be handled by peer
        application
    –   Use PackageManager
        queryIntentActivities() to confirm it
        exists (or handle the exception)
    –   Use with startActivity() /
        startActivityForResult()
●   Example: Barcode Scanner (ZXing)
                      Copyright © 2012CommonsWare, LLC
UI Integration via Web
●   No Activity? How About a Web Site?
    –   Easy: launch browser on URL with ACTION_VIEW
    –   More Interesting: Host a WebView
         ●   Pre-fill in forms using
             loadUrl(“javascript:...”)
         ●   Warning #1: May be tough to control
         ●   Warning #2: Dependencies on non-public “APIs”


                          Copyright © 2012CommonsWare, LLC
UI Integration via RemoteViews
●   Two Apps' UIs Simultaneously
●   RemoteViews Host
    –   Get RemoteViews from third-party
         ●   Broadcast? Remote service?
         ●   Initially, plus changes over time
    –   apply() RemoteViews into your desired
        container

                           Copyright © 2012CommonsWare, LLC
UI Integration via RemoteViews
●   Limitations
    –   Widgets, methods available in RemoteViews
         ●   Solution: DIY replacement data structure
    –   No direct interaction between apps
         ●   Solution: API accessed via PendingIntents




                          Copyright © 2012CommonsWare, LLC
Integrating Resources
●   createPackageContext()
    –   Returns a Context that will resolve resources
        from some other package
    –   Example Use: theme packs
         ●   APK (possibly paid app) with res0urces representing
             theme
         ●   Detect existence using PackageManager
         ●   Use createPackageContext() to retrieve
             resources and apply to your UI
                          Copyright © 2012CommonsWare, LLC
Integrating Code
●   Option #1: createPackageContext()
    –   getClassLoader() will return ClassLoader
        for accessing classes in other APK
         ●   Use CONTEXT_INCLUDE_CODE in
             createPackageContext() call
    –   Use reflection from there (e.g., loadClass())
        to access foreign code


                        Copyright © 2012CommonsWare, LLC
Integrating Code
●   Option #2: DexClassLoader
    –   Given JAR/APK containing dex'd bytecode,
        allows you to load classes just like a regular
        ClassLoader
         ●   Up to you to get the JAR or APK file




                           Copyright © 2012CommonsWare, LLC
Integrating Code
●   WARNING
    –   You might not know where that code came from
         ●   Code injection attacks
    –   Executed code runs with your permissions
         ●   May do things you rather wish they would not
    –   Net: very risky technique



                          Copyright © 2012CommonsWare, LLC
Integration by ContentProvider
●   All You Need is a Uri
    –   And some idea of what the schema is, so you
        know what to do with it
         ●   Example: plugins implementing a standard schema
             that you require
    –   Getting the Uri
         ●   Well-known resource name
         ●   Bootstrap API (e.g., broadcast, remote service)

                           Copyright © 2012CommonsWare, LLC
Integration by ContentProvider
●   The Permission Proxy
    –   Problem: Your app needs too many permissions
         ●   Example: Calendar integration
    –   Solution
         ●   Wrap OS/third-party ContentProvider in one of
             yours, with same schema
         ●   Put that ContentProvider in plugin, to isolate
             permission
         ●   Check signature to ensure only used by you
                          Copyright © 2012CommonsWare, LLC
Integration by Service
●   Command Pattern
    –   Third Party Supplies Intent Structure
         ●   Action string
         ●   Available extras
    –   Call startService() as Needed
         ●   Directly
         ●   Via PendingIntent (e.g., AlarmManager)


                             Copyright © 2012CommonsWare, LLC
Integration by Service
●   Binding Pattern
    –   Agreed-Upon AIDL
         ●   Peer: first mover
         ●   Plugin: host defines
    –   Third Party Implements AIDL Binder
    –   You Bind and Use



                           Copyright © 2012CommonsWare, LLC
Integration by Broadcast
●   Agreed-Upon Action, Ordered vs. Regular
    –   Peer: first mover
    –   Plugin: host defines
●   One Side Broadcast, Other Side Receives
    –   Manifest-registered receiver
    –   registerReceiver()


                       Copyright © 2012CommonsWare, LLC
Discovery Mechanisms
●   Hard-Coded
●   Discovery via Broadcast
    –   Host sends a broadcast periodically (first run,
        package installed, package removed)
    –   Peers/plugins reply with broadcast about
        capabilities



                       Copyright © 2012CommonsWare, LLC
Discovery Mechanisms
●   Discovery via Naming Convention
    –   Plugins go in com.myfirm.myapp.plugin.*
    –   Host uses PackageManager to identify
    –   Further Handshaking
         ●   Well-known resource
         ●   Well-known “narrowcast” via setPackage()



                         Copyright © 2012CommonsWare, LLC
More Stuff to Consider
●   Custom Permissions
    –   Users should get a vote on data sharing
●   Integration Library
    –   JAR to ease third-parties working with your host
●   Documentation
    –   Only way anyone will know what to do
         ●   ...and what you would rather they not do

                          Copyright © 2012CommonsWare, LLC
What the Ecosystem Needs
●   Standards
    –   Community-driven implicit Intent actions
●   Scaffolding
    –   Library projects, templates for creating these
        structures
●   End-User Discovery
    –   How do they know what can integrate?

                       Copyright © 2012CommonsWare, LLC

Weitere ähnliche Inhalte

Ähnlich wie App integration: Strategies and Tactics

Running Code in the Android Stack at ABS 2014
Running Code in the Android Stack at ABS 2014Running Code in the Android Stack at ABS 2014
Running Code in the Android Stack at ABS 2014
Opersys inc.
 

Ähnlich wie App integration: Strategies and Tactics (20)

Integrate Android Apps and Web Apps
Integrate Android Apps and Web AppsIntegrate Android Apps and Web Apps
Integrate Android Apps and Web Apps
 
From Android to the Mobile Web
From Android to the Mobile WebFrom Android to the Mobile Web
From Android to the Mobile Web
 
Securing User Data with SQLCipher
Securing User Data with SQLCipherSecuring User Data with SQLCipher
Securing User Data with SQLCipher
 
Backwards Compatibility: Strategies and Tactics
Backwards Compatibility: Strategies and TacticsBackwards Compatibility: Strategies and Tactics
Backwards Compatibility: Strategies and Tactics
 
What's New in Jelly Bean
What's New in Jelly BeanWhat's New in Jelly Bean
What's New in Jelly Bean
 
X Means Y
X Means YX Means Y
X Means Y
 
Open source Cloud Automation Platform
Open source Cloud Automation PlatformOpen source Cloud Automation Platform
Open source Cloud Automation Platform
 
Android Development: The 20,000-Foot View
Android Development: The 20,000-Foot ViewAndroid Development: The 20,000-Foot View
Android Development: The 20,000-Foot View
 
Introduction to android - SpringPeople
Introduction to android - SpringPeopleIntroduction to android - SpringPeople
Introduction to android - SpringPeople
 
Delegating user tasks in applications
Delegating user tasks in applicationsDelegating user tasks in applications
Delegating user tasks in applications
 
Google app engine
Google app engineGoogle app engine
Google app engine
 
Appium solution artizone
Appium solution   artizoneAppium solution   artizone
Appium solution artizone
 
Android Jump Start
Android Jump StartAndroid Jump Start
Android Jump Start
 
Android workshop material
Android workshop materialAndroid workshop material
Android workshop material
 
IBM Connect2014 JMP106
IBM Connect2014 JMP106IBM Connect2014 JMP106
IBM Connect2014 JMP106
 
Building and managing applications fast for IBM i
Building and managing applications fast for IBM iBuilding and managing applications fast for IBM i
Building and managing applications fast for IBM i
 
Running Code in the Android Stack at ABS 2014
Running Code in the Android Stack at ABS 2014Running Code in the Android Stack at ABS 2014
Running Code in the Android Stack at ABS 2014
 
How to start your open source project
How to start your open source projectHow to start your open source project
How to start your open source project
 
BP207 - Meet the Java Application Server You Already Own – IBM Domino
BP207 - Meet the Java Application Server You Already Own – IBM DominoBP207 - Meet the Java Application Server You Already Own – IBM Domino
BP207 - Meet the Java Application Server You Already Own – IBM Domino
 
Apache DeviceMap - ApacheCon Europe 2014
Apache DeviceMap - ApacheCon Europe 2014Apache DeviceMap - ApacheCon Europe 2014
Apache DeviceMap - ApacheCon Europe 2014
 

Mehr von CommonsWare

Tuning Android Applications (Part One)
Tuning Android Applications (Part One)Tuning Android Applications (Part One)
Tuning Android Applications (Part One)
CommonsWare
 

Mehr von CommonsWare (19)

Getting Android Developers for Your Wearables
Getting Android Developers for Your WearablesGetting Android Developers for Your Wearables
Getting Android Developers for Your Wearables
 
When Microwatts Are Precious: Battery Tips for Wearable Apps
When Microwatts Are Precious: Battery Tips for Wearable AppsWhen Microwatts Are Precious: Battery Tips for Wearable Apps
When Microwatts Are Precious: Battery Tips for Wearable Apps
 
The Action Bar: Front to Back
The Action Bar: Front to BackThe Action Bar: Front to Back
The Action Bar: Front to Back
 
Secondary Screen Support Using DisplayManager
Secondary Screen Support Using DisplayManagerSecondary Screen Support Using DisplayManager
Secondary Screen Support Using DisplayManager
 
Mastering the Master Detail Pattern
Mastering the Master Detail PatternMastering the Master Detail Pattern
Mastering the Master Detail Pattern
 
Not Quite As Painful Threading
Not Quite As Painful ThreadingNot Quite As Painful Threading
Not Quite As Painful Threading
 
Maps V2... And You!
Maps V2... And You!Maps V2... And You!
Maps V2... And You!
 
A Deep Dive Into ViewPager
A Deep Dive Into ViewPagerA Deep Dive Into ViewPager
A Deep Dive Into ViewPager
 
Second-Screen Support in Android 4.2
Second-Screen Support in Android 4.2Second-Screen Support in Android 4.2
Second-Screen Support in Android 4.2
 
The Wonderful World of Wearables
The Wonderful World of WearablesThe Wonderful World of Wearables
The Wonderful World of Wearables
 
Beaming Data to Devices with NFC
Beaming Data to Devices with NFCBeaming Data to Devices with NFC
Beaming Data to Devices with NFC
 
Making Money at Mobile: 60 Business Models
Making Money at Mobile: 60 Business ModelsMaking Money at Mobile: 60 Business Models
Making Money at Mobile: 60 Business Models
 
AppsWorld Keynote
AppsWorld KeynoteAppsWorld Keynote
AppsWorld Keynote
 
Android Hardware That's A Little Bit... Odd
Android Hardware That's A Little Bit... OddAndroid Hardware That's A Little Bit... Odd
Android Hardware That's A Little Bit... Odd
 
Google TV For Fun
Google TV For FunGoogle TV For Fun
Google TV For Fun
 
If I Were Starting Now
If I Were Starting NowIf I Were Starting Now
If I Were Starting Now
 
Tuning Android Applications (Part Deux)
Tuning Android Applications (Part Deux)Tuning Android Applications (Part Deux)
Tuning Android Applications (Part Deux)
 
Tuning Android Applications (Part One)
Tuning Android Applications (Part One)Tuning Android Applications (Part One)
Tuning Android Applications (Part One)
 
Android Library Projects
Android Library ProjectsAndroid Library Projects
Android Library Projects
 

Kürzlich hochgeladen

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
giselly40
 
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
vu2urc
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
Joaquim Jorge
 

Kürzlich hochgeladen (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
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
 
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
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024Tata AIG General Insurance Company - Insurer Innovation Award 2024
Tata AIG General Insurance Company - Insurer Innovation Award 2024
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdfUnderstanding Discord NSFW Servers A Guide for Responsible Users.pdf
Understanding Discord NSFW Servers A Guide for Responsible Users.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
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
 

App integration: Strategies and Tactics

  • 1. AnDevCon III App Integration: Strategies and Tactics Copyright © 2012CommonsWare, LLC
  • 2. Objective: Add Value ● Add Value for Users – More functionality without as much development effort ● Add Value for Third Parties – Their apps are more valuable when you help drive their adoption ● Add Value for You – Reciprocity from third parties Copyright © 2012CommonsWare, LLC
  • 3. Integration Models ● Peers – Apps with value independent of yours – Hard or soft dependencies ● Plugins – Apps with no value independent of yours Copyright © 2012CommonsWare, LLC
  • 4. Activities, Implicit Intents ● Make a Generic Request – ACTION_VIEW, ACTION_SEND, etc. ● User Dictates Terms – What applications are installed that could handle it – What application to use for this particular request – What to do with that application Copyright © 2012CommonsWare, LLC
  • 5. Activities, Implicit Intents ● Making the Selection – No options? Crash! – One option? Automatic start, no intervention – Multiple options? ● Default chooser ● Override chooser (Intent.createChooser()) ● ShareActionProvider ● DIY Copyright © 2012CommonsWare, LLC
  • 6. Activities, Implicit Intents ● DIY – PackageManager queryIntentActivities() returns list of possibilities, given an Intent – You render resulting List somehow ● Avoiding the No-Options Crash – Same technique: if list empty, startActivity() would fail Copyright © 2012CommonsWare, LLC
  • 7. Activities, Explicit Intents ● Hard Dependency, Declared in Code – Craft Intent that will only be handled by peer application – Use PackageManager queryIntentActivities() to confirm it exists (or handle the exception) – Use with startActivity() / startActivityForResult() ● Example: Barcode Scanner (ZXing) Copyright © 2012CommonsWare, LLC
  • 8. UI Integration via Web ● No Activity? How About a Web Site? – Easy: launch browser on URL with ACTION_VIEW – More Interesting: Host a WebView ● Pre-fill in forms using loadUrl(“javascript:...”) ● Warning #1: May be tough to control ● Warning #2: Dependencies on non-public “APIs” Copyright © 2012CommonsWare, LLC
  • 9. UI Integration via RemoteViews ● Two Apps' UIs Simultaneously ● RemoteViews Host – Get RemoteViews from third-party ● Broadcast? Remote service? ● Initially, plus changes over time – apply() RemoteViews into your desired container Copyright © 2012CommonsWare, LLC
  • 10. UI Integration via RemoteViews ● Limitations – Widgets, methods available in RemoteViews ● Solution: DIY replacement data structure – No direct interaction between apps ● Solution: API accessed via PendingIntents Copyright © 2012CommonsWare, LLC
  • 11. Integrating Resources ● createPackageContext() – Returns a Context that will resolve resources from some other package – Example Use: theme packs ● APK (possibly paid app) with res0urces representing theme ● Detect existence using PackageManager ● Use createPackageContext() to retrieve resources and apply to your UI Copyright © 2012CommonsWare, LLC
  • 12. Integrating Code ● Option #1: createPackageContext() – getClassLoader() will return ClassLoader for accessing classes in other APK ● Use CONTEXT_INCLUDE_CODE in createPackageContext() call – Use reflection from there (e.g., loadClass()) to access foreign code Copyright © 2012CommonsWare, LLC
  • 13. Integrating Code ● Option #2: DexClassLoader – Given JAR/APK containing dex'd bytecode, allows you to load classes just like a regular ClassLoader ● Up to you to get the JAR or APK file Copyright © 2012CommonsWare, LLC
  • 14. Integrating Code ● WARNING – You might not know where that code came from ● Code injection attacks – Executed code runs with your permissions ● May do things you rather wish they would not – Net: very risky technique Copyright © 2012CommonsWare, LLC
  • 15. Integration by ContentProvider ● All You Need is a Uri – And some idea of what the schema is, so you know what to do with it ● Example: plugins implementing a standard schema that you require – Getting the Uri ● Well-known resource name ● Bootstrap API (e.g., broadcast, remote service) Copyright © 2012CommonsWare, LLC
  • 16. Integration by ContentProvider ● The Permission Proxy – Problem: Your app needs too many permissions ● Example: Calendar integration – Solution ● Wrap OS/third-party ContentProvider in one of yours, with same schema ● Put that ContentProvider in plugin, to isolate permission ● Check signature to ensure only used by you Copyright © 2012CommonsWare, LLC
  • 17. Integration by Service ● Command Pattern – Third Party Supplies Intent Structure ● Action string ● Available extras – Call startService() as Needed ● Directly ● Via PendingIntent (e.g., AlarmManager) Copyright © 2012CommonsWare, LLC
  • 18. Integration by Service ● Binding Pattern – Agreed-Upon AIDL ● Peer: first mover ● Plugin: host defines – Third Party Implements AIDL Binder – You Bind and Use Copyright © 2012CommonsWare, LLC
  • 19. Integration by Broadcast ● Agreed-Upon Action, Ordered vs. Regular – Peer: first mover – Plugin: host defines ● One Side Broadcast, Other Side Receives – Manifest-registered receiver – registerReceiver() Copyright © 2012CommonsWare, LLC
  • 20. Discovery Mechanisms ● Hard-Coded ● Discovery via Broadcast – Host sends a broadcast periodically (first run, package installed, package removed) – Peers/plugins reply with broadcast about capabilities Copyright © 2012CommonsWare, LLC
  • 21. Discovery Mechanisms ● Discovery via Naming Convention – Plugins go in com.myfirm.myapp.plugin.* – Host uses PackageManager to identify – Further Handshaking ● Well-known resource ● Well-known “narrowcast” via setPackage() Copyright © 2012CommonsWare, LLC
  • 22. More Stuff to Consider ● Custom Permissions – Users should get a vote on data sharing ● Integration Library – JAR to ease third-parties working with your host ● Documentation – Only way anyone will know what to do ● ...and what you would rather they not do Copyright © 2012CommonsWare, LLC
  • 23. What the Ecosystem Needs ● Standards – Community-driven implicit Intent actions ● Scaffolding – Library projects, templates for creating these structures ● End-User Discovery – How do they know what can integrate? Copyright © 2012CommonsWare, LLC