Java Package Does Not Exist Error

前端 未结 7 1194
执笔经年
执笔经年 2020-12-03 04:50

So there\'s a folder /usr/share/stuff in the root directory

in stuff there are a bunch of java files with package org.name definitions at t

相关标签:
7条回答
  • 2020-12-03 05:20

    You should add the following lines in your gradle build file (build.gradle)

    dependencies { 
         compile files('/usr/share/stuff')
         ..
    }
    
    0 讨论(0)
提交回复
热议问题