Internship project: Device to Device Transfer Android App

Thanks a lot.
I have read this before I wrote my views here ,and some of my ideas also comes from that post.
I know here comes some issues related to the cost of transmission using SMS, but we still need that function when we are in a remote area without WiFi signal but have a strong need to sent some essential data to servers.

We can offer various options for users, which I mentioned in Send submissions via SMS - #6 by Mickys0918

In short, we can design a logic and build a algorithm help to improve the efficiency of data transmission, and make sure the data will be delivered into other devices nearby or remote successfully under every circumstance.

For example:

    switch (requirment) {
        case upload_to_remote:
            if (have_wifi) {
                use wifi transfer;
            }else{
                use sms transfer;
           }
            break;
        case share_to_nearby:
            use nfc || bluetooth || wifi hotspot;
            break;
        default:
            break;

It's really simple but I hope everybody can join and help to improve that, if you guys think we can use something like that :slight_smile:

PS: I am a student and I really interested in this project although I'm new here ~
And I'm trying to submit more code and address issues with this amazing APP whether I have a chance to work with you guys in GSoC 2018 or not.I'm really enjoy it!

1 Like