如何在android中实现城市飞艇?我从中下载样本 here。我运行应用程序我得到安装选项。安装后我什么都没得到。实际上我不知道如何用android设置城市空中飞船。我只是注册一个应用程序名称xxxx。我没有创建我的xxxx应用程序。但我与城市航空船的实施混淆。我的需要是在我的xxxx应用程序中我触摸按钮我必须列出我在城市空中发布的视频。请帮帮我。
在上面的网站中我得到两个文件MainActivity和sampleApplication。我不知道我在哪里使用我的xxxx应用程序中的代码。请帮我。
答案 0 :(得分:5)
在AndroidManifest中 -
<receiver android:name="com.urbanairship.CoreReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="android.intent.action.ACTION_SHUTDOWN" />
</intent-filter>
</receiver>
<receiver android:name="com.urbanairship.push.c2dm.C2DMPushReceiver"
android:permission="com.google.android.c2dm.permission.SEND">
<intent-filter>
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
<category android:name="com.your.app.here" />
</intent-filter>
<intent-filter>
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
<category android:name="com.your.app.here" />
</intent-filter>
</receiver>
<service android:name="com.urbanairship.push.PushService" />
一定要 -
import com.urbanairship.AirshipConfigOptions;
import com.urbanairship.UAirship;
import com.urbanairship.push.PushManager;
在您的活动或类文件中 -
AirshipConfigOptions options = AirshipConfigOptions.loadDefaultOptions(this);
options.developmentAppKey = "YOURAPPKEY";
options.developmentAppSecret = "YOURAPPSECRET";
options.productionAppKey = "";
options.iapEnabled = false;
options.inProduction = false; //determines which app key to use
UAirship.takeOff(this.getApplication(), options);
PushManager.enablePush();
希望这有助于:)
答案 1 :(得分:0)
你可以通过This来完成。它详细描述了如何为Android实现urbanairship。