SlideShare a Scribd company logo
1 of 61
Download to read offline
Embedded Android
     Workshop
Part 4 - Using and Customizing
    the Android Framework
      Linaro Connect Asia 2013

         Karim Yaghmour
         @karimyaghmour

                                 1
These slides are made available to you under a Creative Commons          Delivered and/or customized by
Share-Alike 3.0 license. The full terms of this license are here:
https://creativecommons.org/licenses/by-sa/3.0/


Attribution requirements and misc., PLEASE READ:
●   This slide must remain as-is in this specific location (slide #2),
    everything else you are free to change; including the logo :-)
●   Use of figures in other documents must feature the below
    β€œOriginals at” URL immediately under that figure and the below
    copyright notice where appropriate.
●   You are free to fill in the β€œDelivered and/or customized by” space
    on the right as you see fit.
●   You are FORBIDEN from using the default β€œAbout” slide as-is or
    any of its contents.


(C) Copyright 2010-2013, Opersys inc.
These slides created by: Karim Yaghmour
Originals at: www.opersys.com/community/docs
                                                                                  2
About
●   Author of:




●   Introduced Linux Trace Toolkit in 1999
●   Originated Adeos and relayfs (kernel/relay.c)
●   Training, Custom Dev, Consulting, ...
                                              3
1. Kickstarting the Framework
●   Core building blocks
●   System services
●   Boot animation
●   Dex optimization
●   Apps startup




                               4
1.1. Core building blocks
●   Service manager
●   Dalvik
●   Android runtime
●   Zygote




                                5
1.2. System services




                       6
1.3. Boot animation
●   Default boot animation
●   bootanimation.zip
●   setprop debug.sf.nobootanimation 1




                                         7
1.4. Dex optimization
●
    Files:
    ●   .jar
    ●   .apk
●
    Directories:
    ●   BOOTCLASSPATH
    ●   /system/etc/permission/platform.xml
    ●   /system/framework
    ●   /system/app
    ●   /vendor/app
    ●   /data/app
    ●   /data/app-private



                                              8
1.5. Apps startup
●   Input methods
●   Persistent apps
●   Home screen
●   BOOT_COMPLETED intent
●   APPWIDGET_UPDATE intent




                                  9
2. Utilities and Commands
●   General-purpose commands
    ●   services
    ●   dumpsys
    ●   dumpstate
    ●   rawbu
●   Service-specific utilities
    ●   am
    ●   pm
    ●   svc


                                    10
●   ime
    ●   input
    ●   monkey
    ●   bmgr
    ●   stagefright
●   Dalvik utilities
    ●   dalvikvm
    ●   dvz
    ●   dexdump


                       11
3. Native daemons
●   servicemanager
●   installd
●   vold
●   netd
●   rild
●   keystore



                                   12
3.1. servicemanager
●   In aosp:
    ●   /frameworks/base/cmds/servicemanager/
●   In filesystem:
    ●   /system/bin/
●   Provides:
    ●   Context management for binder
    ●   Service index for entire system



                                           13
3.2. installd
●   In aosp:
    ●   /frameworks/base/cmds/installd
●   In filesystem:
    ●   /system/bin/
●   Provides:
    ●   Package install/uninstall
    ●   Sanity checks and verifications
    ●   Interfaces with Package Manager service

                                             14
3.3. vold
●   In aosp:
    ●   /system/vold/
●   In filesystem:
    ●   /system/bin/
●   Provides:
    ●   Volume mounter
    ●   Auto-mount
    ●   Auto-format mounted devices

                                      15
3.4. netd
●   In aosp:
    ●   /system/netd/
●   In filesystem:
    ●   /system/bin/
●   Provides:
    ●   Management of aspects of networking
    ●   Interfaces with Network Management service



                                              16
3.5. rild
●   In aosp:
    ●   /hardware/ril/mock-ril/
●   In filesystem:
    ●   /system/bin/
●   Provides:
    ●   β€œRadio Interface Layer” to phone hardware




                                              17
3.6. keystore
●   In aosp:
    ●   frameworks/base/cmds/keystore/
●   In filesystem:
    ●   /system/bin
●   Provides:
    ●   Store key-value pairs
    ●   Security keys for connecting to network infrastructure



                                                18
4. System Services Internals
●   Services run by System Server
●   Observing the System Server
●   Calling on system services
●   Inside a few system services
●   Creating your own system service




                                       19
4.1. Services run by the System
                   Server
Entropy Service            Device Policy               Audio Service
Power Manager              Status Bar                  Headset Observer
Activity Manager           Clipboard Service           Dock Observer
Telephone Registry         Input Method Service        UI Mode Manager Service
Package Manager            NetStat Service             Backup Service
Account Manager            NetworkManagement Service   AppWidget Service
Content Manager            Connectivity Service        Recognition Service
System Content Providers   Throttle Service            Status Bar Icons
Battery Service            Accessibility Manager       DiskStats Service
Lights Service             Mount Service               ADB Settings Observer
Vibrator Service           Notification Manager
Alarm Manager              Device Storage Monitor
Init Watchdog              Location Manager
Sensor Service             Search Service
Window Manager             DropBox Service
Bluetooth Service          Wallpaper Service


                                                             20
4.1.1. Some stats
●   frameworks/base/services/java/com/android/ser
    ver:
    ●   3.5 M
    ●   ~100 files
    ●   85 kloc
●   Activity manager:
    ●   920K
    ●   30+ files
    ●   20 kloc
                                        21
4.2. Observing the System Server
●   Logcat
●   dumpsys




                             22
4.2.1. logcat
 ●
     Find the System Server's PID
          $ adb shell ps | grep system_server
          system 63 32 120160 35408 ffffffff afd0c738 S system_server
 ●   Look for its output:
          $ adb logcat | grep β€œ63)”
...
D/PowerManagerService( 63): bootCompleted
I/TelephonyRegistry( 63): notifyServiceState: 0 home Android Android 310260 UMTS CSS not supp...
I/TelephonyRegistry( 63): notifyDataConnection: state=0 isDataConnectivityPossible=false reason=null
interfaceName=null networkType=3
I/SearchManagerService( 63): Building list of searchable activities
I/WifiService( 63): WifiService trying to setNumAllowed to 11 with persist set to true
I/ActivityManager( 63): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/2 nav=3/1 ...
I/TelephonyRegistry( 63): notifyMessageWaitingChanged: false
I/TelephonyRegistry( 63): notifyCallForwardingChanged: false
I/TelephonyRegistry( 63): notifyDataConnection: state=1 isDataConnectivityPossible=true reason=simL...
I/TelephonyRegistry( 63): notifyDataConnection: state=2 isDataConnectivityPossible=true reason=simL...
D/Tethering( 63): MasterInitialState.processMessage what=3
I/ActivityManager( 63): Start proc android.process.media for broadcast
com.android.providers.downloads/.DownloadReceiver: pid=223 uid=10002 gids={1015, 2001, 3003}
I/RecoverySystem( 63): No recovery log file
W/WindowManager( 63): App freeze timeout expired.
...

                                                                                            23
4.2.2. dumpsys
Currently running services:
  SurfaceFlinger
  accessibility
  account
  activity
  alarm
  appwidget
  audio
  backup
...
  wifi
  window
-------------------------------------------------------------------------------
DUMP OF SERVICE SurfaceFlinger:
+ Layer 0x396b90
     z= 21000, pos=( 0, 0), size=( 480, 800), needsBlending=1, needsDithering=1, invalidat ...
0]
     name=com.android.launcher/com.android.launcher2.Launcher
     client=0x391e48, identity=6
     [ head= 1, available= 2, queued= 0 ] reallocMask=00000000, inUse=-1, identity=6, status=0
     format= 1, [480x800:480] [480x800:480], freezeLock=0x0, dq-q-time=53756 us
...


                                                                             24
