美文网首页
android studio添加库工程

android studio添加库工程

作者: 酥脆海苔饼干 | 来源:发表于2018-02-28 20:12 被阅读0次
    project里面包含了module A和module B,当前需求是要将module B作为module A的库工程。添加步骤:
    1.假设module A已经创建ok,需要创建库文件B。  File-New-New Module,create new module中选择android library。
    2.向库文件B中追加相关资源文件。
    3.修改module A工程下的build.gradle文件。在该文件内部
          dependencies{
                 compile project(' :module B的工程名')//这个切勿写错
                   }
    

    二.studio新建类报错 Unable to parse template "Class" Error message: This template did not produce
    处理:https://blog.csdn.net/qq_34608690/article/details/79040146

    相关文章

      网友评论

          本文标题:android studio添加库工程

          本文链接:https://www.haomeiwen.com/subject/evwixftx.html