├── .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 │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── main.xml │ │ └── second.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── host │ └── MainActivity.java ├── com.example.plugin1.ifs ├── AndroidManifest.xml ├── ant.properties ├── build.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── example │ └── plugin1 │ └── ifs │ └── ExampleApfService.java └── com.example.plugin1 ├── AndroidManifest.xml ├── ant.properties ├── build.xml ├── proguard-project.txt ├── project.properties ├── res ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ └── main.xml └── values │ └── strings.xml └── src └── com └── example └── plugin1 ├── ExampleApfServiceImpl.java └── PluginActivity.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/README.md -------------------------------------------------------------------------------- /apf-framework.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/apf-framework.jar -------------------------------------------------------------------------------- /apf-plugin-build/ant.properties.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/apf-plugin-build/ant.properties.example -------------------------------------------------------------------------------- /apf-plugin-build/apf-create-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/apf-plugin-build/apf-create-plugin.sh -------------------------------------------------------------------------------- /apf-plugin-build/build.xml.plugin.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/apf-plugin-build/build.xml.plugin.example -------------------------------------------------------------------------------- /apf-plugin-build/build.xml.plugin.ifs.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/apf-plugin-build/build.xml.plugin.ifs.example -------------------------------------------------------------------------------- /apf-plugin-build/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/apf-plugin-build/debug.keystore -------------------------------------------------------------------------------- /com.example.host/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /com.example.host/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/AndroidManifest.xml -------------------------------------------------------------------------------- /com.example.host/libs/apf-framework.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/libs/apf-framework.jar -------------------------------------------------------------------------------- /com.example.host/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/proguard.cfg -------------------------------------------------------------------------------- /com.example.host/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/project.properties -------------------------------------------------------------------------------- /com.example.host/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.host/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.host/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.host/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/res/layout/main.xml -------------------------------------------------------------------------------- /com.example.host/res/layout/second.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/res/layout/second.xml -------------------------------------------------------------------------------- /com.example.host/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/res/values/strings.xml -------------------------------------------------------------------------------- /com.example.host/src/com/example/host/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.host/src/com/example/host/MainActivity.java -------------------------------------------------------------------------------- /com.example.plugin1.ifs/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/AndroidManifest.xml -------------------------------------------------------------------------------- /com.example.plugin1.ifs/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/ant.properties -------------------------------------------------------------------------------- /com.example.plugin1.ifs/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/build.xml -------------------------------------------------------------------------------- /com.example.plugin1.ifs/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/proguard-project.txt -------------------------------------------------------------------------------- /com.example.plugin1.ifs/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/project.properties -------------------------------------------------------------------------------- /com.example.plugin1.ifs/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1.ifs/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1.ifs/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1.ifs/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1.ifs/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/res/layout/main.xml -------------------------------------------------------------------------------- /com.example.plugin1.ifs/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/res/values/strings.xml -------------------------------------------------------------------------------- /com.example.plugin1.ifs/src/com/example/plugin1/ifs/ExampleApfService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1.ifs/src/com/example/plugin1/ifs/ExampleApfService.java -------------------------------------------------------------------------------- /com.example.plugin1/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/AndroidManifest.xml -------------------------------------------------------------------------------- /com.example.plugin1/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/ant.properties -------------------------------------------------------------------------------- /com.example.plugin1/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/build.xml -------------------------------------------------------------------------------- /com.example.plugin1/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/proguard-project.txt -------------------------------------------------------------------------------- /com.example.plugin1/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/project.properties -------------------------------------------------------------------------------- /com.example.plugin1/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /com.example.plugin1/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/res/layout/main.xml -------------------------------------------------------------------------------- /com.example.plugin1/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/res/values/strings.xml -------------------------------------------------------------------------------- /com.example.plugin1/src/com/example/plugin1/ExampleApfServiceImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/src/com/example/plugin1/ExampleApfServiceImpl.java -------------------------------------------------------------------------------- /com.example.plugin1/src/com/example/plugin1/PluginActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/umeng/apf/HEAD/com.example.plugin1/src/com/example/plugin1/PluginActivity.java --------------------------------------------------------------------------------