4.3. Calling on System Services
●   Use getSystemService
●   Ex: NotificationManager Object reference:
     String ns = Context.NOTIFICATION_SERVICE;
     NotificationManager mNotificationManager = (NotificationManager) 
     getSystemService(ns);

●   Prepare your content
●   Call on the object:
     mNotificationManager.notify(HELLO_ID, notification);




                                                            25
4.4. Inside a few System Services
●   Get the AOSP ... repo, etc.
●   Tricks:
    ●   Import into Eclipse and collapse methods
    ●   Use reverse-engineering tools:
        –   Imagix
        –   Rationale
        –   Lattix
        –   Scitools
        –   ...
●   Be patient, this isn't documented anywhere ...
                                               26
4.4.1. ActivityManager
●   Start new Activities, Services
●   Fetch Content Providers
●   Intent broadcasting
●   OOM adj. maintenance
●   Application Not Responding
●   Permissions
●   Task management
●   Lifecycle management
                                     27
●   Ex. starting new app from Launcher:
      ●   onClick(Launcher)
      ●   startActivity(Activity.java)
      ●   <Binder>
      ●   ActivityManagerService
      ●   startViaZygote(Process.java)
      ●   <Socket>
      ●   Zygote


                                          28
4.4.2. Package Manager
●   10 kloc
●   450 K
●   Installation / removal
●   Permissions
●   Intent resolution (also IntentResolver.java)
●   Called by Activity Manager



                                          29
4.4.3. Window Manager
●   Main thread
●   Window manipulation
●   Wallpaper handling
●   Orientation
●   Focus
●   Layering
●   Input event management

                               30
4.4.4. Notification Manager
●   Toasts
●   Notifications
●   Sound playback (see NotificationPlayer.java)




                                        31
4.4.5. Power Manager
●   Wakelocks
●   Sleep
●   Brightness
●   Lock




                               32
4.4.6. Network Management Service
●   Talks to β€œnetd” /system/netd
●   Interface configuration
●   Tethering
●   DNS




                                   33
4.4.7. Mount Service
●   Mount / Unmount
●   Format
●   USB mass storage
●   OBB




                                    34
4.4.8. Location Manager
●   Manage location providers
●   getBestProvider()
●   Proximity alerts
●   Last known location




                                35
4.4.9. Status Bar Manager
●   Expand / collapse
●   Icon visibility
●   Reveal callbacks
●   Callbacks for notification manager




                                         36
4.4.10. Backup Manager
●   Enable / disable
●   Transport management
●   backupNow()
●   ...




                              37
4.5. Creating your own System
                    Service
●   Add your code to:
    frameworks/base/services/java/com/android/server/
●   Have the SystemServer.java init+reg. your service
●   Define hardware API for apps
●   Expose through:
    ●   frameworks/base/core/java/android/os/[server].aidl
●   Call on native β€œdriver” code through JNI
●   Implement or connect to appropriate driver
●   Create an app that calls on service
●   May need to create new SDK ...
                                                       38
4.5.1. OpersysService.java
package com.android.server;

import   android.content.Context;
import   android.os.Handler;
import   android.os.IOpersysService;
import   android.os.Looper;
import   android.os.Message;
import   android.os.Process;
import   android.util.Log;

public class OpersysService extends IOpersysService.Stub {
    private static final String TAG = "OpersysService";
    private OpersysWorkerThread mWorker;
    private OpersysWorkerHandler mHandler;
    private Context mContext;

   public OpersysService(Context context) {
       super();
       mContext = context;
       mWorker = new OpersysWorkerThread("OpersysServiceWorker");
       mWorker.start();
       Log.i(TAG, "Spawned worker thread");
   }

   public void setValue(int val) {
       Log.i(TAG, "setValue " + val);
       Message msg = Message.obtain();
       msg.what = OpersysWorkerHandler.MESSAGE_SET;
       msg.arg1 = val;
       mHandler.sendMessage(msg);                                   39
   }
private class OpersysWorkerThread extends Thread{
    public OpersysWorkerThread(String name) {
        super(name);
    }

    public void run() {
        Looper.prepare();
        mHandler = new OpersysWorkerHandler();
        Looper.loop();
        }
    }

    private class OpersysWorkerHandler extends Handler {
    private static final int MESSAGE_SET = 0;

    @Override
    public void handleMessage(Message msg) {
        try {
        if (msg.what == MESSAGE_SET) {
            Log.i(TAG, "set message received: " + msg.arg1);
            }
        }
        catch (Exception e) {
        // Log, don't crash!
        Log.e(TAG, "Exception in OpersysWorkerHandler.handleMessage:", e);
            }
        }
    }
}                                                                  40
4.5.2. IOpersysService.aidl

package android.os;
interface IOpersysService {
/**
* {@hide}
*/
void setValue(int val);
}


                              41
4.5.3. frameworks/base/Android.mk



...
      core/java/android/os/IPowerManager.aidl 
      core/java/android/os/IOpersysService.aidl 
      core/java/android/os/IRemoteCallback.aidl 
...



                                        42
4.5.4. SystemServer.java

                      Should eventually be Context.OPERSYS_SERVICE


...
       try {
          Slog.i(TAG, "Opersys Service");
          ServiceManager.addService(β€œopersys”, new OpersysService(context));
      } catch (Throwable e) {
          Slog.e(TAG, "Failure starting OpersysService Service", e);
      }
...




                                                            43
4.5.5. HelloServer.java
package com.opersys.helloserver;

import   android.app.Activity;
import   android.os.Bundle;
import   android.os.ServiceManager;
import   android.os.IOpersysService;
import   android.util.Log;

public class HelloServer extends Activity {
    private static final String DTAG = "HelloServer";

   /** Called when the activity is first created. */
   @Override
   public void onCreate(Bundle savedInstanceState) {
       super.onCreate(savedInstanceState);
       setContentView(R.layout.main);

        IOpersysService om =
IOpersysService.Stub.asInterface(ServiceManager.getService("opersys"));
        try {
        Log.d(DTAG, "Going to call service");
        om.setValue(20);
        Log.d(DTAG, "Service called succesfully");
        }
        catch (Exception e) {
        Log.d(DTAG, "FAILED to call service");
        e.printStackTrace();
        }
    }                                                              44
}
5. Hardware Abstraction Layer
                             /frameworks/base/core/...


                             /frameworks/base/services/java/...
AOSP-provided
    ASL
                             /frameworks/base/services/jni/


                             /hardware/libhardware/

                             /device/[MANUF.]/[DEVICE]
Manuf.-provided              /sdk/emulator/
Manuf. license
                             Kernel or module
Manuf.-provided
 GPL-license


                                       45
●   [aosp]/hardware/libhardware/include/hardware
    ●   gps.h
    ●   lights.h
    ●   sensors.h
●   [aosp]/hardware/ril/include/telephony/
    ●   ril.h
●   Examples in [aosp]/device/samsung/crespo/
    ●   libaudio
    ●   libcamera
    ●   liblight
    ●   libsensors
●   Using JNI to call C functions
                                                   46
6. Android Framework
●   Location and components
●   android.*
●   Customization




                              47
6.1. Location and components
●   [aosp]/frameworks/base
    ●
        /cmds        => native cmds and daemons
    ●   /core        => android.* and com.android.*
    ●   /data        => Fonts and sounds
    ●   /graphics    => 2D & Renderscript
    ●
        /include     => β€œC” includes
    ●
        /keystore    => security key store
    ●   /libs        => β€œC” libraries
    ●   /location    => Location provider
    ●   /media       => Stagefright, codecs, etc.
    ●   /native      => Native code for some frameworks components
    ●   /obex        => Bluetooth obex
    ●
        /opengl      => GL library and java code
    ●
        /packages    => A few core packages (Status Bar)
    ●   /services    => System server
    ●   /telephony   => Phone related functionality
    ●   /tools       => A few core tools (aapt, aidl, ...)
    ●
        /voip        => RTP & SIP interfaces
    ●
        /vpn         => VPN functionality
    ●   /wifi        => Wifi manager, monitor, etc.

                                                                     48
