기본 콘텐츠로 건너뛰기

Android WiFi Direct

  We have added Whoopee(the file transfer app,  mobile to mobile, mobile to pc and,  pc to mobile) a new feature of WiFi-Direct. We suffered from fragmentation of Android in WiFi-Direct.
(Doesn't Google know the problems or they just ignore them?)

  In KiKat, there are NO_SERVICE_REQUESTS problem. This can't be solved without resetting the WiFi connection. But even if NO_SERVICE_REQUESTS happens, the connection between peers can be made successfully. And more strange, if successful connection has been made, NO_SERVICE_REQUESTS problem goes away.(-.-)

In UX, the system invitation dialog shows when it is connected first time. We can't control this according to our scenario.

If two devices have been connected ever, when they enable WiFi-Direct, and find each other, they connect each other automatically. This also, is out of our scenario.

WiFi-Direct is good technology but needs time to mature.

Useful Link for WiFi-Direct
    http://www.drjukka.com/blog/wordpress/?p=24

댓글

이 블로그의 인기 게시물

Picasso vs Glide in Android

I started a new project with Picasso first, but had a problem with the orientation of photos. Picasso didn't display a photo properly according to it's orientation. So I changed to Glide which solve the problem. Use 'Glide' if you want to be safe about photo's orientation,

Android Studio, gradle experimental, NDK, and OpenCV

It is really frustrating to build OpenCV native code with new Android Studio. The new Android Studio doesn't use make files, instead, sets compile options in app's builde.gradle file. The new gradle experimental(0.6.0-beta4) has some changes in DSL. It uses '.add' function, not '+='. Look at Sample Project at github AndroidOpenCVNDKDemo . It use Android Studio 2.0 beta5, gradle-experimental:0.6.0-beta, and OpenCV 3.1.0. I hope this will save your time. Useful sites http://tools.android.com/tech-docs/new-build-system/gradle-experimental http://ph0b.com/new-android-studio-ndk-support/ https://github.com/joaopedronardari/OpenCV-AndroidSamples -- 2016.03.06 Updated step by step explanation for Android NDK http://web.guohuiwang.com/technical-notes/androidndk1