• Stars
    star
    115
  • Rank 304,226 (Top 7 %)
  • Language
    Java
  • License
    MIT License
  • Created almost 11 years ago
  • Updated over 10 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Libraries for Android developers By eoe.cn Community

Libraries-for-Android-Developers
Libraries for Android developers By eoe.cn Community

Libraries-for-Android-Developers 0.0.2测试版

实现功能: 通过apkplug提供的接口安装本地apk文件格式的插件

bundles/ 目录下存放的是插件工程
bundles/ 同时存放了两个插件apk文件,你可将其放入SD卡中–>启动程序–>安装本地插件(按钮)将插件加载到宿主程序中

工程目录结构

根目录
├ bundles – 插件项目
├ libs – 存放项目引用的第三方包
├ res – 存放工程用到的图片,布局
├ src – 存放工程的包及java源码文件
libs目录

libs目录用于存放项目引用的第三方jar包。

libs目录里的jar包文件:

libs
├ armeabi-v7a-libndkoo.so –armv7a架构 apkplug的.so文件
├ armeabi -libndkoo.so –arm架构 apkplug的.so文件
├ x86 -libndkoo.so –x86架构 apkplug的.so文件
├ Bundle1.5.5.jar –apkplug 的jar包
├ android-support-v4.jar –android兼容的包
src目录

src目录用于存放工程的包及java源码文件。

下面是src目录的子目录:

src
├ cn.eoe.android.libraries –存放程序启动类
├ cn.eoe.android.libraries.adapter –存放适配器的实现类的包
├ cn.eoe.android.libraries.entity –存放实体类的包
├ cn.eoe.android.libraries.ui –存放UI实现的包
├ cn.eoe.android.libraries.util –存放工具类的包
├ cn.eoe.android.libraries.widget –存放控件的包
├ cn.eoe.app.adapter –存放适配器的实现类的包
├ cn.eoe.app.adapter.base –存放适配器基类的包
├ cn.eoe.FileUtil –文件操作包
├ cn.eoe.FileUtil.filter –过滤文件类型的包
├ cn.eoe.util –工具类包
├ cn.eoe.util.Observer –观测者模式
├ cn.eoe.util.preferencesFactory –preferences简单封装