gitextract_wi3u2aqj/ ├── .gitignore ├── README.md ├── apf-framework.jar ├── apf-plugin-build/ │ ├── ant.properties.example │ ├── apf-create-plugin.sh │ ├── build.xml.plugin.example │ ├── build.xml.plugin.ifs.example │ └── debug.keystore ├── com.example.host/ │ ├── .settings/ │ │ └── org.eclipse.core.resources.prefs │ ├── AndroidManifest.xml │ ├── libs/ │ │ └── apf-framework.jar │ ├── proguard.cfg │ ├── project.properties │ ├── res/ │ │ ├── layout/ │ │ │ ├── main.xml │ │ │ └── second.xml │ │ └── values/ │ │ └── strings.xml │ └── src/ │ └── com/ │ └── example/ │ └── host/ │ └── MainActivity.java ├── com.example.plugin1/ │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.xml │ ├── proguard-project.txt │ ├── project.properties │ ├── res/ │ │ ├── layout/ │ │ │ └── main.xml │ │ └── values/ │ │ └── strings.xml │ └── src/ │ └── com/ │ └── example/ │ └── plugin1/ │ ├── ExampleApfServiceImpl.java │ └── PluginActivity.java └── com.example.plugin1.ifs/ ├── AndroidManifest.xml ├── ant.properties ├── build.xml ├── proguard-project.txt ├── project.properties ├── res/ │ ├── layout/ │ │ └── main.xml │ └── values/ │ └── strings.xml └── src/ └── com/ └── example/ └── plugin1/ └── ifs/ └── ExampleApfService.java