Android应用程式编译成系统程序简介
简介:在android操作系统中,有一些应用程序,如打电话,系统设置、闹钟等等在我们购买手机的时候就已经有了,如果我们想写一个应用程序到系统中,而又不给用户删除。该如何做?本文将提供一个简单的例子,看看android系统里是如何把应用程序写入系统中去的。
1、开发环境
操作系统:Ubuntu xx
开发工具:Eclipse
Android SDK:android 2.2
2、开发环境搭建过程
要想把android应用程序写入系统中,首先要搭建一个android文件系统的开发环境。由于网上很多搭建环境的例子,这里只罗列要点二具体介绍。
(1)、下载Android文件系统源码
http://source.android.com/source/download.html
(2)、Eclipse源码开发环境
http://source.android.com/source/using-eclipse.html
(3)、Eclipse开发App环境
这个可以参考android sdk 的文档或者网上查找资料
3、以Helloworld为例
(1)、建立一个App
在Eclipse-App开发环境中新建一个Android Project命名为Helloworld,然后在模拟器上调试运行。将会见到下看到Helloworld 程序运行,并在屏幕上显示Hello world ,Main!这一步我们不需要写任何的代码。
(2)、移植App到Android
在linux系统中进入Android的源码目录,来到 ./package/apps/Settings/ 目录,把这里的Android.mk复制到刚才那个HelloWorld App 的 跟目录下,并修改Android.mk文件
Android.mk
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := Helloworld #与工程名字相同
LOCAL_CERTIFICATE := platform
include $(BUILD_PACKAGE)
# Use the folloing include to make our test apk.
include $(call all-makefiles-under,$(LOCAL_PATH))
(3)、修改/bulid/target/product/generic.mk 把工程编译到系统中
generic.mk
#
# Copyright (C) 2007 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This is a generic product that isn't specialized for a specific device.
# It includes the base Android platform.
PRODUCT_PACKAGES := \
AccountAndSyncSettings \
CarHome \
DeskClock \
AlarmProvider \
Bluetooth \
Calculator \
Calendar \
Camera \
CertInstaller \
DrmProvider \
Email \
Gallery3D \
LatinIME \
Launcher2 \
Mms \
Music \
Provision \
Protips \
QuickSearchBox \
Settings \
Sync \
Updater \
CalendarProvider \
SyncProvider \
Helloworld
$(call inherit-product, $(SRC_TARGET_DIR)/product/core.mk)
# Overrides
PRODUCT_BRAND := generic
PRODUCT_DEVICE := generic
PRODUCT_NAME := generic
(4)、将Android工程拷贝到 ./package/apps/ 目录下
此时,系统的代码环境已经构建好。
(5)、编译Android SDK
在Android源码根目录下执行: #make sdk
等待......
编译完成后
来到/out/host/linux-x86/sdk/android-sdk_eng.root_linux-x86/tools/下,执行 :
./emulator -avd ANDROID2
启动模拟器,就会开到Helloworld会在Android系统中。
通过 设置->应用程序->管理应用程序->全部-选择->Helloworld (如下图示我们可以看到该程序为一个系统 默认启动 的程序,并且用户不可以将其 卸载 )