├── README.md ├── cmds ├── Android.mk └── main_client.cpp ├── include ├── HelloWorld.h ├── IHelloWorld.h ├── IHelloWorldClient.h └── IHelloWorldService.h ├── myserver ├── Android.mk └── main_myserver.cpp ├── services └── helloWorld │ ├── Android.mk │ ├── HelloWorldService.cpp │ └── HelloWorldService.h └── src ├── HelloWorld.cpp ├── IHelloWorld.cpp ├── IHelloWorldClient.cpp └── IHelloWorldService.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/README.md -------------------------------------------------------------------------------- /cmds/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/cmds/Android.mk -------------------------------------------------------------------------------- /cmds/main_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/cmds/main_client.cpp -------------------------------------------------------------------------------- /include/HelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/include/HelloWorld.h -------------------------------------------------------------------------------- /include/IHelloWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/include/IHelloWorld.h -------------------------------------------------------------------------------- /include/IHelloWorldClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/include/IHelloWorldClient.h -------------------------------------------------------------------------------- /include/IHelloWorldService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/include/IHelloWorldService.h -------------------------------------------------------------------------------- /myserver/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/myserver/Android.mk -------------------------------------------------------------------------------- /myserver/main_myserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/myserver/main_myserver.cpp -------------------------------------------------------------------------------- /services/helloWorld/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/services/helloWorld/Android.mk -------------------------------------------------------------------------------- /services/helloWorld/HelloWorldService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/services/helloWorld/HelloWorldService.cpp -------------------------------------------------------------------------------- /services/helloWorld/HelloWorldService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/services/helloWorld/HelloWorldService.h -------------------------------------------------------------------------------- /src/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/src/HelloWorld.cpp -------------------------------------------------------------------------------- /src/IHelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/src/IHelloWorld.cpp -------------------------------------------------------------------------------- /src/IHelloWorldClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/src/IHelloWorldClient.cpp -------------------------------------------------------------------------------- /src/IHelloWorldService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hansonLGE/Android-native-service/HEAD/src/IHelloWorldService.cpp --------------------------------------------------------------------------------