Java Code Examples for com.facebook.internal.NativeProtocol#MESSAGE_GET_INSTALL_DATA_REPLY

The following examples show how to use com.facebook.internal.NativeProtocol#MESSAGE_GET_INSTALL_DATA_REPLY . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AppLinkData.java    From platform-friends-android with BSD 2-Clause "Simplified" License 4 votes vote down vote up
DeferredAppLinkDataClient(Context context, String applicationId) {
    super(context, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REQUEST, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REPLY,
            NativeProtocol.PROTOCOL_VERSION_20130618, applicationId);
}
 
Example 2
Source File: AppLinkData.java    From Klyph with MIT License 4 votes vote down vote up
DeferredAppLinkDataClient(Context context, String applicationId) {
    super(context, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REQUEST, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REPLY,
            NativeProtocol.PROTOCOL_VERSION_20130618, applicationId);
}
 
Example 3
Source File: AppLinkData.java    From barterli_android with Apache License 2.0 4 votes vote down vote up
DeferredAppLinkDataClient(Context context, String applicationId) {
    super(context, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REQUEST, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REPLY,
            NativeProtocol.PROTOCOL_VERSION_20130618, applicationId);
}
 
Example 4
Source File: AppLinkData.java    From KlyphMessenger with MIT License 4 votes vote down vote up
DeferredAppLinkDataClient(Context context, String applicationId) {
    super(context, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REQUEST, NativeProtocol.MESSAGE_GET_INSTALL_DATA_REPLY,
            NativeProtocol.PROTOCOL_VERSION_20130618, applicationId);
}