6.2. android.*



accessibilityservice   content    hardware             pim          speech
accounts               database   inputmethodservice   preference   test
annotation             ddm        net                  provider     text
app                    debug      nfc                  security     util
appwidget              emoji      os                   server       view
bluetooth              gesture    service              webkit       widget




                                                             49
6.3. Customization
●   Extending API
●   Boot screen
●   Status bar
●   Network
●   Preloaded apps
●   Browser bookmarks
●   Email provider customization
●   Themes
                                   50
6.3.1. Extending API – System service
●   frameworks/base/core/java/android/
    ●   app/ContextImpl.java
    ●   content/Context.java
    ●   os/OpersysManager.java




                                         51
6.3.1.1. app/ContextImpl.java
...
import android.os.IOpersysService;
import android.os.OpersysManager;
...
      private DownloadManager mDownloadManager = null;
      private NfcManager mNfcManager = null;
      private OpersysManager mOpersysManager = null;
...
              return getDownloadManager();
         } else if (NFC_SERVICE.equals(name)) {
              return getNfcManager();
         } else if (OPERSYS_SERVICE.equals(name)) {
              return getOpersysManager();
         }
...

                                                         52
private OpersysManager getOpersysManager() {
    synchronized (mSync) {
        if (mOpersysManager == null) {
            IBinder b = ServiceManager.getService(OPERSYS_SERVICE);
            IOpersysService service = IOpersysService.Stub.asInterface(b);
            mOpersysManager = new OpersysManager(service);
        }
    }
    return mOpersysManager;
}




                                                      53
6.3.1.2. content/Context.java
...
      /**
       * Use with {@link #getSystemService} to retrieve a
       * {@link android.nfc.NfcManager} for using NFC.
       *
       * @see #getSystemService
       */
      public static final String NFC_SERVICE = "nfc";

      /** The Opersys service **/
      public static final String OPERSYS_SERVICE = "opersys";
...




                                                      54
6.3.1.3. os/OpersysManager.java
package android.os;

import android.os.IOpersysService

public class OpersysManager
{
    public void setValue(int value)
    {
        try {
            mService.setValue(value);
        } catch (RemoteException e) {
        }
    }

    public OpersysManager(IOpersysService service)
    {
        mService = service;
    }

    IOpersysService mService;
}

                                                     55
6.3.2. Status bar
●   Location:
    ●   frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar
●   Look for:
    ●   mService.setIcon(...)
●   Disable icons with:
    ●   mService.setIconVisibility(β€œ[ICON_NAME]", false);




                                                           56
6.3.3. Network
●   Locations:
    ●   Global static:
        –   frameworks/base/core/res/res/xml/apns.xml
    ●   Device static:
        –   PRODUCT_COPY_FILES := vendor/acme/etc/apns-conf-us.xml:system/etc/apns-conf.xml

    ●   Dynamic:
        –   system/etc/apns-conf.xml
●   Format:
         <apn carrier="T-Mobile US"
              mcc="310"
              mnc="260"
              apn=" wap.voicestream.com"
              user="none"
              server="*"
              password="none"
              proxy=" 216.155.165.50"
              port="8080"
              mmsc="http://216.155.174.84/servlets/mms"
         />

                                                                                              57
6.3.4. Browser bookmarks
●   See packages/apps/Browser/res/values/strings.xml
       <!-- Bookmarks -->
       <string-array name="bookmarks">
           <item>Google</item>
           <item>http://www.google.com/</item>
           <item>Yahoo!</item>
           <item>http://www.yahoo.com/</item>
           <item>MSN</item>
           <item>http://www.msn.com/</item>
           <item>MySpace</item>
           <item>http://www.myspace.com/</item>
       ...

                                                  58
6.3.5. Email provider customization
●   See packages/apps/Email/res/xml/providers.xml
       <!-- Gmail variants -->
           <provider id="gmail" label="Gmail" domain="gmail.com">
              <incoming uri="imap+ssl+://imap.gmail.com" username="$email"/>
              <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email"/>
           </provider>
           <provider id="googlemail" label="Google Mail" domain="googlemail.com">
              <incoming uri="imap+ssl+://imap.googlemail.com" username="$email"/>
              <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email"/>
           </provider>
       ...
           <!-- Common US providers -->

             <provider id="aim" label="AIM" domain="aim.com">
               <incoming uri="imap://imap.aim.com" label="IMAP" username="$email"/>
               <outgoing uri="smtp://smtp.aim.com:587" username="$email"/>
             </provider>
             <provider id="aol" label="AOL" domain="aol.com">
               <incoming uri="imap://imap.aol.com" label="IMAP" username="$email"/>
               <outgoing uri="smtp://smtp.aol.com:587" username="$email"/>
             </provider>
       ...

                                                                                      59
6.3.6. Themes
●   See
    framework/base/core/res/res/values/styles.xml




                                        60
Thank you ...


karim.yaghmour@opersys.com




                         61

More Related Content

What's hot

Android internals By Rajesh Khetan
Android internals By Rajesh KhetanAndroid internals By Rajesh Khetan
Android internals By Rajesh KhetanRajesh Khetan
Β 
Embedded Android : System Development - Part II (Linux device drivers)
Embedded Android : System Development - Part II (Linux device drivers)Embedded Android : System Development - Part II (Linux device drivers)
Embedded Android : System Development - Part II (Linux device drivers)Emertxe Information Technologies Pvt Ltd
Β 
Android booting sequece and setup and debugging
Android booting sequece and setup and debuggingAndroid booting sequece and setup and debugging
Android booting sequece and setup and debuggingUtkarsh Mankad
Β 
Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013Opersys inc.
Β 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALOpersys inc.
Β 
Android Internals
Android InternalsAndroid Internals
Android InternalsOpersys inc.
Β 
Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with PieOpersys inc.
Β 
Android Binder: Deep Dive
Android Binder: Deep DiveAndroid Binder: Deep Dive
Android Binder: Deep DiveZafar Shahid, PhD
Β 
Embedded Android Workshop
Embedded Android WorkshopEmbedded Android Workshop
Embedded Android WorkshopOpersys inc.
Β 
Automotive android
Automotive androidAutomotive android
Automotive androidGodfrey Nolan
Β 
Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)Emertxe Information Technologies Pvt Ltd
Β 
Embedded Android Workshop with Oreo
Embedded Android Workshop with OreoEmbedded Android Workshop with Oreo
Embedded Android Workshop with OreoOpersys inc.
Β 
Android Treble: Blessing or Trouble?
Android Treble: Blessing or Trouble?Android Treble: Blessing or Trouble?
Android Treble: Blessing or Trouble?Opersys inc.
Β 
Android Boot Time Optimization
Android Boot Time OptimizationAndroid Boot Time Optimization
Android Boot Time OptimizationKan-Ru Chen
Β 
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...ijafrc
Β 
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)Nanik Tolaram
Β 

What's hot (20)

