# OpenAtlas
**Repository Path**: wlrnet/OpenAtlas
## Basic Information
- **Project Name**: OpenAtlas
- **Description**: OpenAtlas, Android Plugin Framework.
基于OSGI的Android 插件框架,开发已完成.
包括OpenAtlasCore和若干sample.
因为Github项目改名,重新导入。
因为资源冲突问题,需要patch AAPT,对资源进行分区,默认0x7f,如果使用sdk的aapt导致资源问题,这个可以用代理方式解决,那么问题来了,耦合性也就上来了。
http://www.oschina.net/p/atlasforandroid
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: https://github.com/bunnyblue/OpenAtlas
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 35
- **Created**: 2015-05-18
- **Last Updated**: 2020-12-19
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# OpenAtlas
OpenAtlas ,a Android Component Plugin Framework
The MIT License (MIT) Copyright (c) 2015 Bunny Blue,achellies
至于资源这块处理仁者见仁智者见智。代码遵循MIT License,目前使用patch aapt进行资源分区,虽然现在这个项目带有插件的名字,严格意义上说这个已经从插件里面出来了,跟系统一样管理各个组件,叫做component更合适。对于项目的分析,正在进行,有bug的话可以在issue里面提交,QQ群不太适合讨论技术。
### Simple Project Moved to https://github.com/bunnyblue/OpenAtlasExt
### Simple Project Moved to https://github.com/bunnyblue/OpenAtlasExt
### Contributors
[achellies](https://github.com/achellies)
[BunnyBlue](https://github.com/bunnyblue)
[SuperSanders](https://github.com/SuperSanders)
## plugin start
download aapt from repo,and you should use build-tool @R22,
write your plugin as normal app, ant build with hacked aapt.
### plugin resource notice
you can define your package id at Manifest by "versionName",such as versionName:"1.0.1" ,but as a plugin should be versionName:"1.0.10x7a",you will get apk which versionName is "1.0.0" but package id is 0x7a not 0x7f.you can use 0x2 to 0x7,
also you can define package change packageName "com.myapp.pkgname" to " com.myapp.pkgname0x7a".
##Sample & Art
Sample Apk,you can download from here

## License
The MIT License (MIT) Copyright (c) 2015 Bunny Blue,achellies
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.