本文介绍了Android的创建库项目没有源$ C $ C的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我开发Android库project.I不想分享我的源$ C $ CI要创建像jar file.But我无法创建jar文件,因为它包含XML layouts.so是有什么办法不包括源$ C $ C建项目?
解决方案
- 第一件事是有充分的库项目(例如:FullProject)。
- 然后我导入一个新的工作区全库项目(FullProject),并检查复制项目进入工作区。这个新项目必须具有相同的名称(FullProject)
- 在副本中,我删除了源$ C $ C。
- 在应用项目我添加源少库项目由于Android库
- 在应用项目我增加了来自全库项目中的所有二进制类上目录中的.jar文件(右集团公司全库项目的来源,出口为一体的jar和检查«添加目录条目» )。
- 在应用项目的构建路径,在订单和出口,检查的.jar出口
- 更新与该库项目的所有视图应用项目的清单文件。
- 清洁应用项目
- 这是所有!
I am developing android library project.I don't want share my source code.I want to create something like jar file.But i can't create jar file as it includes xml layouts.so is there any way to build project without including source code?
解决方案
- First thing is to have the full library-project ( example : FullProject).
- Then I import the full library project (FullProject) in a new workspace and check "Copy Projects into workspace". This new project must have the same name ( FullProject)
- in the copy, i removed the source code.
- in the app-project i added the source-less-library-project as android library
- in the app-project i added the .jar file with all the binary classes from the full library-project ( right clic on directory "source" of the full library-project, export as jar and check « Add directory entry » ).
- in the build path of the app project, in "order and export", check the .jar exported
- update the manifest file of the app project with all views of the library project .
- clean the app project
- It’s all !
这篇关于Android的创建库项目没有源$ C $ C的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!