Embedded Android : System Development - Part I
Embedded Android : System Development - Part IEmbedded Android : System Development - Part I
Embedded Android : System Development - Part I
Β 
Embedded Android : System Development - Part II (HAL)
Embedded Android : System Development - Part II (HAL)Embedded Android : System Development - Part II (HAL)
Embedded Android : System Development - Part II (HAL)
Β 
Android internals By Rajesh Khetan
Android internals By Rajesh KhetanAndroid internals By Rajesh Khetan
Android internals By Rajesh Khetan
Β 
Embedded Android : System Development - Part II (Linux device drivers)
Embedded Android : System Development - Part II (Linux device drivers)Embedded Android : System Development - Part II (Linux device drivers)
Embedded Android : System Development - Part II (Linux device drivers)
Β 
Android booting sequece and setup and debugging
Android booting sequece and setup and debuggingAndroid booting sequece and setup and debugging
Android booting sequece and setup and debugging
Β 
Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013Android Internals at Linaro Connect Asia 2013
Android Internals at Linaro Connect Asia 2013
Β 
Embedded Android : System Development - Part IV
Embedded Android : System Development - Part IVEmbedded Android : System Development - Part IV
Embedded Android : System Development - Part IV
Β 
Android's HIDL: Treble in the HAL
Android's HIDL: Treble in the HALAndroid's HIDL: Treble in the HAL
Android's HIDL: Treble in the HAL
Β 
Android Internals
Android InternalsAndroid Internals
Android Internals
Β 
Embedded Android Workshop with Pie
Embedded Android Workshop with PieEmbedded Android Workshop with Pie
Embedded Android Workshop with Pie
Β 
Android Binder: Deep Dive
Android Binder: Deep DiveAndroid Binder: Deep Dive
Android Binder: Deep Dive
Β 
Embedded Android Workshop
Embedded Android WorkshopEmbedded Android Workshop
Embedded Android Workshop
Β 
Automotive android
Automotive androidAutomotive android
Automotive android
Β 
Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)Embedded Android : System Development - Part IV (Android System Services)
Embedded Android : System Development - Part IV (Android System Services)
Β 
Embedded Android Workshop with Oreo
Embedded Android Workshop with OreoEmbedded Android Workshop with Oreo
Embedded Android Workshop with Oreo
Β 
Android Treble: Blessing or Trouble?
Android Treble: Blessing or Trouble?Android Treble: Blessing or Trouble?
Android Treble: Blessing or Trouble?
Β 
Android Boot Time Optimization
Android Boot Time OptimizationAndroid Boot Time Optimization
Android Boot Time Optimization
Β 
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Customizing AOSP For Different Embedded Devices And Integration at Applicatio...
Β 
Explore Android Internals
Explore Android InternalsExplore Android Internals
Explore Android Internals
Β 
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
"Learning AOSP" - Android Hardware Abstraction Layer (HAL)
Β 

Viewers also liked

Android crash debugging
Android crash debuggingAndroid crash debugging
Android crash debuggingAshish Agrawal
Β 
Working with the AOSP - Linaro Connect Asia 2013
Working with the AOSP - Linaro Connect Asia 2013Working with the AOSP - Linaro Connect Asia 2013
Working with the AOSP - Linaro Connect Asia 2013Opersys inc.
Β 
Android Debug
Android DebugAndroid Debug
Android DebugMike Wolfson
Β 
Android Crash analysis and The Dalvik Garbage collector – Tools and Tips
Android Crash analysis and The Dalvik Garbage collector – Tools and TipsAndroid Crash analysis and The Dalvik Garbage collector – Tools and Tips
Android Crash analysis and The Dalvik Garbage collector – Tools and TipsDroidConTLV
Β 
ADB(Android Debug Bridge): How it works?
ADB(Android Debug Bridge): How it works?ADB(Android Debug Bridge): How it works?
ADB(Android Debug Bridge): How it works?Tetsuyuki Kobayashi
Β 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with NougatOpersys inc.
Β 
Embedded Android Workshop
Embedded Android WorkshopEmbedded Android Workshop
Embedded Android WorkshopOpersys inc.
Β 
Android - ADB
Android - ADBAndroid - ADB
Android - ADBYossi Gruner
Β 
Android Variants, Hacks, Tricks and Resources
Android Variants, Hacks, Tricks and ResourcesAndroid Variants, Hacks, Tricks and Resources
Android Variants, Hacks, Tricks and ResourcesOpersys inc.
Β 
Android CTS training
Android CTS trainingAndroid CTS training
Android CTS trainingjtbuaa
Β 
Samsung Android Crash & Performance Analysis
Samsung Android Crash & Performance AnalysisSamsung Android Crash & Performance Analysis
Samsung Android Crash & Performance AnalysisApteligent
Β 
Did your mobile app crash successfully?
Did your mobile app crash successfully?Did your mobile app crash successfully?
Did your mobile app crash successfully?Alex Cristea
Β 
Enhancing and modifying_the_core_android_os
Enhancing and modifying_the_core_android_osEnhancing and modifying_the_core_android_os
Enhancing and modifying_the_core_android_osArnav Gupta
Β 
Urqa - Android Crash Report
Urqa - Android Crash ReportUrqa - Android Crash Report
Urqa - Android Crash ReportHakbeom Hwang
Β 
Extending Android with New Devices
Extending Android with New DevicesExtending Android with New Devices
Extending Android with New DevicesShree Kumar
Β 
Droidcon 2013 France - Android Platform Anatomy
Droidcon 2013 France - Android Platform AnatomyDroidcon 2013 France - Android Platform Anatomy
Droidcon 2013 France - Android Platform AnatomyBenjamin Zores
Β 
Is Android the New Embedded Linux? at AnDevCon VI
Is Android the New Embedded Linux? at AnDevCon VIIs Android the New Embedded Linux? at AnDevCon VI
Is Android the New Embedded Linux? at AnDevCon VIOpersys inc.
Β 
iOS Mobile App crash - Analysis
iOS Mobile App crash - Analysis iOS Mobile App crash - Analysis
iOS Mobile App crash - Analysis Murali krishna
Β 
Embedded Android Workshop at ELC Europe
Embedded Android Workshop at ELC EuropeEmbedded Android Workshop at ELC Europe
Embedded Android Workshop at ELC EuropeOpersys inc.
Β 
Android Crash Course lunch and learn (1 of 2)
Android Crash Course lunch and learn (1 of 2)Android Crash Course lunch and learn (1 of 2)
Android Crash Course lunch and learn (1 of 2)feature[23]
Β 

Viewers also liked (20)

Android crash debugging
Android crash debuggingAndroid crash debugging
Android crash debugging
Β 
Working with the AOSP - Linaro Connect Asia 2013
Working with the AOSP - Linaro Connect Asia 2013Working with the AOSP - Linaro Connect Asia 2013
Working with the AOSP - Linaro Connect Asia 2013
Β 
Android Debug
Android DebugAndroid Debug
Android Debug
Β 
Android Crash analysis and The Dalvik Garbage collector – Tools and Tips
Android Crash analysis and The Dalvik Garbage collector – Tools and TipsAndroid Crash analysis and The Dalvik Garbage collector – Tools and Tips
Android Crash analysis and The Dalvik Garbage collector – Tools and Tips
Β 
ADB(Android Debug Bridge): How it works?
ADB(Android Debug Bridge): How it works?ADB(Android Debug Bridge): How it works?
ADB(Android Debug Bridge): How it works?
Β 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with Nougat
Β 
Embedded Android Workshop
Embedded Android WorkshopEmbedded Android Workshop
Embedded Android Workshop
Β 
Android - ADB
Android - ADBAndroid - ADB
Android - ADB
Β 
Android Variants, Hacks, Tricks and Resources
Android Variants, Hacks, Tricks and ResourcesAndroid Variants, Hacks, Tricks and Resources
Android Variants, Hacks, Tricks and Resources
Β 
Android CTS training
Android CTS trainingAndroid CTS training
Android CTS training
Β 
Samsung Android Crash & Performance Analysis
Samsung Android Crash & Performance AnalysisSamsung Android Crash & Performance Analysis
Samsung Android Crash & Performance Analysis
Β 
Did your mobile app crash successfully?
Did your mobile app crash successfully?Did your mobile app crash successfully?
Did your mobile app crash successfully?
Β 
Enhancing and modifying_the_core_android_os
Enhancing and modifying_the_core_android_osEnhancing and modifying_the_core_android_os
Enhancing and modifying_the_core_android_os
Β 
Urqa - Android Crash Report
Urqa - Android Crash ReportUrqa - Android Crash Report
Urqa - Android Crash Report
Β 
Extending Android with New Devices
Extending Android with New DevicesExtending Android with New Devices
Extending Android with New Devices
Β 
Droidcon 2013 France - Android Platform Anatomy
Droidcon 2013 France - Android Platform AnatomyDroidcon 2013 France - Android Platform Anatomy
Droidcon 2013 France - Android Platform Anatomy
Β 
Is Android the New Embedded Linux? at AnDevCon VI
Is Android the New Embedded Linux? at AnDevCon VIIs Android the New Embedded Linux? at AnDevCon VI
Is Android the New Embedded Linux? at AnDevCon VI
Β 
iOS Mobile App crash - Analysis
iOS Mobile App crash - Analysis iOS Mobile App crash - Analysis
iOS Mobile App crash - Analysis
Β 
Embedded Android Workshop at ELC Europe
Embedded Android Workshop at ELC EuropeEmbedded Android Workshop at ELC Europe
Embedded Android Workshop at ELC Europe
Β 
Android Crash Course lunch and learn (1 of 2)
Android Crash Course lunch and learn (1 of 2)Android Crash Course lunch and learn (1 of 2)
Android Crash Course lunch and learn (1 of 2)
Β 

