我正在尝试使用库项目构建从相同代码库派生的两个不同的Android应用程序。
应用程序正在使用意图服务进行各种操作,但是当我有两个同时使用相同代码库的应用程序时,这似乎失败了。
似乎只有我安装的应用程序的第一个版本有效,第二个版本似乎没有让服务运行。
有没有人有这方面的经验?怎么能解决这个问题?
编辑: 这些是清单
基地:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.codebase"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<supports-screens android:largeScreens="true" android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:normalScreens="true"></supports-screens>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<application android:icon="@drawable/icon_launcher" android:label="CodeBase" android:process="@string/app_name" android:name="com.codebase.activity.Application" android:theme="@android:style/Theme.NoTitleBar" android:debuggable="false">
<activity android:configChanges="orientation" android:name="com.codenase.activity.MainActivity" android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="com.codebase.service.UpdateService" android:process="@string/app_name">
<intent-filter>
<action
android:name="com.codebase.service.UpdateService" />
</intent-filter>
</service>
</manifest>
目标1:
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10" />
<supports-screens android:largeScreens="true" android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:normalScreens="true"></supports-screens>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<application android:icon="@drawable/icon_launcher" android:label="Target One" android:name="com.codebase.activity.Application" android:theme="@android:style/Theme.NoTitleBar">
<activity android:configChanges="orientation" android:name="com.codebase.activity.MainActivity" android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="com.codebase.service.UpdateService" android:process="@string/app_name">
<intent-filter>
<action
android:name="com.codebase.service.UpdateService" />
</intent-filter>
</service>
</activity>
</application>
</manifest>
目标2:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.trg2"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10" />
<supports-screens android:largeScreens="true" android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:normalScreens="true"></supports-screens>
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
<application android:icon="@drawable/icon_launcher" android:label="Target 2" android:name="com.codebase.activity.Application" android:theme="@android:style/Theme.NoTitleBar">
<activity android:configChanges="orientation" android:name="com.codebase.activity.MainActivity" android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service android:name="com.codebase.service.UpdateService">
<intent-filter>
<action
android:name="com.codebase.service.UpdateService" />
</intent-filter>
</service>
</application>
</manifest>
答案 0 :(得分:1)
首先,在这种情况下,没有必要为AndroidManifest.xml中的服务定义intent-filter,如果您不需要从应用程序外部提供额外的访问点,则以下定义就足够了:
<service android:name="com.codebase.service.UpdateService"/>
然后使用public Intent (Context packageContext, Class cls)启动服务:
Intent intent = new Intent(getBaseContext(), UpdateService.class);
startService(intent);
其次,如果您确实需要从应用程序外部提供额外的访问点,请不要在多个应用程序中使用相同的操作名称,因为当尝试将意图传递给相应的服务时它会欺骗Android OS(如果是您使用public Intent (String action)开始服务):
目标1:
<service android:name="com.codebase.service.UpdateService" android:process="@string/app_name">
<intent-filter>
<action android:name="com.codebase.service.UpdateService.TARGET_1" />
</intent-filter>
</service>
目标2:
<service android:name="com.codebase.service.UpdateService" android:process="@string/app_name">
<intent-filter>
<action android:name="com.codebase.service.UpdateService.TARGET_2" />
</intent-filter>
</service>
希望这有帮助。
答案 1 :(得分:0)
我有一个基于一个代码库的同一个Android应用程序的两个版本。
我没有任何问题。两个应用程序都有不同的包名称
但是,我确保两者都具有相同(共享)的userId。也许这就是诀窍
http://developer.android.com/guide/topics/manifest/manifest-element.html
(顺便说一下,当我没记错的时候,userId需要在它们之间有一个点)
答案 2 :(得分:0)
确保您已在清单中正确认证您的服务。
e.g
如果你有:
主要项目包名称= com.johan.p1
图书馆计划包名= com.johan.library
假设您的服务在库项目中,您的主项目会将服务定义为:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.johan.p1"
<service android:name="com.johan.library.MyServiceName" />
</manifest>