summaryrefslogtreecommitdiffstats
path: root/services/java/com/android/server
diff options
context:
space:
mode:
authorSvet Ganov <svetoslavganov@google.com>2015-04-30 10:38:13 -0700
committerSvetoslav <svetoslavganov@google.com>2015-05-01 13:56:04 -0700
commitb9d71a6f89b1183f6389b1774652445a420c6cbf (patch)
treeb6f17102b2f86b40630e4a7cd681721797a8f324 /services/java/com/android/server
parent9fc943d1a69f2ab0f6d8285b09aef7e344a1fd1a (diff)
downloadframeworks_base-b9d71a6f89b1183f6389b1774652445a420c6cbf.zip
frameworks_base-b9d71a6f89b1183f6389b1774652445a420c6cbf.tar.gz
frameworks_base-b9d71a6f89b1183f6389b1774652445a420c6cbf.tar.bz2
Add body sensors app op - framework base
Change-Id: Idd5cd573fab3405e5b2a6e51d2d9d115650826e9
Diffstat (limited to 'services/java/com/android/server')
-rw-r--r--services/java/com/android/server/SystemServer.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/services/java/com/android/server/SystemServer.java b/services/java/com/android/server/SystemServer.java
index 2922130..c1153b6 100644
--- a/services/java/com/android/server/SystemServer.java
+++ b/services/java/com/android/server/SystemServer.java
@@ -156,9 +156,9 @@ public final class SystemServer {
private boolean mFirstBoot;
/**
- * Called to initialize native system services.
+ * Start the sensor service.
*/
- private static native void nativeInit();
+ private static native void startSensorService();
/**
* The main entry point from zygote.
@@ -233,7 +233,6 @@ public final class SystemServer {
// Initialize native services.
System.loadLibrary("android_servers");
- nativeInit();
// Check whether we failed to shut down last time we tried.
// This call may not return.
@@ -359,6 +358,10 @@ public final class SystemServer {
// Set up the Application instance for the system process and get started.
mActivityManagerService.setSystemProcess();
+
+ // The sensor service needs access to package manager service, app ops
+ // service, and permissions service, therefore we start it after them.
+ startSensorService();
}
/**