1 Star 1 Fork 0

1mf2 / Direct-load-apk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
README_en.md 2.57 KB
一键复制 编辑 原始数据 按行查看 历史
FinalLody 提交于 2015-04-11 17:26 . Update Readme.

开源实验室

The introduction of Direct-Load-apk(DLA)

Description

As an Android developer, have you tried to run an uninstalled APK ? Have you tried to start an APK without any constraint ?
DLA is a powerful pluggable framework to implement this function. By use it , you can not only to run an uninstalled APK directly , But also you can choose an Activity or Service from any APK to run!

Related links

Usage

1、Add com.lody.plugin.LActivityProxy tag in your host APP's AndroidManifest.xml.
2、Add com.lody.plugin.LProxyService tag in your host APP's AndroidManifest.xml.
3、Add the following code when you want to start an Plugin.

/**
 * @param context
 * @param path 
 */
LPluginOpener.startPlugin(context,path);

If you only want to start an Activity from an apk,you can write down the code like this.

/**
 * @param path 
 * @param activityClassName 
 */
LPluginOpener.startActivity(context,path,activityClassName);

If you only want to start an Service from an apk,you can write down the code like this.

/**
 * @param path 
 * @param serviceClassName 
 */
LPluginOpener.startService(context,path,serviceClassName);

What else? No! The use of DLA is so simple.

Future support

As you can see, DLA has been able to load the plug-in for Application, Activity and Service, and the other components's support is only a matter of time! Another support point is the theme of the skin loading, this is also a target.
If you have any other requirements, welcome to Here.

Apache License

Copyright 2015, Lody.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Author

Lody,an Android developer from ZheJiang NingBo.Willing to make friends, like to share.

1
https://gitee.com/1mf2/Direct-load-apk.git
git@gitee.com:1mf2/Direct-load-apk.git
1mf2
Direct-load-apk
Direct-load-apk
master

搜索帮助