0

I'm wondering if Android allows applications to jointly receive data through the Wifi and Cell GSM. I need to develop an application that have to receive internet data through the GSM and some local data through Wifi while maintaining both the network connectivity. Is this possible to do ?

Shan
  • 5,054
  • 12
  • 44
  • 58

1 Answers1

1

While connected to Wi-Fi, you can ask the system to temporarily pass traffic to a specific host via cell connection.

This is done by a mode called "HIPRI" (High Priority).

The HIPRI uses the cell radio, but logically it is a different connection type than cell. This means that although your communication would be done via the cell, the cell connection would still be unavailable for other purposes.

A good example can be found here (answer by Rainbowbreeze):

How to use 3G Connection in Android Application instead of Wi-fi?.

Community
  • 1
  • 1
Nadav
  • 1,023
  • 9
  • 10