我们开发了一款应用程序,该应用程序需要第二个应用程序(专业密钥应用程序)来验证其许可证。主要(免费应用程序)请求,通过广播,到专业密钥应用程序检查许可证。 问题是,当关键应用程序关闭时,它永远不会收到主应用程序发送的广播,要解决此问题,我必须先打开专业密钥应用程序,然后再尝试验证许可证。
以下是主应用程序发送它的方式:
public static void checkLicense(Context context) {
...
Intent checkLicenseIntent = new Intent(Constants.CHECK_LICENSE_INTENT);
context.sendBroadcast(checkLicenseIntent);
...
}
以下是专业应用程序的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="ar.com.myapp.prokey"
android:versionCode="2"
android:versionName="1.0.0.1" >
<permission
android:name="ar.com.myapp.prokey.CheckLicense"
android:protectionLevel="signature" />
<uses-permission android:name="ar.com.myapp.ReceiveLicenseCheckResponse" />
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="14" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="ar.com.myapp.prokey.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver
android:name="ar.com.myapp.prokey.CheckLicenseReceiver"
android:permission="ar.com.myapp.prokey.CheckLicense" >
<intent-filter >
<action android:name="ar.com.myapp.prokey.CHECK_LICENSE" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</receiver>
<service android:name="ar.com.myapp.prokey.LicenseVerificationService" />
</application>
</manifest>
这是沟通应用的方式吗?广播应该唤醒关键专业应用程序吗? 有什么想法吗?
答案 0 :(得分:2)
如果您的应用已停止&#34;停止&#34;声明它将无法接收任何意图。你需要激活&#34;该应用程序通过激活其任何组件。如果对广播的意图使用setComponent(),系统将在发送意图之前激活应用程序。
将此行添加到您的代码中:
Intent checkLicenseIntent = new Intent(Constants.CHECK_LICENSE_INTENT);
checkLicenseIntent.setComponent(new ComponentName("ar.com.myapp.prokey", "ar.com.myapp.prokey.CheckLicenseReceiver"));
context.sendBroadcast(checkLicenseIntent);
您可以阅读有关此文章的更多信息:https://devmaze.wordpress.com/2011/12/05/activating-applications/
答案 1 :(得分:1)
广播是否应该唤醒关键专业应用?
如果通过&#34;醒来&#34;你的意思是&#34;为它做一个过程&#34;,然后是的,一旦你修复了你的<intent-filter>
,它将通过删除两个<category>
元素作为你的Intent
您正在播放的节目没有类别。类别很少用于广播。