使用一个apk安装两个应用程序

时间:2012-07-11 10:57:34

标签: android

我有2个应用:

1 - ContentProvider;

2 - 使用此ContentProvider的应用程序。

我需要使用单个apk文件安装这两个应用程序。我想在Eclipse中同时推送这两个应用程序,如果我添加一个应用程序的另一个项目的构建路径并在清单中添加几行。是否可以使用一个apk同时安装两个应用程序(其中一个是ContentProvider)?

3 个答案:

答案 0 :(得分:2)

  

是否可以使用一个apk同时安装两个应用程序(其中一个是ContentProvider)?

不,抱歉。

答案 1 :(得分:2)

您可以在一个manifest.xml中定义多个活动,服务等。因此,如果您要将两个应用程序移动到一个项目中,然后将它们都添加到清单中,则可以在一个apk中安装多个应用程序。

在此处查看有关清单的更多信息:http://developer.android.com/guide/topics/manifest/manifest-intro.html

但是,正如已经指出的那样,application-tag只能出现一次。

答案 2 :(得分:1)

是的,可以在一个api中安装两个应用程序(内部活动)。

扩展到dac2009的回答..

这是一个执行此操作的Manifest文件示例。

`<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.dualapp"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name_people"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.dualapp.MeetPeopleActivity"
            android:icon="@drawable/ic_launcher"
            android:label="@string/app_name_people"
            android:taskAffinity="com.example.dualapp.MeetPeopleActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

        <activity
            android:name="com.example.dualapp.MeetTechieActivity"
            android:icon="@drawable/ic_tech"
            android:label="@string/app_name_techie"
            android:taskAffinity="com.example.dualapp.MeetTechieActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>`

安装此功能会在我的手机中放置两个应用程序图标。