Similar to Using and Customizing the Android Framework / part 4 of Embedded Android Workshop at Linaro Connect Asia 2013

Inside Android's UI / ABS 2013
Inside Android's UI / ABS 2013Inside Android's UI / ABS 2013
Inside Android's UI / ABS 2013Opersys inc.
Β 
Inside Android's UI
Inside Android's UIInside Android's UI
Inside Android's UIOpersys inc.
Β 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux DevelopersOpersys inc.
Β 
Unmanned Aerial Vehicles: Exploit Automation with the Metasploit Framework
Unmanned Aerial Vehicles: Exploit Automation with the Metasploit FrameworkUnmanned Aerial Vehicles: Exploit Automation with the Metasploit Framework
Unmanned Aerial Vehicles: Exploit Automation with the Metasploit Frameworkegypt
Β 
Crash dump analysis - experience sharing
Crash dump analysis - experience sharingCrash dump analysis - experience sharing
Crash dump analysis - experience sharingJames Hsieh
Β 
Leveraging Android's Linux Heritage at AnDevCon3
Leveraging Android's Linux Heritage at AnDevCon3Leveraging Android's Linux Heritage at AnDevCon3
Leveraging Android's Linux Heritage at AnDevCon3Opersys inc.
Β 
Headless Android at AnDevCon3
Headless Android at AnDevCon3Headless Android at AnDevCon3
Headless Android at AnDevCon3Opersys inc.
Β 
Inside Android's UI at AnDevCon VI
Inside Android's UI at AnDevCon VIInside Android's UI at AnDevCon VI
Inside Android's UI at AnDevCon VIOpersys inc.
Β 
A165 tools for java and javascript
A165 tools for java and javascriptA165 tools for java and javascript
A165 tools for java and javascriptToby Corbin
Β 
Inside Android's UI at AnDevCon V
Inside Android's UI at AnDevCon VInside Android's UI at AnDevCon V
Inside Android's UI at AnDevCon VOpersys inc.
Β 
Was faqs
Was faqsWas faqs
Was faqssruthilaya
Β 
Platform - Technical architecture
Platform - Technical architecturePlatform - Technical architecture
Platform - Technical architectureDavid Rundle
Β 
OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...
OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...
OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...Paris Open Source Summit
Β 
Leveraging Android's Linux Heritage
Leveraging Android's Linux HeritageLeveraging Android's Linux Heritage
Leveraging Android's Linux HeritageOpersys inc.
Β 
Android Security, From the Ground Up
Android Security, From the Ground UpAndroid Security, From the Ground Up
Android Security, From the Ground UpOpersys inc.
Β 
PyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsPyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsGraham Dumpleton
Β 
Extending Android's Platform Toolsuite
Extending Android's Platform ToolsuiteExtending Android's Platform Toolsuite
Extending Android's Platform ToolsuiteOpersys inc.
Β 
Android Platform Debugging & Development
Android Platform Debugging & Development Android Platform Debugging & Development
Android Platform Debugging & Development Qualcomm Developer Network
Β 

Similar to Using and Customizing the Android Framework / part 4 of Embedded Android Workshop at Linaro Connect Asia 2013 (20)

Inside Android's UI / ABS 2013
Inside Android's UI / ABS 2013Inside Android's UI / ABS 2013
Inside Android's UI / ABS 2013
Β 
Inside Android's UI
Inside Android's UIInside Android's UI
Inside Android's UI
Β 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
Β 
Unmanned Aerial Vehicles: Exploit Automation with the Metasploit Framework
Unmanned Aerial Vehicles: Exploit Automation with the Metasploit FrameworkUnmanned Aerial Vehicles: Exploit Automation with the Metasploit Framework
Unmanned Aerial Vehicles: Exploit Automation with the Metasploit Framework
Β 
Crash dump analysis - experience sharing
Crash dump analysis - experience sharingCrash dump analysis - experience sharing
Crash dump analysis - experience sharing
Β 
Leveraging Android's Linux Heritage at AnDevCon3
Leveraging Android's Linux Heritage at AnDevCon3Leveraging Android's Linux Heritage at AnDevCon3
Leveraging Android's Linux Heritage at AnDevCon3
Β 
Headless Android at AnDevCon3
Headless Android at AnDevCon3Headless Android at AnDevCon3
Headless Android at AnDevCon3
Β 
20120308 droid4me-paug presentation
20120308 droid4me-paug presentation20120308 droid4me-paug presentation
20120308 droid4me-paug presentation
Β 
Inside Android's UI at AnDevCon VI
Inside Android's UI at AnDevCon VIInside Android's UI at AnDevCon VI
Inside Android's UI at AnDevCon VI
Β 
A165 tools for java and javascript
A165 tools for java and javascriptA165 tools for java and javascript
A165 tools for java and javascript
Β 
Inside Android's UI at AnDevCon V
Inside Android's UI at AnDevCon VInside Android's UI at AnDevCon V
Inside Android's UI at AnDevCon V
Β 
Was faqs
Was faqsWas faqs
Was faqs
Β 
Platform - Technical architecture
Platform - Technical architecturePlatform - Technical architecture
Platform - Technical architecture
Β 
OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...
OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...
OWF12/PAUG Conf Days Android tools for developpeurs, paul marois, design and ...
Β 
Leveraging Android's Linux Heritage
Leveraging Android's Linux HeritageLeveraging Android's Linux Heritage
Leveraging Android's Linux Heritage
Β 
Android Security, From the Ground Up
Android Security, From the Ground UpAndroid Security, From the Ground Up
Android Security, From the Ground Up
Β 
Android Attacks
Android AttacksAndroid Attacks
Android Attacks
Β 
PyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web ApplicationsPyCon AU 2012 - Debugging Live Python Web Applications
PyCon AU 2012 - Debugging Live Python Web Applications
Β 
Extending Android's Platform Toolsuite
Extending Android's Platform ToolsuiteExtending Android's Platform Toolsuite
Extending Android's Platform Toolsuite
Β 
Android Platform Debugging & Development
Android Platform Debugging & Development Android Platform Debugging & Development
Android Platform Debugging & Development
Β 

More from Opersys inc.

