Java Package Does Not Exist Error

前端 未结 7 1336
执笔经年
执笔经年 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')
         ..
    }
    

提交回复
热议问题