Android Automotive
Android AutomotiveAndroid Automotive
Android AutomotiveOpersys inc.
Β 
Android 10 Internals Update
Android 10 Internals UpdateAndroid 10 Internals Update
Android 10 Internals UpdateOpersys inc.
Β 
Android Security Internals
Android Security InternalsAndroid Security Internals
Android Security InternalsOpersys inc.
Β 
Scheduling in Android
Scheduling in AndroidScheduling in Android
Scheduling in AndroidOpersys inc.
Β 
Android Things Internals
Android Things InternalsAndroid Things Internals
Android Things InternalsOpersys inc.
Β 
Android Platform Debugging and Development
Android Platform Debugging and DevelopmentAndroid Platform Debugging and Development
Android Platform Debugging and DevelopmentOpersys inc.
Β 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with NougatOpersys inc.
Β 
Android Things: Android for IoT
Android Things: Android for IoTAndroid Things: Android for IoT
Android Things: Android for IoTOpersys inc.
Β 
Android Things Internals
Android Things InternalsAndroid Things Internals
Android Things InternalsOpersys inc.
Β 
Scheduling in Android
Scheduling in AndroidScheduling in Android
Scheduling in AndroidOpersys inc.
Β 
Brillo / Weave Internals
Brillo / Weave InternalsBrillo / Weave Internals
Brillo / Weave InternalsOpersys inc.
Β 
Android Platform Debugging and Development
Android Platform Debugging and DevelopmentAndroid Platform Debugging and Development
Android Platform Debugging and DevelopmentOpersys inc.
Β 
Memory Management in Android
Memory Management in AndroidMemory Management in Android
Memory Management in AndroidOpersys inc.
Β 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with NougatOpersys inc.
Β 
Brillo / Weave Internals
Brillo / Weave InternalsBrillo / Weave Internals
Brillo / Weave InternalsOpersys inc.
Β 
Android Platform Debugging and Development
Android Platform Debugging and DevelopmentAndroid Platform Debugging and Development
Android Platform Debugging and DevelopmentOpersys inc.
Β 
Memory Management in Android
Memory Management in AndroidMemory Management in Android
Memory Management in AndroidOpersys inc.
Β 
Brillo/Weave Internals
Brillo/Weave InternalsBrillo/Weave Internals
Brillo/Weave InternalsOpersys inc.
Β 
Embedded Android Workshop with Marshmallow
Embedded Android Workshop with MarshmallowEmbedded Android Workshop with Marshmallow
Embedded Android Workshop with MarshmallowOpersys inc.
Β 

More from Opersys inc. (20)

Android Automotive
Android AutomotiveAndroid Automotive
Android Automotive
Β 
Android 10 Internals Update
Android 10 Internals UpdateAndroid 10 Internals Update
Android 10 Internals Update
Β 
Android Security Internals
Android Security InternalsAndroid Security Internals
Android Security Internals
Β 
Scheduling in Android
Scheduling in AndroidScheduling in Android
Scheduling in Android
Β 
Android Things Internals
Android Things InternalsAndroid Things Internals
Android Things Internals
Β 
Android Platform Debugging and Development
Android Platform Debugging and DevelopmentAndroid Platform Debugging and Development
Android Platform Debugging and Development
Β 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with Nougat
Β 
Android Things: Android for IoT
Android Things: Android for IoTAndroid Things: Android for IoT
Android Things: Android for IoT
Β 
Android Things Internals
Android Things InternalsAndroid Things Internals
Android Things Internals
Β 
Scheduling in Android
Scheduling in AndroidScheduling in Android
Scheduling in Android
Β 
Brillo / Weave Internals
Brillo / Weave InternalsBrillo / Weave Internals
Brillo / Weave Internals
Β 
Android Platform Debugging and Development
Android Platform Debugging and DevelopmentAndroid Platform Debugging and Development
Android Platform Debugging and Development
Β 
Memory Management in Android
Memory Management in AndroidMemory Management in Android
Memory Management in Android
Β 
Embedded Android Workshop with Nougat
Embedded Android Workshop with NougatEmbedded Android Workshop with Nougat
Embedded Android Workshop with Nougat
Β 
Brillo / Weave Internals
Brillo / Weave InternalsBrillo / Weave Internals
Brillo / Weave Internals
Β 
Project Ara
Project AraProject Ara
Project Ara
Β 
Android Platform Debugging and Development
Android Platform Debugging and DevelopmentAndroid Platform Debugging and Development
Android Platform Debugging and Development
Β 
Memory Management in Android
Memory Management in AndroidMemory Management in Android
Memory Management in Android
Β 
Brillo/Weave Internals
Brillo/Weave InternalsBrillo/Weave Internals
Brillo/Weave Internals
Β 
Embedded Android Workshop with Marshmallow
Embedded Android Workshop with MarshmallowEmbedded Android Workshop with Marshmallow
Embedded Android Workshop with Marshmallow
Β 

Recently uploaded

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
Β 
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
Β 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
Β 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
Β 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
Β 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024The Digital Insurer
Β 
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
Β 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
Β 
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 2024The Digital Insurer
Β 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
Β 
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 Processorsdebabhi2
Β 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsRoshan Dwivedi
Β 
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
Β 
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
Β 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
Β 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
Β 
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 organizationRadu Cotescu
Β 
🐬 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
Β 
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
Β 
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.pdfEnterprise Knowledge
Β 

Recently uploaded (20)

Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Β 
Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101Salesforce Community Group Quito, Salesforce 101
Salesforce Community Group Quito, Salesforce 101
Β 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
Β 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
Β 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
Β 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
Β 
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
Β 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Β 
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
Β 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
Β 
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
Β 
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live StreamsTop 5 Benefits OF Using Muvi Live Paywall For Live Streams
Top 5 Benefits OF Using Muvi Live Paywall For Live Streams
Β 
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
Β 
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
Β 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
Β 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Β 
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
Β 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
Β 
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
Β 
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
Β 

Using and Customizing the Android Framework / part 4 of Embedded Android Workshop at Linaro Connect Asia 2013

  • 1. Embedded Android Workshop Part 4 - Using and Customizing the Android Framework Linaro Connect Asia 2013 Karim Yaghmour @karimyaghmour 1
  • 2. These slides are made available to you under a Creative Commons Delivered and/or customized by Share-Alike 3.0 license. The full terms of this license are here: https://creativecommons.org/licenses/by-sa/3.0/ Attribution requirements and misc., PLEASE READ: ● This slide must remain as-is in this specific location (slide #2), everything else you are free to change; including the logo :-) ● Use of figures in other documents must feature the below β€œOriginals at” URL immediately under that figure and the below copyright notice where appropriate. ● You are free to fill in the β€œDelivered and/or customized by” space on the right as you see fit. ● You are FORBIDEN from using the default β€œAbout” slide as-is or any of its contents. (C) Copyright 2010-2013, Opersys inc. These slides created by: Karim Yaghmour Originals at: www.opersys.com/community/docs 2
  • 3. About ● Author of: ● Introduced Linux Trace Toolkit in 1999 ● Originated Adeos and relayfs (kernel/relay.c) ● Training, Custom Dev, Consulting, ... 3
  • 4. 1. Kickstarting the Framework ● Core building blocks ● System services ● Boot animation ● Dex optimization ● Apps startup 4
  • 5. 1.1. Core building blocks ● Service manager ● Dalvik ● Android runtime ● Zygote 5
  • 7. 1.3. Boot animation ● Default boot animation ● bootanimation.zip ● setprop debug.sf.nobootanimation 1 7
  • 8. 1.4. Dex optimization ● Files: ● .jar ● .apk ● Directories: ● BOOTCLASSPATH ● /system/etc/permission/platform.xml ● /system/framework ● /system/app ● /vendor/app ● /data/app ● /data/app-private 8
  • 9. 1.5. Apps startup ● Input methods ● Persistent apps ● Home screen ● BOOT_COMPLETED intent ● APPWIDGET_UPDATE intent 9
  • 10. 2. Utilities and Commands ● General-purpose commands ● services ● dumpsys ● dumpstate ● rawbu ● Service-specific utilities ● am ● pm ● svc 10
  • 11. ● ime ● input ● monkey ● bmgr ● stagefright ● Dalvik utilities ● dalvikvm ● dvz ● dexdump 11
  • 12. 3. Native daemons ● servicemanager ● installd ● vold ● netd ● rild ● keystore 12
  • 13. 3.1. servicemanager ● In aosp: ● /frameworks/base/cmds/servicemanager/ ● In filesystem: ● /system/bin/ ● Provides: ● Context management for binder ● Service index for entire system 13
  • 14. 3.2. installd ● In aosp: ● /frameworks/base/cmds/installd ● In filesystem: ● /system/bin/ ● Provides: ● Package install/uninstall ● Sanity checks and verifications ● Interfaces with Package Manager service 14
  • 15. 3.3. vold ● In aosp: ● /system/vold/ ● In filesystem: ● /system/bin/ ● Provides: ● Volume mounter ● Auto-mount ● Auto-format mounted devices 15
  • 16. 3.4. netd ● In aosp: ● /system/netd/ ● In filesystem: ● /system/bin/ ● Provides: ● Management of aspects of networking ● Interfaces with Network Management service 16
  • 17. 3.5. rild ● In aosp: ● /hardware/ril/mock-ril/ ● In filesystem: ● /system/bin/ ● Provides: ● β€œRadio Interface Layer” to phone hardware 17
  • 18. 3.6. keystore ● In aosp: ● frameworks/base/cmds/keystore/ ● In filesystem: ● /system/bin ● Provides: ● Store key-value pairs ● Security keys for connecting to network infrastructure 18
  • 19. 4. System Services Internals ● Services run by System Server ● Observing the System Server ● Calling on system services ● Inside a few system services ● Creating your own system service 19
  • 20. 4.1. Services run by the System Server Entropy Service Device Policy Audio Service Power Manager Status Bar Headset Observer Activity Manager Clipboard Service Dock Observer Telephone Registry Input Method Service UI Mode Manager Service Package Manager NetStat Service Backup Service Account Manager NetworkManagement Service AppWidget Service Content Manager Connectivity Service Recognition Service System Content Providers Throttle Service Status Bar Icons Battery Service Accessibility Manager DiskStats Service Lights Service Mount Service ADB Settings Observer Vibrator Service Notification Manager Alarm Manager Device Storage Monitor Init Watchdog Location Manager Sensor Service Search Service Window Manager DropBox Service Bluetooth Service Wallpaper Service 20
  • 21. 4.1.1. Some stats ● frameworks/base/services/java/com/android/ser ver: ● 3.5 M ● ~100 files ● 85 kloc ● Activity manager: ● 920K ● 30+ files ● 20 kloc 21
  • 22. 4.2. Observing the System Server ● Logcat ● dumpsys 22
  • 23. 4.2.1. logcat ● Find the System Server's PID $ adb shell ps | grep system_server system 63 32 120160 35408 ffffffff afd0c738 S system_server ● Look for its output: $ adb logcat | grep β€œ63)” ... D/PowerManagerService( 63): bootCompleted I/TelephonyRegistry( 63): notifyServiceState: 0 home Android Android 310260 UMTS CSS not supp... I/TelephonyRegistry( 63): notifyDataConnection: state=0 isDataConnectivityPossible=false reason=null interfaceName=null networkType=3 I/SearchManagerService( 63): Building list of searchable activities I/WifiService( 63): WifiService trying to setNumAllowed to 11 with persist set to true I/ActivityManager( 63): Config changed: { scale=1.0 imsi=310/260 loc=en_US touch=3 keys=2/1/2 nav=3/1 ... I/TelephonyRegistry( 63): notifyMessageWaitingChanged: false I/TelephonyRegistry( 63): notifyCallForwardingChanged: false I/TelephonyRegistry( 63): notifyDataConnection: state=1 isDataConnectivityPossible=true reason=simL... I/TelephonyRegistry( 63): notifyDataConnection: state=2 isDataConnectivityPossible=true reason=simL... D/Tethering( 63): MasterInitialState.processMessage what=3 I/ActivityManager( 63): Start proc android.process.media for broadcast com.android.providers.downloads/.DownloadReceiver: pid=223 uid=10002 gids={1015, 2001, 3003} I/RecoverySystem( 63): No recovery log file W/WindowManager( 63): App freeze timeout expired. ... 23
  • 24. 4.2.2. dumpsys Currently running services: SurfaceFlinger accessibility account activity alarm appwidget audio backup ... wifi window ------------------------------------------------------------------------------- DUMP OF SERVICE SurfaceFlinger: + Layer 0x396b90 z= 21000, pos=( 0, 0), size=( 480, 800), needsBlending=1, needsDithering=1, invalidat ... 0] name=com.android.launcher/com.android.launcher2.Launcher client=0x391e48, identity=6 [ head= 1, available= 2, queued= 0 ] reallocMask=00000000, inUse=-1, identity=6, status=0 format= 1, [480x800:480] [480x800:480], freezeLock=0x0, dq-q-time=53756 us ... 24
  • 25. 4.3. Calling on System Services ● Use getSystemService ● Ex: NotificationManager Object reference: String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns); ● Prepare your content ● Call on the object: mNotificationManager.notify(HELLO_ID, notification); 25
  • 26. 4.4. Inside a few System Services ● Get the AOSP ... repo, etc. ● Tricks: ● Import into Eclipse and collapse methods ● Use reverse-engineering tools: – Imagix – Rationale – Lattix – Scitools – ... ● Be patient, this isn't documented anywhere ... 26
  • 27. 4.4.1. ActivityManager ● Start new Activities, Services ● Fetch Content Providers ● Intent broadcasting ● OOM adj. maintenance ● Application Not Responding ● Permissions ● Task management ● Lifecycle management 27
  • 28. ● Ex. starting new app from Launcher: ● onClick(Launcher) ● startActivity(Activity.java) ● <Binder> ● ActivityManagerService ● startViaZygote(Process.java) ● <Socket> ● Zygote 28
  • 29. 4.4.2. Package Manager ● 10 kloc ● 450 K ● Installation / removal ● Permissions ● Intent resolution (also IntentResolver.java) ● Called by Activity Manager 29
  • 30. 4.4.3. Window Manager ● Main thread ● Window manipulation ● Wallpaper handling ● Orientation ● Focus ● Layering ● Input event management 30
  • 31. 4.4.4. Notification Manager ● Toasts ● Notifications ● Sound playback (see NotificationPlayer.java) 31
  • 32. 4.4.5. Power Manager ● Wakelocks ● Sleep ● Brightness ● Lock 32
  • 33. 4.4.6. Network Management Service ● Talks to β€œnetd” /system/netd ● Interface configuration ● Tethering ● DNS 33
  • 34. 4.4.7. Mount Service ● Mount / Unmount ● Format ● USB mass storage ● OBB 34
  • 35. 4.4.8. Location Manager ● Manage location providers ● getBestProvider() ● Proximity alerts ● Last known location 35
  • 36. 4.4.9. Status Bar Manager ● Expand / collapse ● Icon visibility ● Reveal callbacks ● Callbacks for notification manager 36
  • 37. 4.4.10. Backup Manager ● Enable / disable ● Transport management ● backupNow() ● ... 37
  • 38. 4.5. Creating your own System Service ● Add your code to: frameworks/base/services/java/com/android/server/ ● Have the SystemServer.java init+reg. your service ● Define hardware API for apps ● Expose through: ● frameworks/base/core/java/android/os/[server].aidl ● Call on native β€œdriver” code through JNI ● Implement or connect to appropriate driver ● Create an app that calls on service ● May need to create new SDK ... 38
  • 39. 4.5.1. OpersysService.java package com.android.server; import android.content.Context; import android.os.Handler; import android.os.IOpersysService; import android.os.Looper; import android.os.Message; import android.os.Process; import android.util.Log; public class OpersysService extends IOpersysService.Stub { private static final String TAG = "OpersysService"; private OpersysWorkerThread mWorker; private OpersysWorkerHandler mHandler; private Context mContext; public OpersysService(Context context) { super(); mContext = context; mWorker = new OpersysWorkerThread("OpersysServiceWorker"); mWorker.start(); Log.i(TAG, "Spawned worker thread"); } public void setValue(int val) { Log.i(TAG, "setValue " + val); Message msg = Message.obtain(); msg.what = OpersysWorkerHandler.MESSAGE_SET; msg.arg1 = val; mHandler.sendMessage(msg); 39 }
  • 40. private class OpersysWorkerThread extends Thread{ public OpersysWorkerThread(String name) { super(name); } public void run() { Looper.prepare(); mHandler = new OpersysWorkerHandler(); Looper.loop(); } } private class OpersysWorkerHandler extends Handler { private static final int MESSAGE_SET = 0; @Override public void handleMessage(Message msg) { try { if (msg.what == MESSAGE_SET) { Log.i(TAG, "set message received: " + msg.arg1); } } catch (Exception e) { // Log, don't crash! Log.e(TAG, "Exception in OpersysWorkerHandler.handleMessage:", e); } } } } 40
  • 41. 4.5.2. IOpersysService.aidl package android.os; interface IOpersysService { /** * {@hide} */ void setValue(int val); } 41
  • 42. 4.5.3. frameworks/base/Android.mk ... core/java/android/os/IPowerManager.aidl core/java/android/os/IOpersysService.aidl core/java/android/os/IRemoteCallback.aidl ... 42
  • 43. 4.5.4. SystemServer.java Should eventually be Context.OPERSYS_SERVICE ... try { Slog.i(TAG, "Opersys Service"); ServiceManager.addService(β€œopersys”, new OpersysService(context)); } catch (Throwable e) { Slog.e(TAG, "Failure starting OpersysService Service", e); } ... 43
  • 44. 4.5.5. HelloServer.java package com.opersys.helloserver; import android.app.Activity; import android.os.Bundle; import android.os.ServiceManager; import android.os.IOpersysService; import android.util.Log; public class HelloServer extends Activity { private static final String DTAG = "HelloServer"; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); IOpersysService om = IOpersysService.Stub.asInterface(ServiceManager.getService("opersys")); try { Log.d(DTAG, "Going to call service"); om.setValue(20); Log.d(DTAG, "Service called succesfully"); } catch (Exception e) { Log.d(DTAG, "FAILED to call service"); e.printStackTrace(); } } 44 }
  • 45. 5. Hardware Abstraction Layer /frameworks/base/core/... /frameworks/base/services/java/... AOSP-provided ASL /frameworks/base/services/jni/ /hardware/libhardware/ /device/[MANUF.]/[DEVICE] Manuf.-provided /sdk/emulator/ Manuf. license Kernel or module Manuf.-provided GPL-license 45
  • 46. ● [aosp]/hardware/libhardware/include/hardware ● gps.h ● lights.h ● sensors.h ● [aosp]/hardware/ril/include/telephony/ ● ril.h ● Examples in [aosp]/device/samsung/crespo/ ● libaudio ● libcamera ● liblight ● libsensors ● Using JNI to call C functions 46
  • 47. 6. Android Framework ● Location and components ● android.* ● Customization 47
  • 48. 6.1. Location and components ● [aosp]/frameworks/base ● /cmds => native cmds and daemons ● /core => android.* and com.android.* ● /data => Fonts and sounds ● /graphics => 2D & Renderscript ● /include => β€œC” includes ● /keystore => security key store ● /libs => β€œC” libraries ● /location => Location provider ● /media => Stagefright, codecs, etc. ● /native => Native code for some frameworks components ● /obex => Bluetooth obex ● /opengl => GL library and java code ● /packages => A few core packages (Status Bar) ● /services => System server ● /telephony => Phone related functionality ● /tools => A few core tools (aapt, aidl, ...) ● /voip => RTP & SIP interfaces ● /vpn => VPN functionality ● /wifi => Wifi manager, monitor, etc. 48
  • 49. 6.2. android.* accessibilityservice content hardware pim speech accounts database inputmethodservice preference test annotation ddm net provider text app debug nfc security util appwidget emoji os server view bluetooth gesture service webkit widget 49
  • 50. 6.3. Customization ● Extending API ● Boot screen ● Status bar ● Network ● Preloaded apps ● Browser bookmarks ● Email provider customization ● Themes 50
  • 51. 6.3.1. Extending API – System service ● frameworks/base/core/java/android/ ● app/ContextImpl.java ● content/Context.java ● os/OpersysManager.java 51
  • 52. 6.3.1.1. app/ContextImpl.java ... import android.os.IOpersysService; import android.os.OpersysManager; ... private DownloadManager mDownloadManager = null; private NfcManager mNfcManager = null; private OpersysManager mOpersysManager = null; ... return getDownloadManager(); } else if (NFC_SERVICE.equals(name)) { return getNfcManager(); } else if (OPERSYS_SERVICE.equals(name)) { return getOpersysManager(); } ... 52
  • 53. private OpersysManager getOpersysManager() { synchronized (mSync) { if (mOpersysManager == null) { IBinder b = ServiceManager.getService(OPERSYS_SERVICE); IOpersysService service = IOpersysService.Stub.asInterface(b); mOpersysManager = new OpersysManager(service); } } return mOpersysManager; } 53
  • 54. 6.3.1.2. content/Context.java ... /** * Use with {@link #getSystemService} to retrieve a * {@link android.nfc.NfcManager} for using NFC. * * @see #getSystemService */ public static final String NFC_SERVICE = "nfc"; /** The Opersys service **/ public static final String OPERSYS_SERVICE = "opersys"; ... 54
  • 55. 6.3.1.3. os/OpersysManager.java package android.os; import android.os.IOpersysService public class OpersysManager { public void setValue(int value) { try { mService.setValue(value); } catch (RemoteException e) { } } public OpersysManager(IOpersysService service) { mService = service; } IOpersysService mService; } 55
  • 56. 6.3.2. Status bar ● Location: ● frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar ● Look for: ● mService.setIcon(...) ● Disable icons with: ● mService.setIconVisibility(β€œ[ICON_NAME]", false); 56
  • 57. 6.3.3. Network ● Locations: ● Global static: – frameworks/base/core/res/res/xml/apns.xml ● Device static: – PRODUCT_COPY_FILES := vendor/acme/etc/apns-conf-us.xml:system/etc/apns-conf.xml ● Dynamic: – system/etc/apns-conf.xml ● Format: <apn carrier="T-Mobile US" mcc="310" mnc="260" apn=" wap.voicestream.com" user="none" server="*" password="none" proxy=" 216.155.165.50" port="8080" mmsc="http://216.155.174.84/servlets/mms" /> 57
  • 58. 6.3.4. Browser bookmarks ● See packages/apps/Browser/res/values/strings.xml <!-- Bookmarks --> <string-array name="bookmarks"> <item>Google</item> <item>http://www.google.com/</item> <item>Yahoo!</item> <item>http://www.yahoo.com/</item> <item>MSN</item> <item>http://www.msn.com/</item> <item>MySpace</item> <item>http://www.myspace.com/</item> ... 58
  • 59. 6.3.5. Email provider customization ● See packages/apps/Email/res/xml/providers.xml <!-- Gmail variants --> <provider id="gmail" label="Gmail" domain="gmail.com"> <incoming uri="imap+ssl+://imap.gmail.com" username="$email"/> <outgoing uri="smtp+ssl+://smtp.gmail.com" username="$email"/> </provider> <provider id="googlemail" label="Google Mail" domain="googlemail.com"> <incoming uri="imap+ssl+://imap.googlemail.com" username="$email"/> <outgoing uri="smtp+ssl+://smtp.googlemail.com" username="$email"/> </provider> ... <!-- Common US providers --> <provider id="aim" label="AIM" domain="aim.com"> <incoming uri="imap://imap.aim.com" label="IMAP" username="$email"/> <outgoing uri="smtp://smtp.aim.com:587" username="$email"/> </provider> <provider id="aol" label="AOL" domain="aol.com"> <incoming uri="imap://imap.aol.com" label="IMAP" username="$email"/> <outgoing uri="smtp://smtp.aol.com:587" username="$email"/> </provider> ... 59
  • 60. 6.3.6. Themes ● See framework/base/core/res/res/values/styles.xml 60